Home
last modified time | relevance | path

Searched refs:ImHashStr (Results 1 - 7 of 7) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h152 IMGUI_API ImU32 ImHashStr(const char* data, size_t data_size, ImU32 seed = 0);
161 static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68] in ImHash()
604 ImGuiID TypeHash; // == ImHashStr(TypeName, 0, 0)
H A Dimgui.cpp1482 ImU32 ImHashStr(const char* data, size_t data_size, ImU32 seed) in ImHashStr() function
2499 ID = ImHashStr(name, 0); in ImGuiWindow()
2569 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetID()
2585 return ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetIDNoKeepAlive()
3551 ini_handler.TypeHash = ImHashStr("Window", 0); in Initialize()
4474 ImGuiID id = ImHashStr(name, 0); in FindWindowByName()
8547 source_id = ImHashStr("#SourceExtern", 0); in BeginDragDropSource()
8965 settings->ID = ImHashStr(name, 0); in CreateNewWindowSettings()
8980 if (ImGuiWindowSettings* settings = FindWindowSettings(ImHashStr(name, 0))) in FindOrCreateWindowSettings()
8998 const ImGuiID type_hash = ImHashStr(type_nam in FindSettingsHandler()
[all...]
H A Dimgui_widgets.cpp6124 ImGuiID id = ImHashStr(label, 0);
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1544 ImGuiID ImHashStr(const char* data_p, size_t data_size, ImU32 seed) in ImHashStr() function
2942 ID = ImHashStr(name); in ImGuiWindow()
2970 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetID()
3003 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetIDNoKeepAlive()
4176 ini_handler.TypeHash = ImHashStr("Window"); in Initialize()
5152 ImGuiID id = ImHashStr(name); in FindWindowByName()
5390 id = ImHashStr("#RESIZE", 0, id); in GetWindowResizeCornerID()
5401 id = ImHashStr("#RESIZE", 0, id); in GetWindowResizeBorderID()
7179 ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); in GetIDWithSeed()
10193 source_id = ImHashStr("#SourceExter in BeginDragDropSource()
[all...]
H A Dimgui_tables.cpp1107 const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID); in TableUpdateLayout()
3017 const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID);
3432 ini_handler.TypeHash = ImHashStr("Table");
H A Dimgui_internal.h291 IMGUI_API ImGuiID ImHashStr(const char* data, size_t data_size = 0, ImU32 seed = 0);
293 static inline ImGuiID ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68] in ImHash()
1374 ImGuiID TypeHash; // == ImHashStr(TypeName)
1920 ImGuiID ID; // == ImHashStr(Name)
H A Dimgui_widgets.cpp1586 const ImGuiID popup_id = ImHashStr("##ComboPopup", 0, id); in BeginCombo()
7517 ImGuiID id = ImHashStr(label);

Completed in 75 milliseconds