| /external/chromium_org/v8/tools/testrunner/network/ | 
| distro.py | 29 class Shell(object): 30   def __init__(self, shell):
 31     self.shell = shell
 57     shell = s.shell()
 58     if not shell in shells:
 59       shells[shell] = Shell(shell)
 [all...]
 | 
| /external/chromium_org/tools/cr/cr/base/ | 
| host.py | 52                shell=False, capture=False, silent=False, 62       shell: whether to run the command using the shell.
 94             command, shell=shell,
 121   def Shell(self, *command):
 123     return self._Execute([command], shell=True, ignore_interrupt_signal=True)
 127     return self._Execute(command, shell=False)
 131     return self._Execute(command, shell=False, silent=True)
 136                          shell=True, capture=True, ignore_dry_run=True
 [all...]
 | 
| /external/chromium_org/content/shell/browser/ | 
| shell.cc | 5 #include "content/shell/browser/shell.h" 22 #include "content/shell/browser/notify_done_forwarder.h"
 23 #include "content/shell/browser/shell_browser_main_parts.h"
 24 #include "content/shell/browser/shell_content_browser_client.h"
 25 #include "content/shell/browser/shell_devtools_frontend.h"
 26 #include "content/shell/browser/shell_javascript_dialog_manager.h"
 27 #include "content/shell/browser/webkit_test_controller.h"
 28 #include "content/shell/common/shell_messages.h"
 29 #include "content/shell/common/shell_switches.h
 97  Shell* shell = new Shell(web_contents);  local
 162  Shell* shell = CreateShell(web_contents, create_params.initial_size);  local
 [all...]
 | 
| shell.h | 51 // This represents one window of the Content Shell, i.e. all the UI including 53 class Shell : public WebContentsDelegate,
 59   virtual ~Shell();
 84   static Shell* CreateNewWindow(BrowserContext* browser_context,
 90   // Returns the Shell object corresponding to the given RenderViewHost.
 91   static Shell* FromRenderViewHost(RenderViewHost* rvh);
 94   static std::vector<Shell*>& windows() { return windows_; }
 101       base::Callback<void(Shell*)> shell_created_callback);
 169   explicit Shell(WebContents* web_contents);
 171   // Helper to create a new Shell given a newly created WebContents
 [all...]
 | 
| /external/chromium_org/build/android/pylib/device/ | 
| adb_wrapper.py | 73         does NOT check the return code of shell commands. 153   def Shell(self, command, expect_rc=None, timeout=_DEFAULT_TIMEOUT,
 155     """Runs a shell command on the device.
 158       command: The shell command to run.
 165       The output of the shell command as a string.
 176         ['shell', actual_command], timeout, retries, check_error=False)
 183             ['shell', command],
 184             'shell command exited with code: %s' % rc,
 
 | 
| /external/chromium_org/ash/ | 
| shell.cc | 5 #include "ash/shell.h" 182 Shell* Shell::instance_ = NULL;
 184 bool Shell::initially_hide_cursor_ = false;
 187 // Shell, public:
 190 Shell* Shell::CreateInstance(const ShellInitParams& init_params) {
 192   instance_ = new Shell(init_params.delegate);
 198 Shell* Shell::GetInstance()
 236  Shell* shell = GetInstance();  local
 [all...]
 | 
| shell.h | 152 namespace shell {  namespace in namespace:ash 160 // Shell is a singleton object that presents the Shell API and implements the
 163 // Upon creation, the Shell sets itself as the RootWindow's delegate, which
 164 // takes ownership of the Shell.
 165 class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
 176   // A shell must be explicitly created so that it can call |Init()| with the
 179   static Shell* CreateInstance(const ShellInitParams& init_params);
 182   static Shell* GetInstance();
 184   // Returns true if the ash shell has been instantiated
 [all...]
 | 
| /external/chromium_org/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ | 
| ContentShellActivity.java | 24 import org.chromium.content_shell.Shell; 30  * Activity for managing the Content Shell.
 34     public static final String COMMAND_LINE_FILE = "/data/local/tmp/content-shell-command-line";
 76             mShellManager.setStartupUrl(Shell.sanitizeUrl(startupUrl));
 167             Shell activeView = getActiveShell();
 213      * @return The currently visible {@link Shell} or null if one is not showing.
 215     public Shell getActiveShell() {
 220      * @return The {@link ContentViewCore} owned by the currently visible {@link Shell} or null if
 224         Shell shell = getActiveShell()  local
 [all...]
 | 
| /external/chromium_org/content/shell/android/java/src/org/chromium/content_shell/ | 
| Shell.java | 35  * Container for the various UI components that make up a shell window. 38 public class Shell extends LinearLayout {
 70     public Shell(Context context, AttributeSet attrs) {
 93      * Initializes the Shell for use.
 95      * @param nativeShell The pointer to the native Shell object.
 96      * @param window The owning window for this shell.
 98      *               {@link ContentViewCore}s associated with this shell.
 107      * Closes the shell and cleans up the native instance, which will handle destroying all
 123      * @return Whether the Shell has been destroyed.
 131      * @return Whether or not the Shell is loading content
 [all...]
 | 
| /external/chromium_org/v8/src/ | 
| d8.h | 245 class Shell { 247 class Shell : public i::AllStatic {
 
 | 
| /external/javasqlite/src/main/java/SQLite/ | 
| Shell.java | 8  * SQLite command line shell. This is a partial reimplementaion 9  * of sqlite/src/shell.c and can be invoked by:<P>
 12  *     java SQLite.Shell [OPTIONS] database [SHELLCMD]
 18 public class Shell implements Callback {
 40     public Shell(PrintWriter pw, PrintWriter err) {
 45     public Shell(PrintStream ps, PrintStream errs) {
 51         Shell s = new Shell(this.pw, this.err);
 160 	    tableName = Shell.sql_quote_dbl(str);
 162 	    tableName = Shell.sql_quote(str)
 [all...]
 | 
| /external/javasqlite/src/main/java/SQLite/JDBC2z/ | 
| JDBCDatabaseMetaData.java | 523 	    sb.append(SQLite.Shell.sql_quote(tableNamePattern)); 536 		sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase()));
 604 				SQLite.Shell.sql_quote(tableNamePattern) +
 741 				 SQLite.Shell.sql_quote(table) + ")"));
 744 				 SQLite.Shell.sql_quote(table) + ")"));
 789 					 SQLite.Shell.sql_quote(iname) + ")"));
 871 				 SQLite.Shell.sql_quote(table) + ")"));
 908 					 SQLite.Shell.sql_quote(iname) + ")"));
 943 				 SQLite.Shell.sql_quote(table) + ")"));
 1034 				 SQLite.Shell.sql_quote(table) + ")"))
 [all...]
 | 
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ | 
| org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar |  | 
| org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar |  |