Home
last modified time | relevance | path

Searched refs:p_open (Results 1 - 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp173 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);
258 ShowDemoWindow(bool* p_open) ShowDemoWindow() argument
5666 ShowAboutWindow(bool* p_open) global() argument
6569 ShowExampleAppConsole(bool* p_open) global() argument
6704 ShowExampleAppLog(bool* p_open) global() argument
6738 ShowExampleAppLayout(bool* p_open) global() argument
6851 ShowExampleAppPropertyEditor(bool* p_open) global() argument
6886 ShowExampleAppLongText(bool* p_open) global() argument
6948 ShowExampleAppAutoResize(bool* p_open) global() argument
6972 ShowExampleAppConstrainedResize(bool* p_open) global() argument
7026 ShowExampleAppSimpleOverlay(bool* p_open) global() argument
7073 ShowExampleAppFullscreen(bool* p_open) global() argument
7144 ShowExampleAppCustomRendering(bool* p_open) global() argument
7474 ShowExampleAppDocuments(bool* p_open) global() argument
[all...]
H A Dimgui.h308 IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create Demo window. demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!
309 IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create Metrics/Debugger window. display Dear ImGui internals: windows, draw commands, various internal state, etc.
310 IMGUI_API void ShowStackToolWindow(bool* p_open = NULL); // create Stack Tool window. hover items with mouse to query information about the source of their unique ID.
311 IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create About window. display Dear ImGui version, credits and build/system information.
325 // - Passing 'bool* p_open != NULL' shows a window-closing widget in the upper-right corner of the window,
328 // Some information such as 'flags' or 'p_open' will only be considered by the first call to Begin().
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 flags = 0); // return true if the modal is open, and you can start outputting to it.
789 IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0); // create a Tab. Returns true if the Tab is selected.
1096 ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open !
[all...]
H A Dimgui_widgets.cpp7804 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags)
7819 bool ret = TabItemEx(tab_bar, label, p_open, flags);
7863 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags)
7877 // If the user called us with *p_open == false, we early out and don't render.
7880 if (p_open && !*p_open)
7886 IM_ASSERT(!p_open || !(flags & ImGuiTabItemFlags_Button));
7891 p_open = NULL;
7892 else if (p_open == NULL)
7896 ImVec2 size = TabItemCalcSize(label, p_open !
[all...]
H A Dimgui.cpp116 - Click upper right corner to close a window, available when 'bool* p_open' is passed to ImGui::Begin().
942 static void RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open);
5657 void ImGui::RenderWindowTitleBarContents(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()
5767 // - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed.
5768 bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) in Begin() argument
5906 window->HasCloseButton = (p_open != NULL); in Begin()
6334 RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open); in Begin()
8522 // If 'p_open' i
8524 BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) BeginPopupModal() argument
11259 ShowMetricsWindow(bool* p_open) ShowMetricsWindow() argument
12161 ShowStackToolWindow(bool* p_open) ShowStackToolWindow() argument
[all...]
H A Dimgui_internal.h1950 bool HasCloseButton; // Set when the window has a close button (p_open != NULL)
2047 ImGuiTabItemFlags_NoCloseButton = 1 << 20, // Track whether p_open was set or not (we'll need this info on the next frame to recompute ContentWidth during layout)
2633 IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags);
/third_party/node/deps/openssl/openssl/crypto/store/
H A Dstore_meth.c210 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()
H A Dstore_local.h108 OSSL_FUNC_store_open_fn *p_open; member
H A Dstore_lib.c134 loader_ctx = fetched_loader->p_open(provctx, uri); in OSSL_STORE_open_ex()
/third_party/openssl/crypto/store/
H A Dstore_meth.c210 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()
H A Dstore_local.h108 OSSL_FUNC_store_open_fn *p_open; member
H A Dstore_lib.c134 loader_ctx = fetched_loader->p_open(provctx, uri); in OSSL_STORE_open_ex()
/third_party/mesa3d/src/imgui/
H A Dimgui.h216 IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (previously called ShowTestWindow). demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application!
217 IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. display Dear ImGui version, credits and build/system information.
218 IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. display Dear ImGui internals: draw commands (with individual draw calls and vertices), window list, basic internal state, etc.
233 // - Passing 'bool* p_open != NULL' shows a window-closing widget in the upper-right corner of the window,
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 = 0); // when 'p_open' isn't NULL, display an additional small close button on upper right of the header
547 IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // modal dialog (regular window with title bar, block interactions behind the modal window, can't close the modal window by clicking outside)
569 IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0);// create a Tab. Returns true if the Tab is selected.
815 ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open !
[all...]
H A Dimgui_widgets.cpp4987 bool ImGui::CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags)
4993 if (p_open && !*p_open)
4997 bool is_open = TreeNodeBehavior(id, flags | ImGuiTreeNodeFlags_CollapsingHeader | (p_open ? ImGuiTreeNodeFlags_AllowItemOverlap : 0), label);
4998 if (p_open)
5006 *p_open = false;
6308 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags)
6316 bool ret = TabItemEx(tab_bar, label, p_open, flags);
6339 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags)
6353 // If the user called us with *p_open
[all...]
H A Dimgui.cpp110 - Click upper right corner to close a window, available when 'bool* p_open' is passed to ImGui::Begin().
4865 // - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed.
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.FramePadding.x + g.FontSize + style.ItemInnerSpacing.x); in Begin()
5405 clip_rect.Max.x = window->Pos.x + window->Size.x - (p_open ? title_bar_rect.GetHeight() - 3 : style.FramePadding.x); // Match the size of CloseButton() in Begin()
5489 bool ImGui::Begin(const char* name, bool* p_open, const ImVec2& size_first_use, float bg_alpha_override, ImGuiWindowFlags flags) in Begin() argument
5499 return Begin(name, p_open, flag in Begin()
6938 BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) BeginPopupModal() argument
9279 ShowMetricsWindow(bool* p_open) ShowMetricsWindow() argument
[all...]
H A Dimgui_internal.h1158 bool HasCloseButton; // Set when the window has a close button (p_open != NULL)
1255 ImGuiTabItemFlags_NoCloseButton = 1 << 20 // Store whether p_open is set or not, which we need to recompute WidthContents during layout.
1433 IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags);

Completed in 83 milliseconds