Home
last modified time | relevance | path

Searched defs:TextRange (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui.h1561 struct TextRange struct
1563 const char* b;
1564 const char* e;
1566 TextRange() { b = e = NULL; } in TextRange() function
1567 TextRange(const char* _b, const char* _e) { b = _b; e = _e; } in TextRange() argument
1568 const char* begin() const { return b; } in begin()
1569 const char* end () const { return e; } in end()
1570 bool empty() const { return b == e; } in empty()
/external/skia/modules/skparagraph/include/
DTextStyle.h277 typedef SkRange<size_t> TextRange; typedef