Lines Matching defs:text
2355 void ImFontGlyphRangesBuilder::AddText(const char* text, const char* text_end)
2357 while (text_end ? (text < text_end) : *text)
2360 int c_len = ImTextCharFromUtf8(&c, text, text_end);
2361 text += c_len;
2542 const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const
2564 const char* word_end = text;
2568 const char* s = text;
2777 // For large text, scan for the last visible line in order to avoid over-reserving in the call to PrimReserve()
2880 // CPU side clipping used to fit text in their frame when the frame is too small. Only does clipping for axis aligned quads.