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

1 2

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
postdiff.py 46 description = self._options.description or "Patch"
47 comment_text = self._options.comment
48 self._tool.bugs.add_patch_to_bug(state["bug_id"], diff, description, comment_text=comment_text, mark_for_review=self._options.review, mark_for_commit_queue=self._options.request_commit)
49 if self._options.open_bug:
build.py 44 self._tool.executive.run_and_throw_if_fail(self._tool.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)
cleanworkingdirectory.py 48 if not self._options.clean:
55 self._tool.scm().ensure_no_local_commits(self._options.force_clean)
56 self._tool.scm().ensure_clean_working_directory(force_clean=self._options.force_clean)
createbug.py 46 cc = self._options.cc
49 blocks = self._options.blocks
52 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=cc)
applypatch.py 43 self._tool.checkout().apply_patch(state["patch"], force=self._options.non_interactive or self._options.force_patch)
update.py 43 if not self._options.update:
46 self._tool.executive.run_and_throw_if_fail(self._tool.port().update_webkit_command(), quiet=self._options.quiet)
checkstyle.py 46 if not self._options.check_style:
51 if self._options.git_commit:
53 args.append(self._options.git_commit)
61 if self._options.non_interactive:
attachtobug.py 46 description = self._options.description or filepath.split(os.sep)[-1]
47 comment_text = self._options.comment
suggestreviewers.py 42 if not self._options.suggest_reviewers:
45 reviewers = self._tool.checkout().suggested_reviewers(self._options.git_commit, self._changed_files(state))
abstractstep.py 37 self._options = options
44 "changed_files": lambda self, state: self._tool.scm().changed_files(self._options.git_commit),
45 "diff": lambda self, state: self._tool.scm().create_patch(self._options.git_commit, changed_files=self._changed_files(state)),
47 "changelogs": lambda self, state: self._tool.checkout().modified_changelogs(self._options.git_commit, changed_files=self._changed_files(state)),
preparechangelog.py 68 if self._options.email:
69 args.append("--email=%s" % self._options.email)
72 args.append("--merge-base=%s" % self._tool.scm().merge_base(self._options.git_commit))
77 self._tool.executive.run_and_throw_if_fail(args, self._options.quiet)
runtests.py 46 if not self._options.test:
62 if self._options.non_interactive:
68 if self._options.quiet:
applypatchwithlocalcommit.py 41 if self._options.local_commit:
ensurelocalcommitifneeded.py 42 if self._options.local_commit and not self._tool.scm().supports_local_commits():
closebug.py 42 if not self._options.close_bug:
closebugforlanddiff.py 50 if self._options.close_bug:
ensurebuildersaregreen.py 42 if not self._options.check_builders:
obsoletepatches.py 43 if not self._options.obsolete_patches:
  /development/testrunner/
runtest.py 82 self._options = None
163 self._options, self._test_args = parser.parse_args()
165 if (not self._options.only_list_tests
166 and not self._options.all_tests
167 and not self._options.continuous_tests
168 and not self._options.suite
169 and not self._options.test_path
176 if self._options.emulator:
178 elif self._options.device:
180 elif self._options.serial is not None
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner.py 217 self._options = options
247 if self._options.test_list:
248 paths += self._strip_test_dir_prefixes(read_test_files(self._fs, self._options.test_list))
282 self._options.lint_test_files,
295 self._options.lint_test_files,
314 if num_all_test_files > 1 and not self._options.force:
322 if self._options.randomize_order:
329 if self._options.run_chunk or self._options.run_part:
330 chunk_value = self._options.run_chunk or self._options.run_par
    [all...]
single_test_runner.py 50 self._options = options
98 return (self._options.pixel_tests and
99 not (self._options.new_baseline or self._options.reset_results))
112 if self._options.new_baseline or self._options.reset_results:
145 generate_new_baseline=self._options.new_baseline)
148 generate_new_baseline=self._options.new_baseline)
149 if self._options.pixel_tests and driver_output.image_hash:
151 generate_new_baseline=self._options.new_baseline
    [all...]
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 187 self._options = options
211 os.putenv("QML_IMPORT_PATH", self._options.path + "../../../imports")
214 tests_executables = self.find_tests_paths(self._options.path)
218 if not self._options.developer:
239 workers = self._Pool(processes=self._options.parallel_level)
241 self.debug("Using %s the workers pool, number of workers %i", repr(workers), self._options.parallel_level)
242 package = map(lambda w: [w, self._options.tests_options, not self._options.developer, self._options.timeout], files)
264 with file(self._options.output_file, 'w') as f
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_gpu.py 65 port._options.accelerated_compositing = True
67 port._options.accelerated_2d_canvas = True
71 if port.get_option('builder_name') is not None and not ' - GPU' in port._options.builder_name:
72 port._options.builder_name += ' - GPU'
chromium_gpu_unittest.py 65 self.assertTrue(port._options.accelerated_compositing)
66 self.assertTrue(port._options.accelerated_2d_canvas)
68 self.assertEqual(port._options.builder_name, 'foo - GPU')
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues_unittest.py 68 queue._options = Mock()
69 queue._options.port = port
85 queue._options = Mock()
86 queue._options.iterations = 3
94 queue._options = Mock()
150 queue._options = Mock()
151 queue._options.port = None
326 queue._options = Mock()
327 queue._options.port = None

Completed in 109 milliseconds

1 2