Searched defs:TextRange (Results 1 – 2 of 2) sorted by relevance
1561 struct TextRange struct1563 const char* b;1564 const char* e;1566 TextRange() { b = e = NULL; } in TextRange() function1567 TextRange(const char* _b, const char* _e) { b = _b; e = _e; } in TextRange() argument1568 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()
277 typedef SkRange<size_t> TextRange; typedef