| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | link_uniforms.cpp | 851 const char *str_end; local in function:parcel_out_uniform_storage::set_opaque_indices 853 (str_end = strchr(name_copy, ']'))) { 854 memmove(str_start, str_end + 1, 1 + strlen(str_end + 1));
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | link_uniforms.cpp | 622 const char *str_end; local in function:parcel_out_uniform_storage::set_opaque_indices 624 (str_end = strchr(name_copy, ']'))) { 625 memmove(str_start, str_end + 1, 1 + strlen(str_end + 1));
|
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_internal.h | 177 IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c); 179 IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End end-of-line 1214 ImGuiID GetID(const char* str, const char* str_end = NULL); 1216 ImGuiID GetIDNoKeepAlive(const char* str, const char* str_end = NULL);
|
| H A D | imgui_demo.cpp | 3151 static void Strtrim(char* str) { char* str_end = str + strlen(str); while (str_end > str && str_end[-1] == ' ') str_end--; *str_end = 0; } local in function:ExampleAppConsole::Strtrim
|
| H A D | imgui.cpp | 1325 const char* ImStrchrRange(const char* str, const char* str_end, char c) argument 1327 const char* p = (const char*)memchr(str, (int)c, str_end - str); 1339 // Find end-of-line. Return pointer will point to either first \n, either str_end. 1340 const char* ImStreolRange(const char* str, const char* str_end) argument 1342 const char* p = (const char*)memchr(str, '\n', str_end - str); 1343 return p ? p : str_end; 2128 void ImGuiTextBuffer::append(const char* str, const char* str_end) argument 2130 int len = str_end ? (int)(str_end - str) : (int)strlen(str); 2566 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) argument 2582 GetIDNoKeepAlive(const char * str,const char * str_end) argument [all...] |
| H A D | imgui.h | 1594 IMGUI_API void append(const char* str, const char* str_end = NULL);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_internal.h | 177 IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c); 179 IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End end-of-line 1214 ImGuiID GetID(const char* str, const char* str_end = NULL); 1216 ImGuiID GetIDNoKeepAlive(const char* str, const char* str_end = NULL);
|
| H A D | imgui.cpp | 1325 const char* ImStrchrRange(const char* str, const char* str_end, char c) argument 1327 const char* p = (const char*)memchr(str, (int)c, str_end - str); 1339 // Find end-of-line. Return pointer will point to either first \n, either str_end. 1340 const char* ImStreolRange(const char* str, const char* str_end) argument 1342 const char* p = (const char*)memchr(str, '\n', str_end - str); 1343 return p ? p : str_end; 2128 void ImGuiTextBuffer::append(const char* str, const char* str_end) argument 2130 int len = str_end ? (int)(str_end - str) : (int)strlen(str); 2566 ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) argument 2582 GetIDNoKeepAlive(const char * str,const char * str_end) argument [all...] |
| H A D | imgui.h | 1594 IMGUI_API void append(const char* str, const char* str_end = NULL);
|