/external/chromium_org/content/shell/browser/ |
D | shell.cc | 38 const int Shell::kDefaultTestWindowWidthDip = 800; 39 const int Shell::kDefaultTestWindowHeightDip = 600; 41 std::vector<Shell*> Shell::windows_; 42 base::Callback<void(Shell*)> Shell::shell_created_callback_; 44 bool Shell::quit_message_loop_ = true; 46 class Shell::DevToolsWebContentsObserver : public WebContentsObserver { 48 DevToolsWebContentsObserver(Shell* shell, WebContents* web_contents) in DevToolsWebContentsObserver() 59 Shell* shell_; 64 Shell::Shell(WebContents* web_contents) in Shell() function in content::Shell 85 Shell::~Shell() { in ~Shell() [all …]
|
D | shell_android.cc | 23 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize() 29 void Shell::PlatformExit() { in PlatformExit() 32 void Shell::PlatformCleanUp() { in PlatformCleanUp() 35 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl() 38 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL() 44 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading() 49 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow() 53 void Shell::PlatformSetContents() { in PlatformSetContents() 59 void Shell::PlatformResizeSubViews() { in PlatformResizeSubViews() 63 void Shell::PlatformSetTitle(const base::string16& title) { in PlatformSetTitle() [all …]
|
D | shell_gtk.cc | 27 gboolean ShowWebInspectorActivated(GtkWidget* widget, Shell* shell) { in ShowWebInspectorActivated() 33 GCallback callback, Shell* shell) { in AddMenuEntry() 48 GtkWidget* CreateMenuBar(Shell* shell) { in CreateMenuBar() 58 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize() 61 void Shell::PlatformExit() { in PlatformExit() 64 void Shell::PlatformCleanUp() { in PlatformCleanUp() 68 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl() 90 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL() 97 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading() 107 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow() [all …]
|
D | shell_win.cc | 33 HINSTANCE Shell::instance_handle_; 35 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize() 45 void Shell::PlatformExit() { in PlatformExit() 46 std::vector<Shell*> windows = windows_; in PlatformExit() 47 for (std::vector<Shell*>::iterator it = windows.begin(); in PlatformExit() 52 void Shell::PlatformCleanUp() { in PlatformCleanUp() 59 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl() 78 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL() 84 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading() 87 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow() [all …]
|
D | shell.h | 55 class Shell : public WebContentsDelegate, 61 virtual ~Shell(); 81 static Shell* CreateNewWindow(BrowserContext* browser_context, 88 static Shell* FromRenderViewHost(RenderViewHost* rvh); 91 static std::vector<Shell*>& windows() { return windows_; } in windows() 98 base::Callback<void(Shell*)> shell_created_callback); 162 explicit Shell(WebContents* web_contents); 165 static Shell* CreateShell(WebContents* web_contents, 214 CHROMEGTK_CALLBACK_0(Shell, void, OnBackButtonClicked); 215 CHROMEGTK_CALLBACK_0(Shell, void, OnForwardButtonClicked); [all …]
|
D | shell_aura.cc | 125 ShellAuraPlatformData* Shell::platform_ = NULL; 154 void Shell::PlatformInitialize(const gfx::Size& default_window_size) { in PlatformInitialize() 160 void Shell::PlatformExit() { in PlatformExit() 167 void Shell::PlatformCleanUp() { in PlatformCleanUp() 170 void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { in PlatformEnableUIControl() 173 void Shell::PlatformSetAddressBarURL(const GURL& url) { in PlatformSetAddressBarURL() 176 void Shell::PlatformSetIsLoading(bool loading) { in PlatformSetIsLoading() 179 void Shell::PlatformCreateWindow(int width, int height) { in PlatformCreateWindow() 184 void Shell::PlatformSetContents() { in PlatformSetContents() 194 void Shell::PlatformResizeSubViews() { in PlatformResizeSubViews() [all …]
|
/external/chromium_org/ash/ |
D | shell.cc | 167 Shell* Shell::instance_ = NULL; 169 bool Shell::initially_hide_cursor_ = false; 175 Shell* Shell::CreateInstance(ShellDelegate* delegate) { in CreateInstance() 177 instance_ = new Shell(delegate); in CreateInstance() 183 Shell* Shell::GetInstance() { in GetInstance() 189 bool Shell::HasInstance() { in HasInstance() 194 void Shell::DeleteInstance() { in DeleteInstance() 200 internal::RootWindowController* Shell::GetPrimaryRootWindowController() { in GetPrimaryRootWindowController() 205 Shell::RootWindowControllerList Shell::GetAllRootWindowControllers() { in GetAllRootWindowControllers() 206 return Shell::GetInstance()->display_controller()-> in GetAllRootWindowControllers() [all …]
|
D | shell_unittest.cc | 48 return Shell::GetContainer( in GetDefaultContainer() 49 Shell::GetPrimaryRootWindow(), in GetDefaultContainer() 54 return Shell::GetContainer( in GetAlwaysOnTopContainer() 55 Shell::GetPrimaryRootWindow(), in GetAlwaysOnTopContainer() 61 aura::Window* root_window = Shell::GetPrimaryRootWindow(); in ExpectAllContainers() 62 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers() 64 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers() 66 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers() 68 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers() 70 EXPECT_TRUE(Shell::GetContainer( in ExpectAllContainers() [all …]
|
D | root_window_controller_unittest.cc | 121 return Shell::GetContainer( in GetModalContainer() 132 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F() 134 Shell::GetPrimaryRootWindowController(); in TEST_F() 265 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F() 293 Shell* shell = Shell::GetInstance(); in TEST_F() 298 EXPECT_EQ(Shell::GetContainer(controller->root_window(), in TEST_F() 304 EXPECT_EQ(Shell::GetContainer(controller->root_window(), in TEST_F() 312 EXPECT_EQ(Shell::GetContainer(controller->root_window(), in TEST_F() 317 Shell::GetContainer(controller->root_window(), in TEST_F() 321 EXPECT_EQ(Shell::GetContainer(controller->root_window(), in TEST_F() [all …]
|
/external/chromium_org/ash/first_run/ |
D | first_run_helper_impl.cc | 25 params.bounds = Shell::GetScreen()->GetPrimaryDisplay().bounds(); in CreateFirstRunWindow() 29 Shell::GetContainer(Shell::GetPrimaryRootWindow(), in CreateFirstRunWindow() 40 Shell::GetInstance()->overlay_filter()->Activate(this); in FirstRunHelperImpl() 44 Shell::GetInstance()->overlay_filter()->Deactivate(); in ~FirstRunHelperImpl() 55 if (Shell::GetInstance()->GetAppListTargetVisibility()) in OpenAppList() 57 Shell::GetInstance()->ToggleAppList(NULL); in OpenAppList() 61 if (!Shell::GetInstance()->GetAppListTargetVisibility()) in CloseAppList() 63 Shell::GetInstance()->ToggleAppList(NULL); in CloseAppList() 78 app_list::AppListView* view = Shell::GetInstance()->GetAppListView(); in GetAppListBounds() 95 SystemTray* tray = Shell::GetInstance()->GetPrimarySystemTray(); in OpenTrayBubble() [all …]
|
/external/chromium_org/ash/accelerators/ |
D | accelerator_controller.cc | 103 if (!Shell::GetInstance()->accessibility_delegate()-> in HandleAccessibleFocusCycle() 128 Shell* shell = Shell::GetInstance(); in HandleCycleBackwardMRU() 144 Shell* shell = Shell::GetInstance(); in HandleCycleForwardMRU() 160 Shell* shell = Shell::GetInstance(); in HandleCycleLinear() 178 Shell* shell = Shell::GetInstance(); in HandleDisableCapsLock() 197 Shell* shell = Shell::GetInstance(); in HandleFocusLauncher() 217 if (ash::Shell::GetInstance()->magnification_controller()->IsEnabled()) { in HandleMagnifyScreen() 220 ash::Shell::GetInstance()->magnification_controller()->GetScale(); in HandleMagnifyScreen() 227 ash::Shell::GetInstance()->magnification_controller()-> in HandleMagnifyScreen() 229 } else if (ash::Shell::GetInstance()-> in HandleMagnifyScreen() [all …]
|
/external/chromium_org/ash/display/ |
D | display_controller_unittest.cc | 70 Shell::GetInstance()->display_controller()->AddObserver(this); in TestObserver() 71 Shell::GetScreen()->AddObserver(this); in TestObserver() 72 aura::client::GetFocusClient(Shell::GetPrimaryRootWindow())-> in TestObserver() 74 aura::client::GetActivationClient(Shell::GetPrimaryRootWindow())-> in TestObserver() 79 Shell::GetInstance()->display_controller()->RemoveObserver(this); in ~TestObserver() 80 Shell::GetScreen()->RemoveObserver(this); in ~TestObserver() 81 aura::client::GetFocusClient(Shell::GetPrimaryRootWindow())-> in ~TestObserver() 83 aura::client::GetActivationClient(Shell::GetPrimaryRootWindow())-> in ~TestObserver() 157 return Shell::GetScreen()->GetDisplayNearestWindow( in GetPrimaryDisplay() 158 Shell::GetAllRootWindows()[0]); in GetPrimaryDisplay() [all …]
|
D | root_window_transformers_unittest.cc | 112 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id).rotation(); in GetStoredRotation() 116 return Shell::GetInstance()->display_manager()->GetDisplayInfo(id). in GetStoredUIScale() 138 Shell::GetInstance()->magnification_controller(); in TEST_F() 139 DisplayManager* display_manager = Shell::GetInstance()->display_manager(); in TEST_F() 142 Shell::GetInstance()->AddPreTargetHandler(&event_handler); in TEST_F() 145 gfx::Display display1 = Shell::GetScreen()->GetPrimaryDisplay(); in TEST_F() 148 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F() 225 Shell::GetInstance()->RemovePreTargetHandler(&event_handler); in TEST_F() 233 Shell::GetInstance()->AddPreTargetHandler(&event_handler); in TEST_F() 237 gfx::Display display1 = Shell::GetScreen()->GetPrimaryDisplay(); in TEST_F() [all …]
|
/external/chromium_org/ash/wm/ |
D | app_list_controller_unittest.cc | 20 Shell::GetInstance()->ToggleAppList(NULL); in TEST_F() 21 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_F() 26 EXPECT_FALSE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_F() 32 Shell::GetInstance()->ToggleAppList(NULL); in TEST_F() 33 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_F() 35 aura::Window* applist_container = Shell::GetContainer( in TEST_F() 36 Shell::GetPrimaryRootWindow(), in TEST_F() 42 EXPECT_TRUE(Shell::GetInstance()->GetAppListTargetVisibility()); in TEST_F()
|
D | drag_window_resizer_unittest.cc | 51 aura::Window* root = Shell::GetPrimaryRootWindow(); in SetUp() 55 Shell::GetInstance()->SetDisplayWorkAreaInsets(root, gfx::Insets()); in SetUp() 116 return Shell::GetPrimaryRootWindowController()->GetShelfLayoutManager(); in shelf_layout_manager() 133 Shell::GetInstance()->mouse_cursor_filter(); in WarpMouseCursorIfNecessary() 166 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F() 170 Shell::GetScreen()->GetPrimaryDisplay()); in TEST_F() 188 Shell::GetScreen()->GetPrimaryDisplay()); in TEST_F() 207 Shell::GetScreen()->GetPrimaryDisplay()); in TEST_F() 237 aura::Window::Windows root_windows = Shell::GetAllRootWindows(); in TEST_F() 246 Shell::GetScreen()->GetPrimaryDisplay()); in TEST_F() [all …]
|
/external/chromium_org/chrome/browser/chromeos/power/ |
D | power_button_observer.cc | 23 if (!ash::Shell::GetInstance()->system_tray_delegate()) in GetCurrentLoginStatus() 25 return ash::Shell::GetInstance()->system_tray_delegate()-> in GetCurrentLoginStatus() 32 ash::Shell::GetInstance()->lock_state_controller()-> in PowerButtonObserver() 52 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus()); in PowerButtonObserver() 56 ash::Shell::GetInstance()->OnLockStateChanged(locked); in PowerButtonObserver() 69 ash::Shell::GetInstance()->OnLoginStateChanged(GetCurrentLoginStatus()); in Observe() 73 ash::Shell::GetInstance()->OnAppTerminating(); in Observe() 77 ash::Shell::GetInstance()->OnLockStateChanged(locked); in Observe() 87 ash::Shell::GetInstance()->power_button_controller()-> in PowerButtonEventReceived() 92 ash::Shell::GetInstance()->lock_state_controller()->OnStartingLock(); in LockScreen()
|
/external/chromium_org/ash/wm/overview/ |
D | window_selector_controller.cc | 30 return !Shell::GetInstance()->session_state_delegate()->IsScreenLocked() && in CanSelect() 31 !Shell::GetInstance()->IsSystemModalWindowOpen(); in CanSelect() 38 std::vector<aura::Window*> windows = ash::Shell::GetInstance()-> in ToggleOverview() 56 std::vector<aura::Window*> windows = ash::Shell::GetInstance()-> in HandleCycleWindow() 77 Shell::GetInstance()->mru_window_tracker()->SetIgnoreActivations(false); in OnWindowSelected() 83 Shell::GetInstance()->mru_window_tracker()->SetIgnoreActivations(false); in OnSelectionCanceled() 87 Shell::GetInstance()->mru_window_tracker()->SetIgnoreActivations(true); in OnSelectionStarted() 88 Shell* shell = Shell::GetInstance(); in OnSelectionStarted()
|
/external/chromium_org/chrome/browser/ui/ash/ |
D | ash_init.cc | 56 ash::Shell::set_initially_hide_cursor(true); in OpenAsh() 60 ash::Shell* shell = ash::Shell::CreateInstance(new ChromeShellDelegate); in OpenAsh() 68 ash::Shell::GetInstance()->high_contrast_controller()->SetEnabled( in OpenAsh() 76 ash::Shell::GetInstance()->magnification_controller()-> in OpenAsh() 78 ash::Shell::GetInstance()->partial_magnification_controller()-> in OpenAsh() 86 ash::Shell::GetPrimaryRootWindow()->GetDispatcher()->host()->Show(); in OpenAsh() 93 ash::Shell::HasInstance()) { in CloseAsh() 94 ash::Shell::DeleteInstance(); in CloseAsh()
|
/external/chromium_org/content/test/ |
D | content_browser_test_utils.h | 27 class Shell; variable 43 void NavigateToURL(Shell* window, const GURL& url); 47 void NavigateToURLBlockUntilNavigationsComplete(Shell* window, 52 void WaitForAppModalDialog(Shell* window); 63 Shell* GetShell(); 66 void ShellCreated(Shell* shell); 68 Shell* shell_;
|
/external/chromium_org/ash/touch/ |
D | touch_observer_hud.cc | 26 Shell::GetInstance()->display_manager()->GetDisplayForId(display_id_); in TouchObserverHUD() 40 params.parent = Shell::GetContainer( in TouchObserverHUD() 51 Shell::GetScreen()->AddObserver(this); in TouchObserverHUD() 53 Shell::GetInstance()->output_configurator()->AddObserver(this); in TouchObserverHUD() 56 Shell::GetInstance()->display_controller()->AddObserver(this); in TouchObserverHUD() 61 Shell::GetInstance()->display_controller()->RemoveObserver(this); in ~TouchObserverHUD() 64 Shell::GetInstance()->output_configurator()->RemoveObserver(this); in ~TouchObserverHUD() 66 Shell::GetScreen()->RemoveObserver(this); in ~TouchObserverHUD() 125 Shell::GetContainer(root_window_, in OnDisplayConfigurationChanging() 135 root_window_ = Shell::GetInstance()->display_controller()-> in OnDisplayConfigurationChanged() [all …]
|
/external/v8/src/ |
D | d8.cc | 104 return Shell::ReadFromStdin(); in Prompt() 109 CounterMap* Shell::counter_map_; 110 i::OS::MemoryMappedFile* Shell::counters_file_ = NULL; 111 CounterCollection Shell::local_counters_; 112 CounterCollection* Shell::counters_ = &local_counters_; 113 i::Mutex* Shell::context_mutex_(i::OS::CreateMutex()); 114 Persistent<Context> Shell::utility_context_; 117 LineEditor* Shell::console = NULL; 118 Persistent<Context> Shell::evaluation_context_; 119 ShellOptions Shell::options; [all …]
|
/external/chromium_org/content/browser/ |
D | database_browsertest.cc | 26 void RunScriptAndCheckResult(Shell* shell, in RunScriptAndCheckResult() 37 void Navigate(Shell* shell) { in Navigate() 41 void CreateTable(Shell* shell) { in CreateTable() 45 void InsertRecord(Shell* shell, const std::string& data) { in InsertRecord() 49 void UpdateRecord(Shell* shell, int index, const std::string& data) { in UpdateRecord() 56 void DeleteRecord(Shell* shell, int index) { in DeleteRecord() 61 void CompareRecords(Shell* shell, const std::string& expected) { in CompareRecords() 65 bool HasTable(Shell* shell) { in HasTable() 184 Shell* otr = CreateOffTheRecordBrowser(); in IN_PROC_BROWSER_TEST_F() 195 Shell* otr = CreateOffTheRecordBrowser(); in IN_PROC_BROWSER_TEST_F() [all …]
|
/external/chromium_org/ash/shell/content_client/ |
D | shell_browser_main_parts.cc | 58 return ash::Shell::GetInstance()->CreateDefaultNonClientFrameView(widget); in CreateDefaultNonClientFrameView() 71 params->context = Shell::GetPrimaryRootWindow(); in OnBeforeWidgetInit() 121 ash::Shell::CreateInstance(delegate_); in PreMainMessageLoopRun() 123 ash::Shell::GetInstance()->CreateLauncher(); in PreMainMessageLoopRun() 124 ash::Shell::GetInstance()->UpdateAfterLoginStatusChange( in PreMainMessageLoopRun() 128 gfx::Screen* screen = Shell::GetInstance()->GetScreen(); in PreMainMessageLoopRun() 134 Shell::GetInstance()->desktop_background_controller()->SetDefaultWallpaper( in PreMainMessageLoopRun() 137 ash::Shell::GetPrimaryRootWindow()->GetDispatcher()->host()->Show(); in PreMainMessageLoopRun() 141 gfx::Screen* screen = Shell::GetInstance()->GetScreen(); in PostMainMessageLoopRun() 147 ash::Shell::DeleteInstance(); in PostMainMessageLoopRun()
|
/external/javasqlite/src/main/java/SQLite/ |
D | Shell.java | 18 public class Shell implements Callback { class 40 public Shell(PrintWriter pw, PrintWriter err) { in Shell() method in Shell 45 public Shell(PrintStream ps, PrintStream errs) { in Shell() method in Shell 51 Shell s = new Shell(this.pw, this.err); in clone() 160 tableName = Shell.sql_quote_dbl(str); in set_table_name() 162 tableName = Shell.sql_quote(str); in set_table_name() 178 case Shell.MODE_Line: in newrow() 190 case Shell.MODE_Column: in newrow() 220 case Shell.MODE_Semi: in newrow() 221 case Shell.MODE_List: in newrow() [all …]
|
/external/chromium_org/ash/shell/ |
D | window_watcher_unittest.cc | 23 Shell::DeleteInstance(); in TEST_F() 26 Shell::CreateInstance(delegate); in TEST_F() 27 Shell::GetPrimaryRootWindow()->GetDispatcher()->host()->Show(); in TEST_F() 28 Shell::GetInstance()->CreateLauncher(); in TEST_F() 29 Shell::GetInstance()->UpdateAfterLoginStatusChange( in TEST_F() 35 Shell::GetPrimaryRootWindow()->Hide(); in TEST_F()
|