/external/chromium_org/chrome/browser/extensions/api/sessions/ |
sessions_api.cc | 64 // Comparator function for use with std::sort that will sort tabs in a window 103 scoped_ptr<windows::Window> CreateWindowModelHelper( 106 const windows::Window::Type& type, 107 const windows::Window::State& state) { 108 scoped_ptr<windows::Window> window_struct(new windows::Window); 122 scoped_ptr<windows::Window> window) { 127 else if (window) 128 session_struct->window = window.Pass() 177 scoped_ptr<windows::Window> window; local 535 std::vector<const SessionWindow*>::const_iterator window = windows.begin(); local [all...] |
/external/chromium_org/ui/native_theme/ |
native_theme_win.h | 49 WINDOW, 325 typedef HANDLE (WINAPI* OpenThemeDataPtr)(HWND window,
|
native_theme_win.cc | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/ |
xm_api.c | 33 * The window coordinate system origin (0,0) is in the lower-left corner 34 * of the window. X11's window coordinate origin is in the upper-left 35 * corner of the window. Therefore, most drawing functions in this 93 * glViewport on window resizes will get incorrect rendering. A 241 * Determine if a given X window ID is valid (window exists). 242 * Do this by calling XGetWindowAttributes() for the window and 245 * win - the window to check for existance 246 * Return: GL_TRUE - window exist [all...] |
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
xm_api.c | 33 * The window coordinate system origin (0,0) is in the lower-left corner 34 * of the window. X11's window coordinate origin is in the upper-left 35 * corner of the window. Therefore, most drawing functions in this 93 * glViewport on window resizes will get incorrect rendering. A 241 * Determine if a given X window ID is valid (window exists). 242 * Do this by calling XGetWindowAttributes() for the window and 245 * win - the window to check for existance 246 * Return: GL_TRUE - window exist [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xm_api.c | 33 * The window coordinate system origin (0,0) is in the lower-left corner 34 * of the window. X11's window coordinate origin is in the upper-left 35 * corner of the window. Therefore, most drawing functions in this 192 * Determine if a given X window ID is valid (window exists). 193 * Do this by calling XGetWindowAttributes() for the window and 196 * win - the window to check for existance 197 * Return: GL_TRUE - window exists 198 * GL_FALSE - window doesn't exis [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xm_api.c | 33 * The window coordinate system origin (0,0) is in the lower-left corner 34 * of the window. X11's window coordinate origin is in the upper-left 35 * corner of the window. Therefore, most drawing functions in this 192 * Determine if a given X window ID is valid (window exists). 193 * Do this by calling XGetWindowAttributes() for the window and 196 * win - the window to check for existance 197 * Return: GL_TRUE - window exists 198 * GL_FALSE - window doesn't exis [all...] |
/external/chromium/chrome/browser/ui/webui/ |
new_tab_ui.cc | 547 // where an interesting entry is either a closed window or a closed tab 558 (entry->type == TabRestoreService::WINDOW && 560 *static_cast<TabRestoreService::Window*>(entry),
|
/external/chromium_org/chrome/browser/ui/gtk/ |
global_history_menu.cc | 79 // TabRestoreService to re-open the closed window or tab that this 85 // If the HistoryItem is a window, this will be the vector of tabs. Note 87 // of all items. If it is not a window, then the entry is a single page and 306 if (entry->type == TabRestoreService::WINDOW) { 307 TabRestoreService::Window* entry_win = 308 static_cast<TabRestoreService::Window*>(entry); 313 // Create the item for the parent/window. 328 // menu item to have the same effect as clicking the restore window 338 // Loop over the window's tabs and add them to the submenu.
|
/device/generic/goldfish/camera/fake-pipeline2/ |
Scene.cpp | 38 #define I (Scene::WINDOW * Scene::NUM_CHANNELS) 458 { kIncandescentXY[0], kIncandescentXY[1], kLivingRoomIllum }, // WINDOW
|
/external/chromium/chrome/browser/ |
jumplist_win.cc | 663 bool JumpList::AddWindow(const TabRestoreService::Window* window, 666 // This code enumerates al the tabs in the given window object and add their 669 if (window->tabs.empty()) { 673 for (size_t i = 0; i < window->tabs.size(); ++i) { 674 if (!AddTab(&window->tabs[i], list, max_items)) 744 } else if (entry->type == TabRestoreService::WINDOW) { 745 AddWindow(static_cast<const TabRestoreService::Window*>(entry),
|
/external/chromium_org/chrome/browser/ |
jumplist_win.cc | 618 } else if (entry->type == TabRestoreService::WINDOW) { 619 AddWindow(static_cast<const TabRestoreService::Window*>(entry), 655 void JumpList::AddWindow(const TabRestoreService::Window* window, 658 // This code enumerates al the tabs in the given window object and add their 660 DCHECK(!window->tabs.empty()); 662 for (size_t i = 0; i < window->tabs.size(); ++i) { 663 if (!AddTab(&window->tabs[i], list, max_items))
|
/external/chromium_org/chrome/browser/ui/toolbar/ |
recent_tabs_sub_menu_model.cc | 45 // Initial comamnd ID's for navigatable (and hence executable) tab/window menu 49 // local window items. 52 // - |local_window_items_| only has executable open window items. 53 // Using initial command IDs for local tab, local window and other devices' tab 69 // The maximum number of local recently closed entries (tab or window) to be 94 // Returns true if the command id identifies a window menu item. 408 DCHECK_EQ(entry->type, TabRestoreService::WINDOW); 411 static_cast<TabRestoreService::Window*>(entry)->tabs.size(), 454 // recent, independent of which window the tabs were from. 457 const SessionWindow* window = windows[j] local [all...] |
/external/chromium_org/chrome/browser/ui/views/frame/ |
global_menu_bar_x11.cc | 298 // TabRestoreService to re-open the closed window or tab that this 304 // If the HistoryItem is a window, this will be the vector of tabs. Note 306 // of all items. If it is not a window, then the entry is a single page and 662 if (entry->type == TabRestoreService::WINDOW) { 663 TabRestoreService::Window* entry_win = 664 static_cast<TabRestoreService::Window*>(entry); 669 // Create the item for the parent/window. 685 // menu item to have the same effect as clicking the restore window 703 // Loop over the window's tabs and add them to the submenu.
|
/external/chromium_org/chrome/browser/sessions/ |
session_restore_browsertest.cc | 109 browser->window()->Close(); 132 // Create a new window, which should trigger session restore. 191 // Verify that session restore does not occur when a user opens a browser window 197 // not do session restore if an incognito window is already open. 209 incognito_browser->window()->Show(); 211 // Close the normal browser. After this we only have the incognito window 215 // Create a new window, which should open NTP. 230 app_browser->window()->Maximize(); 231 app_browser->window()->Show(); 232 EXPECT_TRUE(app_browser->window()->IsMaximized()) 347 const TabRestoreService::Window* window = local 574 SessionWindow window; local [all...] |
persistent_tab_restore_service.cc | 45 // Payload used for the start of a window close. This is the old struct that is 54 // Payload used for the start of a window close. This struct must be POD, 92 // . When the user closes a window a kCommandSelectedNavigationInTab command 150 // Schedules the commands for a window close. 151 void ScheduleCommandsForWindow(const Window& window); 157 // Creates a window close command. 199 // Converts a SessionWindow into a Window, returning true on success. We use 0 200 // as the timestamp here since we do not know when the window/tab was closed. 202 Window* window) 884 TabRestoreService::Window* window = local [all...] |
/external/chromium_org/chrome/browser/ui/ |
browser_commands.cc | 133 if (browser->window()->IsActive() && model->IsBookmarked(url)) { 134 // Only show the bubble if the window is active, otherwise we may get into 136 browser->window()->ShowBookmarkBubble(url, was_bookmarked); 160 b->window()->Show(); 307 browser->window()->Show(); 412 LocationBar* location_bar = browser->window()->GetLocationBar(); 475 browser->window()->Close(); 495 b->window()->Show(); 497 // window was not active, so we have to do it explicitly. 523 if (service->entries().front()->type == TabRestoreService::WINDOW) [all...] |
/external/chromium/chrome/browser/ui/views/frame/ |
browser_view.cc | 63 #include "chrome/browser/ui/views/window.h" 91 #include "views/window/dialog_delegate.h" 92 #include "views/window/window.h" 99 #include "views/window/window_win.h" 102 #include "views/window/hit_test.h" 103 #include "views/window/window_gtk.h" 116 // The name of a key to store on the window handle so that other code can 121 // How long do we wait before we consider a window hung (in ms). 125 // The amount of space we expect the window border to take up 244 views::Window* window = GetWindow(); local 264 views::Window* window = GetWindow(); local 564 views::Window* window = frame_->GetWindow(); local 1147 views::Window* window = GetWidget()->GetWindow(); local [all...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
main.js | 83 'open-in-same-window': 'Meta-Down', 84 'open-in-new-window': 'Shift-Enter', 93 'open-in-same-window': 'Enter', 94 'open-in-new-window': 'Shift-Enter', 146 window.location.hash = tree.selectedItem.bookmarkId; 189 var id = window.location.hash.slice(1); 241 // Activate is handled by the open-in-same-window-command. 244 $('open-in-same-window-command').execute(); 500 case 'open-in-new-window-command': 506 case 'open-incognito-window-command' [all...] |
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
main.js | 83 'open-in-same-window': 'Meta-Down', 84 'open-in-new-window': 'Shift-Enter', 93 'open-in-same-window': 'Enter', 94 'open-in-new-window': 'Shift-Enter', 146 window.location.hash = tree.selectedItem.bookmarkId; 186 var id = window.location.hash.slice(1); 238 // Activate is handled by the open-in-same-window-command. 241 $('open-in-same-window-command').execute(); 487 case 'open-in-new-window-command': 493 case 'open-incognito-window-command' [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
Tix.py | 39 WINDOW = 'window' 83 display, rather than to a particular window. 211 """Toplevel widget of Tix which represents mostly the main window 493 elif not master: raise RuntimeError, "Too early to create display style: no root window" 752 system in a dialog window. The user can use this dialog window to [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
Tix.py | 39 WINDOW = 'window' 83 display, rather than to a particular window. 211 """Toplevel widget of Tix which represents mostly the main window 493 elif not master: raise RuntimeError, "Too early to create display style: no root window" 752 system in a dialog window. The user can use this dialog window to [all...] |
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
main.js | 127 console.info('navigateTo', 'from', window.location.hash, 'to', id); 133 window.location.hash = tree.selectedItem.bookmarkId; 157 window.onhashchange = function(e) { 158 var id = window.location.hash.slice(1); 182 // Activate is handled by the open-in-same-window-command. 185 $('open-in-same-window-command').execute(); 354 var hash = window.location.hash.slice(1); 775 window.clearTimeout(this.hideDropOverlayTimer_); 807 window.clearTimeout(this.hideDropOverlayTimer_); 808 this.hideDropOverlayTimer_ = window.setTimeout(function() [all...] |
/prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/ |
swt-3.5.0.jar | |
/prebuilts/tools/darwin-x86/swt/ |
swt.jar | |