Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_demo.cpp3063 struct ExampleAppConsole struct
3072 ExampleAppConsole() in ExampleAppConsole() function
3083 ~ExampleAppConsole() in ~ExampleAppConsole() argument
3091 … int d; while ((d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; } return d; } in Stricmp()
3092 …(n > 0 && (d = toupper(*str2) - toupper(*str1)) == 0 && *str1) { str1++; str2++; n--; } return d; } in Strnicmp()
3093 …n = strlen(str) + 1; void* buff = malloc(len); return (char*)memcpy(buff, (const void*)str, len); } in Strdup()
3094 …str_end = str + strlen(str); while (str_end > str && str_end[-1] == ' ') str_end--; *str_end = 0; } in Strtrim()
3096 void ClearLog() in ClearLog()
3104 void AddLog(const char* fmt, ...) IM_FMTARGS(2) in AddLog()
3117 void Draw(const char* title, bool* p_open) in Draw()
[all …]
/third_party/skia/third_party/externals/imgui/
Dimgui_demo.cpp6223 struct ExampleAppConsole struct
6234 ExampleAppConsole() argument
6249 ~ExampleAppConsole() argument
6257 … { int d; while ((d = toupper(*s2) - toupper(*s1)) == 0 && *s1) { s1++; s2++; } return d; }
6258 … 0; while (n > 0 && (d = toupper(*s2) - toupper(*s1)) == 0 && *s1) { s1++; s2++; n--; } return d; }
6259 …(s) + 1; void* buf = malloc(len); IM_ASSERT(buf); return (char*)memcpy(buf, (const void*)s, len); }
6260 …char* str_end = s + strlen(s); while (str_end > s && str_end[-1] == ' ') str_end--; *str_end = 0; }
6262 void ClearLog()
6269 void AddLog(const char* fmt, ...) IM_FMTARGS(2)
6281 void Draw(const char* title, bool* p_open)
[all …]