Searched refs:tool (Results 1 - 25 of 403) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
H A D__init__.py30 from webkitpy.tool.steps.addsvnmimetypeforpng import AddSvnMimetypeForPng
31 from webkitpy.tool.steps.checkstyle import CheckStyle
32 from webkitpy.tool.steps.cleanworkingdirectory import CleanWorkingDirectory
33 from webkitpy.tool.steps.commit import Commit
34 from webkitpy.tool.steps.confirmdiff import ConfirmDiff
35 from webkitpy.tool.steps.discardlocalchanges import DiscardLocalChanges
36 from webkitpy.tool.steps.ensurebugisopenandassigned import EnsureBugIsOpenAndAssigned
37 from webkitpy.tool.steps.ensurelocalcommitifneeded import EnsureLocalCommitIfNeeded
38 from webkitpy.tool.steps.haslanded import HasLanded
39 from webkitpy.tool
[all...]
H A Dcleanworkingdirectory_unittest.py32 from webkitpy.tool.mocktool import MockOptions, MockTool
33 from webkitpy.tool.steps.cleanworkingdirectory import CleanWorkingDirectory
39 tool = MockTool()
40 tool._scm = Mock()
41 step = CleanWorkingDirectory(tool, MockOptions(clean=True, force_clean=False))
42 tool._scm.has_working_directory_changes = lambda: True
44 self.assertEqual(tool._scm.discard_working_directory_changes.call_count, 0)
47 tool = MockTool()
48 tool._scm = Mock()
49 step = CleanWorkingDirectory(tool, MockOption
[all...]
H A Ddiscardlocalchanges_unittest.py32 from webkitpy.tool.mocktool import MockOptions, MockTool
33 from webkitpy.tool.steps.discardlocalchanges import DiscardLocalChanges
39 tool = MockTool()
40 tool._scm = Mock()
41 step = DiscardLocalChanges(tool, MockOptions(clean=False))
43 self.assertEqual(tool._scm.discard_local_changes.call_count, 0)
46 tool = MockTool()
47 tool._scm = Mock()
48 tool._scm.has_working_directory_changes = lambda: True
49 tool
[all...]
H A Dsteps_unittest.py33 from webkitpy.tool.mocktool import MockOptions, MockTool
35 from webkitpy.tool import steps
46 def _run_step(self, step, tool=None, options=None, state=None):
47 if not tool:
48 tool = MockTool()
53 step(tool, options).run(state)
56 tool = MockTool()
57 tool.user.prompt = lambda message: 50000
58 self._run_step(steps.PromptForBugOrTitle, tool=tool)
[all...]
H A Druntests_unittest.py34 from webkitpy.tool.mocktool import MockOptions, MockTool
35 from webkitpy.tool.steps.runtests import RunTests
39 tool = MockTool(log_executive=True)
40 tool._deprecated_port.run_python_unittests_command = lambda: None
41 tool._deprecated_port.run_perl_unittests_command = lambda: None
42 step = RunTests(tool, MockOptions(test=True, non_interactive=True, quiet=False))
H A Dmetastep.py29 from webkitpy.tool.steps.abstractstep import AbstractStep
35 def __init__(self, tool, options):
36 AbstractStep.__init__(self, tool, options)
39 self._step_instances.append(step_class(tool, options))
H A Dcommit_unittest.py34 from webkitpy.tool.mocktool import MockOptions, MockTool
35 from webkitpy.tool.steps.commit import Commit
45 tool = MockTool()
46 tool.user = None # Will cause any access of tool.user to raise an exception.
47 step = Commit(tool, options)
52 tool.executive = MockExecutive(should_log=True, should_throw_when_run=False)
64 tool.executive = MockExecutive(should_log=True, should_throw_when_run=set(["platform/chromium/" + filename]))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
H A D__init__.py3 from webkitpy.tool.commands.commitannouncer import CommitAnnouncerCommand
4 from webkitpy.tool.commands.download import *
5 from webkitpy.tool.commands.flakytests import FlakyTests
6 from webkitpy.tool.commands.gardenomatic import GardenOMatic
7 from webkitpy.tool.commands.prettydiff import PrettyDiff
8 from webkitpy.tool.commands.queries import *
9 from webkitpy.tool.commands.rebaseline import Rebaseline
10 from webkitpy.tool.commands.rebaselineserver import RebaselineServer
H A Dprettydiff.py29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
30 from webkitpy.tool import steps
H A Dfindusers.py29 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
36 def execute(self, options, args, tool):
38 login_userid_pairs = tool.bugs.queries.fetch_login_userid_pairs_matching_substring(search_string)
40 user = tool.bugs.fetch_user(user_id)
H A Ddownload.py32 from webkitpy.tool import steps
36 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
37 from webkitpy.tool.commands.stepsequence import StepSequence
38 from webkitpy.tool.comments import bug_comment_from_commit_text
39 from webkitpy.tool.grammar import pluralize
40 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
52 def _prepare_state(self, options, args, tool):
H A Dabstractsequencedcommand.py32 from webkitpy.tool.commands.stepsequence import StepSequence
33 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
44 def _prepare_state(self, options, args, tool):
47 def execute(self, options, args, tool):
49 state = self._prepare_state(options, args, tool)
54 self._sequence.run_and_handle_errors(tool, options, state)
H A Dadduserstogroups.py29 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
39 def execute(self, options, args, tool):
45 groups = tool.user.prompt_with_list(list_title, self.known_groups, can_choose_multiple=True)
50 login_userid_pairs = tool.bugs.queries.fetch_login_userid_pairs_matching_substring(search_string)
60 if not tool.user.confirm(confirm_message):
65 tool.bugs.add_user_to_groups(user_id, groups)
H A Dflakytests.py29 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
38 def execute(self, options, args, tool):
39 port = tool.port_factory.get()
40 full_port_name = port.determine_full_port_name(tool, options, port.port_name)
H A Dstepsequence.py32 from webkitpy.tool import steps
42 def handle_script_error(cls, tool, patch, script_error):
46 def handle_checkout_needs_update(cls, tool, state, options, error):
65 def _run(self, tool, options, state):
67 step(tool, options).run(state)
77 def run_and_handle_errors(self, tool, options, state=None):
81 self._run(tool, options, state)
85 command = tool.command_by_name(options.parent_command)
86 command.handle_checkout_needs_update(tool, state, options, e)
92 command = tool
[all...]
H A Dqueries_unittest.py36 from webkitpy.tool.commands.commandtest import CommandsTest
37 from webkitpy.tool.commands.queries import *
38 from webkitpy.tool.mocktool import MockTool, MockOptions
45 tool = MockTool()
46 tool.port_factory.all_port_names = lambda: TestPort.ALL_BASELINE_VARIANTS
48 command.bind_to_tool(tool)
53 command.execute(options, tests, tool)
110 self.tool = MockTool()
111 self.test_port = self.tool.port_factory.get('test-win-xp')
112 self.tool
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dnlfork_chain.stderr.exp1 Nulgrind, the minimal Valgrind tool
H A Dnlsigvgdb.stderr.exp1 Nulgrind, the minimal Valgrind tool
/external/chromium_org/tools/grit/grit/tool/
H A Dpreprocess_unittest.py18 import grit.tool.preprocess_interface namespace
19 from grit.tool import rc2grd
25 tool = rc2grd.Rc2Grd()
29 tool.o = DummyOpts()
30 tool.pre_process = 'grit.tool.preprocess_unittest.DummyPreProcessor'
31 result = tool.Process('', '.\resource.rc')
36 class DummyPreProcessor(grit.tool.preprocess_interface.PreProcessor):
H A Drc2grd_unittest.py6 '''Unit tests for grit.tool.rc2grd'''
19 from grit.tool import rc2grd
24 tool = rc2grd.Rc2Grd()
26 msg = tool.Placeholderize(original)
31 tool = rc2grd.Rc2Grd()
33 msg = tool.Placeholderize(original)
64 tool = rc2grd.Rc2Grd()
72 tool.not_localizable_re = re.compile('')
73 tool.o = DummyNode()
76 tool
[all...]
H A Dpostprocess_unittest.py19 import grit.tool.postprocess_interface namespace
20 from grit.tool import rc2grd
33 tool = rc2grd.Rc2Grd()
37 tool.o = DummyOpts()
38 tool.post_process = 'grit.tool.postprocess_unittest.DummyPostProcessor'
39 result = tool.Process(rctext, '.\resource.rc')
46 class DummyPostProcessor(grit.tool.postprocess_interface.PostProcessor):
/external/chromium_org/tools/grit/grit/
H A Dgrit_runner.py24 import grit.tool.build namespace
25 return grit.tool.build.RcBuilder()
28 import grit.tool.buildinfo namespace
29 return grit.tool.buildinfo.DetermineBuildInfo()
32 import grit.tool.count namespace
33 return grit.tool.count.CountMessage()
36 import grit.tool.diff_structures namespace
37 return grit.tool.diff_structures.DiffStructures()
40 import grit.tool.menu_from_parts namespace
41 return grit.tool
44 import grit.tool.newgrd namespace
48 import grit.tool.resize namespace
52 import grit.tool.rc2grd namespace
56 import grit.tool.test namespace
60 import grit.tool.transl2tc namespace
64 import grit.tool.unit namespace
68 import grit.tool.xmb namespace
72 import grit.tool.android2grd namespace
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DActionLabel.java30 import org.antlr.tool.Grammar;
31 import org.antlr.tool.GrammarAST;
/external/clang/tools/diagtool/
H A Ddiagtool_main.cpp20 if (DiagTool *tool = diagTools->getTool(argv[1]))
21 return tool->run(argc - 2, &argv[2], llvm::outs());
/external/clang/tools/diag-build/
H A Ddiag-build.sh60 tool=$1
63 if [[ -z "$tool" ]]; then
66 elif [[ "$tool" == "xcodebuild" ]]; then
69 elif [[ "$tool" == "make" ]]; then
73 echo "Warning: unknown build system '$tool'" 1>&2
88 eval $tool $dry_run $set_compiler $@ 2>/dev/null |
100 if [[ "$tool" != "xcodebuild" ]]; then

Completed in 349 milliseconds

1234567891011>>