Searched refs:shell (Results 1 - 25 of 765) sorted by relevance

1234567891011>>

/external/chromium_org/chromecast/shell/browser/webui/
H A Dwebui_cast_simple.cc5 #include "chromecast/shell/browser/webui/webui_cast.h"
8 namespace shell { namespace in namespace:chromecast
14 } // namespace shell
H A Dwebui_cast.h9 namespace shell { namespace in namespace:chromecast
11 // Initializes all WebUIs needed for the Chromecast shell. This should be
15 } // namespace shell
/external/chromium_org/chromecast/shell/browser/devtools/
H A Dremote_debugging_server_simple.cc5 #include "chromecast/shell/browser/devtools/remote_debugging_server.h"
8 namespace shell { namespace in namespace:chromecast
14 } // namespace shell
/external/valgrind/main/none/tests/
H A Dshell_nonexec.stderr.exp1 valgrind: ./shell.vgtest: Permission denied
/external/chromium_org/content/browser/
H A Ddatabase_browsertest.cc16 #include "content/shell/browser/shell.h"
25 void RunScriptAndCheckResult(Shell* shell, argument
30 shell->web_contents(),
36 void Navigate(Shell* shell) { argument
37 NavigateToURL(shell, GetTestUrl("", "simple_database.html"));
40 void CreateTable(Shell* shell) { argument
41 RunScriptAndCheckResult(shell, "createTable()", "done");
44 void InsertRecord(Shell* shell, const std::string& data) { argument
45 RunScriptAndCheckResult(shell, "insertRecor
48 UpdateRecord(Shell* shell, int index, const std::string& data) argument
55 DeleteRecord(Shell* shell, int index) argument
60 CompareRecords(Shell* shell, const std::string& expected) argument
64 HasTable(Shell* shell) argument
[all...]
H A Dbookmarklet_browsertest.cc11 #include "content/shell/browser/shell.h"
19 NavigateToURL(shell(), GURL("data:text/html,start page"));
26 shell()->web_contents(),
36 NavigateToURL(shell(), GURL(
48 NavigateToURL(shell(), GURL(
57 shell()->LoadURL(GURL("javascript:'hello world'"));
66 shell()->LoadURL(GURL(
H A Dwebkit_browsertest.cc9 #include "content/shell/browser/shell.h"
30 NavigateToURL(shell(), url);
36 EXPECT_FALSE(shell()->web_contents()->IsCrashed());
53 NavigateToURL(shell(), url);
55 EXPECT_FALSE(shell()->web_contents()->IsCrashed());
74 NavigateToURL(shell(), url);
76 EXPECT_FALSE(shell()->web_contents()->IsCrashed());
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
H A DAwShellSwitches.java5 package org.chromium.android_webview.shell;
8 * Contains all of the command line switches that are specific to the test shell of
/external/chromium_org/ash/shell/
H A Dshell_main_parts.h9 namespace shell { namespace in namespace:ash
14 } // namespace shell
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/
H A DChromeShellSwitches.java5 package org.chromium.chrome.shell;
8 * Command line switches for the shell.
/external/chromium_org/chromecast/shell/renderer/
H A Dkey_systems_cast_simple.cc5 #include "chromecast/shell/renderer/key_systems_cast.h"
8 namespace shell { namespace in namespace:chromecast
15 } // namespace shell
/external/chromium_org/mojo/shell/
H A Dinit.h9 namespace shell { namespace in namespace:mojo
15 } // namespace shell
/external/chromium_org/v8/tools/testrunner/network/
H A Ddistro.py30 def __init__(self, shell):
31 self.shell = shell
57 shell = s.shell()
58 if not shell in shells:
59 shells[shell] = Shell(shell)
60 shells[shell].AddSuite(s)
64 # Sort tests within each shell, longes
[all...]
/external/chromium_org/chromecast/android/
H A Dcast_jni_registrar.cc9 #include "chromecast/shell/browser/android/cast_window_android.h"
10 #include "chromecast/shell/browser/android/cast_window_manager.h"
18 { "CastWindowAndroid", shell::CastWindowAndroid::RegisterJni },
19 { "CastWindowManager", shell::RegisterCastWindowManager },
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A Dandroid_kill_skia27 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $SERIAL shell kill
29 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $SERIAL shell kill
/external/skia/platform_tools/android/bin/
H A Dandroid_kill_skia27 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs -r $ADB $SERIAL shell kill
29 $ADB $SERIAL shell ps | grep skia | awk '{print $2}' | xargs $ADB $SERIAL shell kill
/external/chromium_org/build/android/
H A Dadb_kill_content_shell7 # Kill a running content shell.
11 SHELL_PID_LINES=$(adb shell ps | grep ' org.chromium.content_shell_apk')
14 echo "Not running Content shell."
19 adb shell kill $SHELL_PID
22 echo "Content shell does not appear to be running."
H A Dadb_run_android_webview_shell11 adb shell am start \
13 -n org.chromium.android_webview.shell/.AwShellActivity \
H A Dadb_run_chrome_shell11 adb shell am start \
13 -n org.chromium.chrome.shell/.ChromeShellActivity \
H A Dadb_chrome_shell_command_line7 # If no flags are given, prints the current chrome shell flags.
9 # Otherwise, the given flags are used to REPLACE (not modify) the chrome shell
13 # To remove all chrome shell flags, pass an empty string for the flags:
16 CMD_LINE_FILE=/data/local/tmp/chrome-shell-command-line
24 adb shell cat $CMD_LINE_FILE | cut -d " " -f "2-" 2>/dev/null
29 adb shell rm $CMD_LINE_FILE >/dev/null
33 adb shell "echo 'chrome_shell $*' > $CMD_LINE_FILE"
35 adb shell chmod 0664 $CMD_LINE_FILE
H A Dadb_content_shell_command_line7 # If no flags are given, prints the current content shell flags.
9 # Otherwise, the given flags are used to REPLACE (not modify) the content shell
13 # To remove all content shell flags, pass an empty string for the flags:
16 CMD_LINE_FILE=/data/local/tmp/content-shell-command-line
24 adb shell cat $CMD_LINE_FILE | cut -d " " -f "2-" 2>/dev/null
29 adb shell rm $CMD_LINE_FILE >/dev/null
33 adb shell "echo 'content_shell $*' > $CMD_LINE_FILE"
35 adb shell chmod 0664 $CMD_LINE_FILE
/external/chromium_org/v8/tools/testrunner/objects/
H A Dpeer.py47 def AddTests(self, shell):
48 """Adds tests from |shell| to this peer.
50 Stops when self.needed_work reaches zero, or when all of shell's tests
53 if shell.shell not in self.shells:
54 self.shells.add(shell.shell)
55 while len(shell.tests) > 0 and self.needed_work > 0:
56 t = shell.tests.pop()
59 shell
[all...]
/external/chromium_org/third_party/icu/source/samples/
H A Ddefs.mk8 CC=$(shell icu-config --cc)
9 CXX=$(shell icu-config --cxx)
10 CPPFLAGS=$(shell icu-config --cppflags)
11 CFLAGS=$(shell icu-config --cflags)
12 CXXFLAGS=$(shell icu-config --cxxflags)
13 LDFLAGS =$^ $(shell icu-config --ldflags)
14 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
15 INVOKE=$(shell icu-config --invoke)
16 GENRB=$(shell icu-config --invoke=genrb)
18 PKGDATA=$(shell ic
[all...]
/external/icu/icu4c/source/samples/
H A Ddefs.mk8 CC=$(shell icu-config --cc)
9 CXX=$(shell icu-config --cxx)
10 CPPFLAGS=$(shell icu-config --cppflags)
11 CFLAGS=$(shell icu-config --cflags)
12 CXXFLAGS=$(shell icu-config --cxxflags)
13 LDFLAGS =$^ $(shell icu-config --ldflags)
14 LDFLAGS_USTDIO =$(shell icu-config --ldflags-icuio)
15 INVOKE=$(shell icu-config --invoke)
16 GENRB=$(shell icu-config --invoke=genrb)
18 PKGDATA=$(shell ic
[all...]
/external/chromium_org/tools/cr/cr/commands/
H A Dshell.py5 """A module for the shell command."""
14 """The implementation of the shell command.
16 The shell command is the escape hatch that lets user run any program in the
22 self.help = 'Launch a shell'
25 shell (ie bash) with the environment modified to that used for the
28 in that shell.
35 self.ConsumeArgs(parser, 'the shell')
42 # If we get here, we are trying to launch an interactive shell
43 shell = os.environ.get('SHELL', None)
44 if shell i
[all...]

Completed in 431 milliseconds

1234567891011>>