Home
last modified time | relevance | path

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

/system/tools/aidl/
Dparser.h35 : text_(text), comments_(comments) {} in AidlToken()
43 const std::string& GetText() const { return text_; } in GetText()
47 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()
75 findLongestWordSequence(&face, text_t(*textBegin, *text_.end()), bounds); in draw()