Searched refs:str_id_end (Results 1 - 5 of 5) sorted by relevance
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 361 IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end); // push string into the ID stack (will hash string). 366 IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);
|
H A D | imgui.cpp | 6486 void ImGui::PushID(const char* str_id_begin, const char* str_id_end) in PushID() argument 6489 window->IDStack.push_back(window->GetIDNoKeepAlive(str_id_begin, str_id_end)); in PushID() 6517 ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) in GetID() argument 6520 return window->GetID(str_id_begin, str_id_end); in GetID()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui.h | 476 IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end); // push string into the ID stack (will hash string). 481 IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end);
|
H A D | imgui.cpp | 7140 void ImGui::PushID(const char* str_id_begin, const char* str_id_end) in PushID() argument 7144 ImGuiID id = window->GetIDNoKeepAlive(str_id_begin, str_id_end); in PushID() 7200 ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) in GetID() argument 7203 return window->GetID(str_id_begin, str_id_end); in GetID()
|
H A D | imgui_internal.h | 2459 IMGUI_API ImGuiID GetIDWithSeed(const char* str_id_begin, const char* str_id_end, ImGuiID seed);
|
Completed in 63 milliseconds