| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imstb_textedit.h | 1140 const char* buf_end = (char*)state->undo_rec + sizeof(state->undo_rec); (void)buf_end; local in function:stb_textedit_discard_redo 1142 IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end);
|
| H A D | imgui_widgets.cpp | 3230 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3231 edit_state.CurLenW = ImTextStrFromUtf8(edit_state.TextW.Data, buf_size, buf, NULL, &buf_end); 3232 edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8. 3280 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3281 edit_state.CurLenW = ImTextStrFromUtf8(edit_state.TextW.Data, edit_state.TextW.Size, buf, NULL, &buf_end); 3282 edit_state.CurLenA = (int)(buf_end - buf); 3769 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3771 text_size = ImVec2(size.x, InputTextCalcTextLenAndLineCount(buf_display, &buf_end) * g.FontSize); // We don't need width 3773 buf_end = buf_display + strlen(buf_display); 3774 if (is_multiline || (buf_end [all...] |
| H A D | imgui.cpp | 1636 ImWchar* buf_end = buf + buf_size; local in function:ImTextStrFromUtf8 1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) 1724 const char* buf_end = buf + buf_size; local in function:ImTextStrToUtf8 1725 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) 1731 buf_out += ImTextCharToUtf8(buf_out, (int)(buf_end-buf_out-1), c); 9017 char* buf_end = buf + ini_size; local in function:ImGui::LoadIniSettingsFromMemory 9025 for (char* line = buf; line < buf_end; line = line_end + 1) 9031 while (line_end < buf_end && *line_end != '\n' && *line_end != '\r') 9348 char *buf_p = buf, *buf_end = buf + IM_ARRAYSIZE(buf); local in function:ImGui::ShowMetricsWindow::Funcs::NodeDrawList 9355 buf_p += ImFormatString(buf_p, buf_end 9428 const char* buf_end = buf + IM_ARRAYSIZE(buf); local in function:ImGui::ShowMetricsWindow::Funcs::NodeTabBar [all...] |
| H A D | imgui_demo.cpp | 3523 const char* buf_end = Buf.end(); local in function:ExampleAppLog::Draw 3533 const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; 3541 // ImGui::TextUnformatted(buf_begin, buf_end); 3556 const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end;
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imstb_textedit.h | 1140 const char* buf_end = (char*)state->undo_rec + sizeof(state->undo_rec); (void)buf_end; local in function:stb_textedit_discard_redo 1142 IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end);
|
| H A D | imgui_widgets.cpp | 3230 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3231 edit_state.CurLenW = ImTextStrFromUtf8(edit_state.TextW.Data, buf_size, buf, NULL, &buf_end); 3232 edit_state.CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8. 3280 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3281 edit_state.CurLenW = ImTextStrFromUtf8(edit_state.TextW.Data, edit_state.TextW.Size, buf, NULL, &buf_end); 3282 edit_state.CurLenA = (int)(buf_end - buf); 3769 const char* buf_end = NULL; local in function:ImGui::InputTextEx 3771 text_size = ImVec2(size.x, InputTextCalcTextLenAndLineCount(buf_display, &buf_end) * g.FontSize); // We don't need width 3773 buf_end = buf_display + strlen(buf_display); 3774 if (is_multiline || (buf_end [all...] |
| H A D | imgui.cpp | 1636 ImWchar* buf_end = buf + buf_size; local in function:ImTextStrFromUtf8 1637 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) 1724 const char* buf_end = buf + buf_size; local in function:ImTextStrToUtf8 1725 while (buf_out < buf_end-1 && (!in_text_end || in_text < in_text_end) && *in_text) 1731 buf_out += ImTextCharToUtf8(buf_out, (int)(buf_end-buf_out-1), c); 9017 char* buf_end = buf + ini_size; local in function:ImGui::LoadIniSettingsFromMemory 9025 for (char* line = buf; line < buf_end; line = line_end + 1) 9031 while (line_end < buf_end && *line_end != '\n' && *line_end != '\r') 9348 char *buf_p = buf, *buf_end = buf + IM_ARRAYSIZE(buf); local in function:ImGui::ShowMetricsWindow::Funcs::NodeDrawList 9355 buf_p += ImFormatString(buf_p, buf_end 9428 const char* buf_end = buf + IM_ARRAYSIZE(buf); local in function:ImGui::ShowMetricsWindow::Funcs::NodeTabBar [all...] |
| /xsrc/external/mit/fontconfig/dist/src/ |
| H A D | fcxml.c | 1545 char *buf_end; local in function:FcStrtod 1552 buf_end = 0; 1553 v = strtod (buf, &buf_end); 1554 if (buf_end) { 1555 buf_end = s + (buf_end - buf); 1556 if (buf_end > dot) 1557 buf_end -= dlen - 1; 1560 *end = buf_end;
|