Searched refs:TextUnformatted (Results 1 - 7 of 7) sorted by relevance
/third_party/mesa3d/src/imgui/ |
H A D | imgui_memory_editor.h | 520 ImGui::Text("Dec"); ImGui::SameLine(x); ImGui::TextUnformatted(has_value ? buf : "N/A"); in DrawContents() 523 ImGui::Text("Hex"); ImGui::SameLine(x); ImGui::TextUnformatted(has_value ? buf : "N/A"); in DrawContents() 526 ImGui::Text("Bin"); ImGui::SameLine(x); ImGui::TextUnformatted(has_value ? buf : "N/A"); in DrawContents()
|
H A D | imgui_widgets.cpp | 112 // - TextUnformatted() 127 void ImGui::TextUnformatted(const char* text, const char* text_end) in TextUnformatted() function in ImGui 250 TextUnformatted(g.TempBuffer, text_end); in TextV() 1960 TextUnformatted(label, FindRenderedTextEnd(label)); 2003 TextUnformatted(label, FindRenderedTextEnd(label)); 2048 TextUnformatted(label, FindRenderedTextEnd(label)); 2397 TextUnformatted(label, FindRenderedTextEnd(label)); 2693 TextUnformatted(label, FindRenderedTextEnd(label)); 2730 TextUnformatted(label, FindRenderedTextEnd(label)); 3970 TextUnformatted(labe [all...] |
H A D | imgui.h | 370 IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 197 ImGui::TextUnformatted(desc); in HelpMarker() 2837 ImGui::TextUnformatted(names[i]); in ShowDemoWindowLayout() 2844 ImGui::TextUnformatted("abc"); in ShowDemoWindowLayout() 3184 ImGui::TextUnformatted(selected_fish == -1 ? "<None>" : names[selected_fish]); in ShowDemoWindowPopups() 3544 ImGui::TextUnformatted(policies[m].Tooltip); in EditTableSizingFlags() 3744 ImGui::TextUnformatted(buf); 4075 ImGui::TextUnformatted("Advanced"); 4119 case CT_ShortText: ImGui::TextUnformatted(label); break; 4235 ImGui::TextUnformatted("Stretch + ScrollX"); 4611 ImGui::TextUnformatted(nod [all...] |
H A D | imgui.cpp | 11249 ImGui::TextUnformatted(desc); in MetricsHelpMarker() 11506 TextUnformatted("<NULL>"); in ShowMetricsWindow() 12202 TextUnformatted(info->Desc); in ShowStackToolWindow() 12210 TextUnformatted("???"); in ShowStackToolWindow()
|
H A D | imgui.h | 485 IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text.
|
H A D | imgui_widgets.cpp | 135 // - TextUnformatted() 257 void ImGui::TextUnformatted(const char* text, const char* text_end) in TextUnformatted() function in ImGui
|
Completed in 81 milliseconds