Home
last modified time | relevance | path

Searched refs:text_ (Results 1 – 6 of 6) sorted by relevance

/system/core/debuggerd/libdebuggerd/test/
Dtombstone_proto_to_text_test.cpp62 text_ = ""; in ProtoToString()
66 text_ += "LOG "; in ProtoToString()
68 text_ += line + '\n'; in ProtoToString()
73 std::string text_; member in TombstoneProtoToTextTest
80 EXPECT_MATCH(text_, "LOG tagged_addr_ctrl: 0000000000000000\\n"); in TEST_F()
84 EXPECT_MATCH(text_, "LOG tagged_addr_ctrl: 0000000000000001 \\(PR_TAGGED_ADDR_ENABLE\\)\\n"); in TEST_F()
89 EXPECT_MATCH(text_, in TEST_F()
96 EXPECT_MATCH(text_, in TEST_F()
104 EXPECT_MATCH(text_, "LOG pac_enabled_keys: 0000000000000000\\n"); in TEST_F()
108 EXPECT_MATCH(text_, "LOG pac_enabled_keys: 0000000000000001 \\(PR_PAC_APIAKEY\\)\\n"); in TEST_F()
[all …]
/system/tools/aidl/
Dparser.h36 : text_(text), comments_(std::move(comments)) {} in AidlToken()
44 const std::string& GetText() const { return text_; } in GetText()
49 text_ += std::forward<T>(text); in Append()
53 std::string text_;
/system/teeui/libteeui/include/teeui/
Dlabel.h69 : fontSize_(10_px), lineHeight_(12_px), text_{}, horizontalTextAlignment_(Alignment::LEFT), in LabelImpl()
73 : fontSize_(fontSize), lineHeight_(lineHeight), text_(text), in LabelImpl()
79 void setText(text_t text) { text_ = text; } in setText()
82 text_t text() const { return text_; } in text()
93 text_t text_; variable
/system/teeui/libteeui/src/
Dlabel.cpp67 auto textBegin = text_.begin(); in draw()
71 while (textBegin != text_.end()) { in draw()
80 while (!isNewline(lineEnd.codePoint()) && lineEnd != text_.end()) { in draw()
/system/core/fastboot/
Dfastboot_driver.cpp68 text_(std::move(driver_callbacks.text)), in FastBootDriver()
504 text_(input.substr(strlen("TEXT"))); in HandleResponse()
Dfastboot_driver.h163 std::function<void(const std::string&)> text_; variable