/external/chromium_org/third_party/WebKit/public/web/ |
H A D | WebWindowFeatures.h | 59 bool resizable; member in struct:WebKit::WebWindowFeatures 75 , resizable(true) 97 , resizable(f.resizable) 120 result.resizable = resizable;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
H A D | WindowFeatures.h | 50 , resizable(true) 72 bool resizable; member in struct:WebCore::WindowFeatures
|
H A D | WindowFeatures.cpp | 62 resizable = true; 71 resizable = true; 132 // We treat keyString of "resizable" here as an additional feature rather than setting resizeable to true. 204 resizable = boolFeature(features, "resizable");
|
H A D | Chrome.cpp | 190 m_client->setResizable(features.resizable);
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
H A D | browser_actions_container_view.h | 78 @property(nonatomic,getter=isResizable) BOOL resizable; variable
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
H A D | browser_actions_container_view.h | 77 @property(nonatomic,getter=isResizable) BOOL resizable; variable
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
H A D | SplitView.js | 230 * @param {boolean} resizable 232 setResizable: function(resizable) 234 this._resizable = resizable; 235 this._resizerElement.enableStyleClass("hidden", !resizable);
|
/external/chromium_org/chrome/browser/extensions/api/app_window/ |
H A D | app_window_api.cc | 250 if (options->resizable.get()) 251 create_params.resizable = *options->resizable.get();
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/bookmarks/basic/ |
H A D | popup.js | 59 resizable: false,
|
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/example_zipper/basic/ |
H A D | popup.js | 59 resizable: false,
|
/external/doclava/res/assets/templates/assets/ |
H A D | doclava-developer-docs.css | 35 #side-nav.not-resizable { 1078 .ui-resizable { position: relative; } 1079 .ui-resizable-handle { position: absolute; display: none; font-size: 0.1px; z-index:1; } 1080 .ui-resizable .ui-resizable-handle { display: block; } 1081 body .ui-resizable-disabled .ui-resizable-handle { display: none; } 1082 body .ui-resizable-autohide .ui-resizable-handle { display: none; } 1083 .ui-resizable [all...] |
H A D | doclava-developer-docs.js | 155 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } }); 156 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } }); 161 } else if ($(".side-nav-resizable").length) { 280 * which creates the resizable side bar */ 298 if ($(".side-nav-resizable").length) { // Must check if the nav is resizable because IE6 calls resizeWidth() from resizeAll() for all pages
|
/external/chromium_org/chrome/browser/ui/gtk/ |
H A D | gtk_util.h | 76 // |resizable| also controls whether the dialog will be resizable 80 int width_id, int height_id, bool resizable);
|
H A D | gtk_util.cc | 384 int width_id, int height_id, bool resizable) { 391 if (resizable) { 394 // For a non-resizable window, GTK tries to snap the window size 411 gtk_window_set_resizable(window, resizable ? TRUE : FALSE); 383 SetWindowSizeFromResources(GtkWindow* window, int width_id, int height_id, bool resizable) argument
|
/external/chromium/chrome/browser/ui/gtk/ |
H A D | gtk_util.h | 119 // |resizable| also controls whether the dialog will be resizable 123 int width_id, int height_id, bool resizable);
|
H A D | gtk_util.cc | 307 int width_id, int height_id, bool resizable) { 314 if (resizable) { 317 // For a non-resizable window, GTK tries to snap the window size 334 gtk_window_set_resizable(window, resizable ? TRUE : FALSE); 306 SetWindowSizeFromResources(GtkWindow* window, int width_id, int height_id, bool resizable) argument
|
/external/chromium_org/chrome/browser/ui/panels/ |
H A D | panel.h | 221 void SetAutoResizable(bool resizable); 242 // user-resizable, it should not be a problem. 255 // Sets up the panel for being resizable by the user - for example,
|
H A D | panel.cc | 574 void Panel::SetAutoResizable(bool resizable) { argument 575 if (auto_resizable_ == resizable) 578 auto_resizable_ = resizable;
|
/external/chromium_org/content/public/common/ |
H A D | common_param_traits_macros.h | 231 IPC_STRUCT_TRAITS_MEMBER(resizable)
|
/external/chromium_org/apps/ |
H A D | shell_window.h | 121 // If true, the window will be resizable by the user. Defaults to true. 122 bool resizable; member in struct:apps::ShellWindow::CreateParams
|
H A D | shell_window.cc | 62 resizable(true),
|
/external/chromium_org/v8/tools/ |
H A D | stats-viewer.py | 262 self.root.resizable(width=False, height=False)
|
/external/v8/tools/ |
H A D | stats-viewer.py | 262 self.root.resizable(width=False, height=False)
|
/external/valgrind/main/helgrind/ |
H A D | hg_main.c | 2767 Bool resizable; /* is resizing allowed? */ member in struct:__anon27542 2828 UWord resizable ) 2835 "(tid=%d, barrier=%p, count=%lu, resizable=%lu)\n", 2836 (Int)tid, (void*)barrier, count, resizable ); 2847 if (resizable != 0 && resizable != 1) { 2849 thr, "pthread_barrier_init: invalid 'resizable' argument" 2877 bar->resizable = resizable == 1 ? True : False; 3071 if (!bar->resizable) { [all...] |
/external/chromium_org/chrome/browser/ui/gtk/apps/ |
H A D | native_app_window_gtk.cc | 72 resizable_ = params.resizable; 74 // If the window doesn't have a size request when we set resizable to 450 // Fullscreen of non-resizable windows requires them to be made resizable 577 // We must first make the window resizable. That won't take effect
|