HomeSort by relevance Sort by last modified time
    Searched refs:shell (Results 1 - 25 of 1014) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chromecast/shell/browser/webui/
webui_cast_simple.cc 5 #include "chromecast/shell/browser/webui/webui_cast.h"
8 namespace shell { namespace in namespace:chromecast
14 } // namespace shell
webui_cast.h 9 namespace shell { namespace in namespace:chromecast
11 // Initializes all WebUIs needed for the Chromecast shell. This should be
15 } // namespace shell
  /external/chromium_org/ash/shell/
shell_main_parts.h 9 namespace shell { namespace in namespace:ash
14 } // namespace shell
  /external/chromium_org/chromecast/shell/browser/devtools/
remote_debugging_server_simple.cc 5 #include "chromecast/shell/browser/devtools/remote_debugging_server.h"
8 namespace shell { namespace in namespace:chromecast
14 } // namespace shell
  /external/chromium_org/mojo/shell/
init.h 9 namespace shell { namespace in namespace:mojo
15 } // namespace shell
app_child_process.h 9 #include "mojo/shell/child_process.h"
12 namespace shell { namespace in namespace:mojo
27 } // namespace shell
  /external/chromium_org/content/browser/
database_browsertest.cc 16 #include "content/shell/browser/shell.h"
25 void RunScriptAndCheckResult(Shell* shell,
30 shell->web_contents(),
36 void Navigate(Shell* shell) {
37 NavigateToURL(shell, GetTestUrl("", "simple_database.html"));
40 void CreateTable(Shell* shell) {
    [all...]
bookmarklet_browsertest.cc 11 #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(
webkit_browsertest.cc 9 #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/
AwShellSwitches.java 5 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/chrome/android/shell/java/src/org/chromium/chrome/shell/
ChromeShellSwitches.java 5 package org.chromium.chrome.shell;
8 * Command line switches for the shell.
ChromeShellApplicationObserver.java 5 package org.chromium.chrome.shell;
  /external/chromium_org/chromecast/shell/renderer/
key_systems_cast_simple.cc 5 #include "chromecast/shell/renderer/key_systems_cast.h"
8 namespace shell { namespace in namespace:chromecast
15 } // namespace shell
  /external/chromium_org/chromecast/android/
cast_jni_registrar.cc 9 #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/
android_kill_skia 27 $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/
adb_kill_content_shell 7 # 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."
adb_run_android_webview_shell 11 adb shell am start \
13 -n org.chromium.android_webview.shell/.AwShellActivity \
adb_run_chrome_shell 11 adb shell am start \
13 -n org.chromium.chrome.shell/.ChromeShellActivity \
adb_chrome_shell_command_line 7 # 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
adb_content_shell_command_line 7 # 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/
peer.py 47 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.total_duration -= t.duratio
    [all...]
  /external/chromium_org/third_party/icu/source/samples/
defs.mk 8 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 icu-config --invoke=pkgdata
    [all...]
  /external/icu/icu4c/source/samples/
defs.mk 8 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 icu-config --invoke=pkgdata
    [all...]
  /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/content/browser/web_contents/
web_contents_impl_browsertest.cc 23 #include "content/shell/browser/shell.h"
29 void ResizeWebContentsView(Shell* shell, const gfx::Size& size,
31 // Shell::SizeTo is not implemented on Aura; WebContentsView::SizeContents
32 // works on Win and ChromeOS but not Linux - we need to resize the shell
33 // window on Linux because if we don't, the next layout of the unchanged shell
37 shell->SizeTo(size);
41 NavigateToURL(shell, GURL("about://blank"));
43 static_cast<WebContentsImpl*>(shell->web_contents())->GetView()-
    [all...]

Completed in 5226 milliseconds

1 2 3 4 5 6 7 8 91011>>