/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_demo.cpp | 110 static void ShowExampleAppDocuments(bool* p_open); 112 static void ShowExampleAppConsole(bool* p_open); 113 static void ShowExampleAppLog(bool* p_open); 114 static void ShowExampleAppLayout(bool* p_open); 115 static void ShowExampleAppPropertyEditor(bool* p_open); 116 static void ShowExampleAppLongText(bool* p_open); 117 static void ShowExampleAppAutoResize(bool* p_open); 118 static void ShowExampleAppConstrainedResize(bool* p_open); 119 static void ShowExampleAppSimpleOverlay(bool* p_open); 120 static void ShowExampleAppWindowTitles(bool* p_open); [all …]
|
D | imgui.h | 212 …IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (pr… 213 …IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. displa… 214 …IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. disp… 236 … IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); 483 …IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags… 541 …IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags fl… 563 …IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags fla… 1501 …IMGUI_API bool Begin(const char* name, bool* p_open, const ImVec2& size_on_first_use, float b…
|
D | imgui_widgets.cpp | 4970 bool ImGui::CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags) in CollapsingHeader() argument 4976 if (p_open && !*p_open) in CollapsingHeader() 4980 …bool is_open = TreeNodeBehavior(id, flags | ImGuiTreeNodeFlags_CollapsingHeader | (p_open ? ImGuiT… in CollapsingHeader() 4981 if (p_open) in CollapsingHeader() 4989 *p_open = false; in CollapsingHeader() 6228 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) in BeginTabItem() argument 6236 bool ret = TabItemEx(tab_bar, label, p_open, flags); in BeginTabItem() 6259 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags f… in TabItemEx() argument 6274 if (p_open && !*p_open) in TabItemEx() 6283 ImVec2 size = TabItemCalcSize(label, p_open != NULL); in TabItemEx() [all …]
|
D | imgui.cpp | 4742 bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) in Begin() argument 4779 window->HasCloseButton = (p_open != NULL); in Begin() 5254 if (p_open != NULL) in Begin() 5259 *p_open = false; in Begin() 5273 …float pad_right = (p_open == NULL) ? style.FramePadding.x : (style.FramePaddin… in Begin() 5279 …clip_rect.Max.x = window->Pos.x + window->Size.x - (p_open ? title_bar_rect.GetHeight() - 3 : styl… in Begin() 5363 bool ImGui::Begin(const char* name, bool* p_open, const ImVec2& size_first_use, float bg_alpha_over… in Begin() argument 5373 return Begin(name, p_open, flags); in Begin() 6795 bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) in BeginPopupModal() argument 6812 const bool is_open = Begin(name, p_open, flags); in BeginPopupModal() [all …]
|
D | imgui_internal.h | 1386 …IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabI…
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_demo.cpp | 173 static void ShowExampleAppDocuments(bool* p_open); 175 static void ShowExampleAppConsole(bool* p_open); 176 static void ShowExampleAppLog(bool* p_open); 177 static void ShowExampleAppLayout(bool* p_open); 178 static void ShowExampleAppPropertyEditor(bool* p_open); 179 static void ShowExampleAppLongText(bool* p_open); 180 static void ShowExampleAppAutoResize(bool* p_open); 181 static void ShowExampleAppConstrainedResize(bool* p_open); 182 static void ShowExampleAppSimpleOverlay(bool* p_open); 183 static void ShowExampleAppFullscreen(bool* p_open); [all …]
|
D | imgui.h | 308 …IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create Demo window. demonst… 309 …IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create Metrics/Debugger win… 310 …IMGUI_API void ShowStackToolWindow(bool* p_open = NULL); // create Stack Tool window. h… 311 …IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create About window. displa… 335 … IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); 683 …IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags fl… 789 …IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags fla…
|
D | imgui_widgets.cpp | 7804 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) in BeginTabItem() argument 7819 bool ret = TabItemEx(tab_bar, label, p_open, flags); in BeginTabItem() 7863 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags f… in TabItemEx() argument 7880 if (p_open && !*p_open) in TabItemEx() 7886 IM_ASSERT(!p_open || !(flags & ImGuiTabItemFlags_Button)); in TabItemEx() 7891 p_open = NULL; in TabItemEx() 7892 else if (p_open == NULL) in TabItemEx() 7896 ImVec2 size = TabItemCalcSize(label, p_open != NULL); in TabItemEx() 8044 const ImGuiID close_button_id = p_open ? GetIDWithSeed("#CLOSE", NULL, id) : 0; in TabItemEx() 8048 if (just_closed && p_open != NULL) in TabItemEx() [all …]
|
D | imgui.cpp | 942 …itleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open); 5657 …TitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open) in RenderWindowTitleBarContents() argument 5663 const bool has_close_button = (p_open != NULL); in RenderWindowTitleBarContents() 5702 *p_open = false; in RenderWindowTitleBarContents() 5768 bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) in Begin() argument 5906 window->HasCloseButton = (p_open != NULL); in Begin() 6334 …_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open); in Begin() 8524 bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) in BeginPopupModal() argument 8545 const bool is_open = Begin(name, p_open, flags); in BeginPopupModal() 8546 …if (!is_open || (p_open && !*p_open)) // NB: is_open can be 'false' when the popup is completely c… in BeginPopupModal() [all …]
|
D | imgui_internal.h | 2633 …IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabI…
|
/third_party/openssl/crypto/store/ |
D | store_meth.c | 210 if (loader->p_open == NULL) in loader_from_algorithm() 211 loader->p_open = OSSL_FUNC_store_open(fns); in loader_from_algorithm() 245 if ((loader->p_open == NULL && loader->p_attach == NULL) in loader_from_algorithm()
|
D | store_local.h | 108 OSSL_FUNC_store_open_fn *p_open; member
|
D | store_lib.c | 134 loader_ctx = fetched_loader->p_open(provctx, uri); in OSSL_STORE_open_ex()
|
/third_party/mesa3d/src/imgui/ |
D | imgui.h | 216 …IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (pr… 217 …IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. displa… 218 …IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. disp… 240 … IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); 489 …IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags… 547 …IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags fl… 569 …IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags fla… 1508 …IMGUI_API bool Begin(const char* name, bool* p_open, const ImVec2& size_on_first_use, float b…
|
D | imgui_widgets.cpp | 4987 bool ImGui::CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags) in CollapsingHeader() argument 4993 if (p_open && !*p_open) in CollapsingHeader() 4997 …bool is_open = TreeNodeBehavior(id, flags | ImGuiTreeNodeFlags_CollapsingHeader | (p_open ? ImGuiT… in CollapsingHeader() 4998 if (p_open) in CollapsingHeader() 5006 *p_open = false; in CollapsingHeader() 6308 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) in BeginTabItem() argument 6316 bool ret = TabItemEx(tab_bar, label, p_open, flags); in BeginTabItem() 6339 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags f… in TabItemEx() argument 6354 if (p_open && !*p_open) in TabItemEx() 6363 ImVec2 size = TabItemCalcSize(label, p_open != NULL); in TabItemEx() [all …]
|
D | imgui.cpp | 4866 bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) in Begin() argument 4903 window->HasCloseButton = (p_open != NULL); in Begin() 5380 if (p_open != NULL) in Begin() 5385 *p_open = false; in Begin() 5399 …float pad_right = (p_open == NULL) ? style.FramePadding.x : (style.FramePaddin… in Begin() 5405 …clip_rect.Max.x = window->Pos.x + window->Size.x - (p_open ? title_bar_rect.GetHeight() - 3 : styl… in Begin() 5489 bool ImGui::Begin(const char* name, bool* p_open, const ImVec2& size_first_use, float bg_alpha_over… in Begin() argument 5499 return Begin(name, p_open, flags); in Begin() 6938 bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) in BeginPopupModal() argument 6955 const bool is_open = Begin(name, p_open, flags); in BeginPopupModal() [all …]
|
D | imgui_internal.h | 1433 …IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabI…
|
/third_party/openssl/crypto/evp/ |
D | build.info | 32 SOURCE[../../libcrypto]=p_open.c
|
/third_party/flutter/skia/third_party/externals/imgui/docs/ |
D | TODO.txt | 17 - window: begin with *p_open == false could return false.
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | TODO.txt | 17 - window: begin with *p_open == false could return false.
|
/third_party/openssl/ |
D | BUILD.gn | 1138 "crypto/evp/p_open.c",
|