HomeSort by relevance Sort by last modified time
    Searched refs:script_path (Results 1 - 12 of 12) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/common/config/
ports_unittest.py 39 self.assertEquals(MacPort.run_webkit_tests_command(), [WebKitPort.script_path("run-webkit-tests")])
40 self.assertEquals(MacPort.build_webkit_command(), [WebKitPort.script_path("build-webkit")])
41 self.assertEquals(MacPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug"])
42 self.assertEquals(MacPort.build_webkit_command(build_style="release"), [WebKitPort.script_path("build-webkit"), "--release"])
53 self.assertEquals(GtkPort.run_webkit_tests_command(), [WebKitPort.script_path("run-webkit-tests"), "--gtk"])
54 self.assertEquals(GtkPort.build_webkit_command(), [WebKitPort.script_path("build-webkit"), "--gtk", WebKitPort.makeArgs()])
55 self.assertEquals(GtkPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug", "--gtk", WebKitPort.makeArgs()])
60 self.assertEquals(QtPort.run_webkit_tests_command(), [WebKitPort.script_path("run-webkit-tests")])
61 self.assertEquals(QtPort.build_webkit_command(), [WebKitPort.script_path("build-webkit"), "--qt", WebKitPort.makeArgs()])
62 self.assertEquals(QtPort.build_webkit_command(build_style="debug"), [WebKitPort.script_path("build-webkit"), "--debug", "--qt", WebKitPort.makeArgs()]
    [all...]
ports.py 42 def script_path(cls, script_name): member in class:WebKitPort
47 script_path = cls.script_path(script_name)
50 interpreter = Executive.interpreter_for_script(script_path)
52 return [interpreter, script_path]
53 return [script_path]
  /external/webkit/Tools/Scripts/
test-webkit-scripts 52 def script_path(self, script_file_name): member in class:ScriptsTester
56 def run_test_script(self, script_title, script_path, args=None):
59 call_args = [script_path]
72 self.run_test_script('Perl scripts', self.script_path('test-webkitperl'))
73 self.run_test_script('Python scripts', self.script_path('test-webkitpy'),
print-vse-failure-logs 59 script_path = os.path.join(self._scripts_directory(), "print-msvc-project-dependencies")
61 lines = self._executive.run_command([script_path, sln_path]).splitlines()
  /external/markdown/
setup.py 17 script_path = os.path.join(script_dir, 'markdown')
18 bat_str = '@"%s" "%s" %%*' % (sys.executable, script_path)
  /external/linux-tools-perf/
builtin-script.c 836 char script_path[MAXPATHLEN]; local
862 snprintf(script_path, MAXPATHLEN, "%s/%s",
864 read_script_info(desc, script_path);
885 char script_path[MAXPATHLEN]; local
911 snprintf(script_path, MAXPATHLEN, "%s/%s",
913 path = strdup(script_path);
924 static bool is_top_script(const char *script_path)
926 return ends_with(script_path, "top") == NULL ? false : true;
929 static int has_required_arg(char *script_path)
937 if (read_script_info(desc, script_path))
1013 char *script_path = NULL; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
util.py 101 def get_script_interp(script_path, cygwin_path=None):
110 script_path: pathname of the script
115 fp = open(script_path)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 184 def interpreter_for_script(script_path, fs=FileSystem()):
185 lines = fs.read_text_file(script_path).splitlines()
  /external/chromium/chrome/browser/ui/
browser_init.cc 728 FilePath script_path; local
729 PathService::Get(chrome::FILE_RECORDED_SCRIPT, &script_path);
735 base::EventRecorder::current()->StartRecording(script_path);
737 base::EventRecorder::current()->StartPlayback(script_path);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
api.py 158 # FIXME: Move _scm.script_path here once we get rid of all the dependencies.
159 args = [self._scm.script_path('svn-apply')]
scm.py 177 def script_path(self, script_name): member in class:SCM
493 return self.run([self.script_path("svn-create-patch")] + changed_files,
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
base.py 549 def script_path(self, script_name): member in class:Port
550 return self._config.script_path(script_name)
    [all...]

Completed in 581 milliseconds