Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/imgui/
Dimgui.h2085 struct ImGuiTextRange struct
2087 const char* b;
2088 const char* e;
2090 ImGuiTextRange() { b = e = NULL; } in ImGuiTextRange() argument
2091 ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; } in ImGuiTextRange() argument
2092 bool empty() const { return b == e; } in empty()