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

1 2

  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
build.py 44 self._tool.executive.run_and_throw_if_fail(self.port().build_webkit_command(build_style=build_style), self._options.quiet)
47 if not self._options.build:
50 if self._options.build_style == "both":
54 self.build(self._options.build_style)
postdiff.py 48 description = self._options.description or "Patch"
49 self._tool.bugs.add_patch_to_bug(state["bug_id"], diff_file, description, mark_for_review=self._options.review, mark_for_commit_queue=self._options.request_commit)
50 if self._options.open_bug:
cleanworkingdirectory.py 50 self._tool.scm().ensure_no_local_commits(self._options.force_clean)
51 if self._options.clean:
52 self._tool.scm().ensure_clean_working_directory(force_clean=self._options.force_clean)
preparechangelog.py 53 if self._options.email:
54 args.append("--email=%s" % self._options.email)
56 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
createbug.py 45 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], component=self._options.component, cc=self._options.cc)
runtests.py 45 if not self._options.build:
47 if not self._options.test:
60 if self._options.non_interactive:
63 if self._options.quiet:
checkstyle.py 45 if not self._options.check_style:
51 if self._options.non_interactive:
applypatch.py 42 self._tool.scm().apply_patch(state["patch"], force=self._options.non_interactive)
applypatchwithlocalcommit.py 41 if self._options.local_commit:
confirmdiff.py 42 if not self._options.confirm:
ensurebuildersaregreen.py 42 if not self._options.check_builders:
ensurelocalcommitifneeded.py 42 if self._options.local_commit and not self._tool.scm().supports_local_commits():
update.py 43 if not self._options.update:
abstractstep.py 36 self._options = options
48 self._port = WebKitPort.port(self._options.port)
closebug.py 42 if not self._options.close_bug:
closebugforlanddiff.py 50 if self._options.close_bug:
obsoletepatches.py 43 if not self._options.obsolete_patches:
  /external/webkit/WebKitTools/pywebsocket/example/
echo_client.py 94 self._options = options
103 self._socket.settimeout(self._options.socket_timeout)
105 self._socket.connect((self._options.server_host,
106 self._options.server_port))
107 if self._options.use_tls:
110 for line in self._options.message.split(',') + [_GOODBYE_MESSAGE]:
113 if self._options.verbose:
118 if self._options.verbose:
125 self._socket.send(_method_line(self._options.resource))
129 self._socket.send(_origin_header(self._options.origin)
    [all...]
  /development/testrunner/
runtest.py 81 self._options = None
162 self._options, self._test_args = parser.parse_args()
164 if (not self._options.only_list_tests
165 and not self._options.all_tests
166 and not self._options.continuous_tests
167 and not self._options.suite
168 and not self._options.test_path
175 if self._options.emulator:
177 elif self._options.device:
179 elif self._options.serial is not None
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
error_handlers.py 81 self._options = options
102 if not category in self._options.max_reports_per_category:
104 return self._options.max_reports_per_category[category]
112 if not self._options.is_reportable(category,
125 if self._options.output_format == 'vs7':
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
run_chromium_webkit_tests.py 179 self._options = options
221 if self._options.lint_test_files:
230 is_debug_mode, self._options.lint_test_files)
233 if self._options.lint_test_files:
252 if num_all_test_files > 1 and not self._options.force:
260 if self._options.randomize_order:
267 if self._options.run_chunk or self._options.run_part:
268 chunk_value = self._options.run_chunk or self._options.run_par
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium.py 73 self._options.no_pixel_tests):
92 return self.path_from_chromium_base('webkit', self._options.target,
93 self._options.results_directory)
163 self._options = options
164 self._target = port._options.target
173 if self._port._options.wrapper:
178 cmd += self._options.wrapper.split()
chromium_linux.py 80 self._options.target, *comps)
83 self._options.target, *comps)
test.py 75 return self._options
78 return '/tmp' + self._options.results_directory
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_shell_thread.py 196 self._options = options
274 if self._options.batch_size:
276 batch_size = int(self._options.batch_size)
279 self._options.batch_size)
283 tests_run_filename = os.path.join(self._options.results_directory,
315 if self._options.run_singly:
364 self._options.target,
365 self._options.results_directory)
419 self._test_args, self._options.target,
420 self._options.results_directory, crash
    [all...]

Completed in 159 milliseconds

1 2