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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/gdbserver_tests/
nlfork_chain.stderr.exp 1 Nulgrind, the minimal Valgrind tool
nlself_invalidate.stderr.exp 1 Nulgrind, the minimal Valgrind tool
nlgone_abrt.stderr.exp 1 Nulgrind, the minimal Valgrind tool
nlgone_exit.stderr.exp 1 Nulgrind, the minimal Valgrind tool
nlgone_return.stderr.exp 1 Nulgrind, the minimal Valgrind tool
nlsigvgdb.stderr.exp 1 Nulgrind, the minimal Valgrind tool
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
__init__.py 30 from webkitpy.tool.steps.confirmdiff import ConfirmDiff
31 from webkitpy.tool.steps.options import Options
abstractstep.py 32 from webkitpy.tool.steps.options import Options
36 def __init__(self, tool, options):
37 self._tool = tool
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
__init__.py 3 from webkitpy.tool.commands.commitannouncer import CommitAnnouncerCommand
4 from webkitpy.tool.commands.flakytests import FlakyTests
5 from webkitpy.tool.commands.gardenomatic import GardenOMatic
6 from webkitpy.tool.commands.prettydiff import PrettyDiff
7 from webkitpy.tool.commands.queries import *
8 from webkitpy.tool.commands.rebaseline import Rebaseline
9 from webkitpy.tool.commands.rebaselineserver import RebaselineServer
flakytests_unittest.py 8 from webkitpy.tool.commands.commandtest import CommandsTest
9 from webkitpy.tool.mocktool import MockTool, MockOptions
36 tool = MockTool()
42 self.assert_execute_outputs(command, options=options, tool=tool, expected_stdout=expected_stdout)
44 port = tool.port_factory.get()
45 self.assertEqual(tool.filesystem.read_text_file(tool.filesystem.join(port.layout_tests_dir(), 'FlakyTests')), command.FLAKY_TEST_CONTENTS % '')
49 tool = MockTool()
50 tool.scm = ChangedExpectationsMockSC
    [all...]
adduserstogroups.py 29 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)
findusers.py 29 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)
prettydiff.py 29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
30 from webkitpy.tool import steps
stepsequence.py 32 from webkitpy.tool import steps
41 def handle_script_error(cls, tool, patch, script_error):
45 def handle_checkout_needs_update(cls, tool, state, options, error):
64 def _run(self, tool, options, state):
66 step(tool, options).run(state)
76 def run_and_handle_errors(self, tool, options, state=None):
80 self._run(tool, options, state)
85 command = tool.command_by_name(options.parent_command)
86 command.handle_script_error(tool, state, e)
queries_unittest.py 36 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.port_factory.get = lambda port_name=None: self.test_por
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
preprocess_unittest.py 18 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):
rc2grd_unittest.py 6 '''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.AddMessages(rc_text, tool.o
    [all...]
postprocess_unittest.py 19 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/
grit_runner.py 21 # Tool info factories; these import only within each factory to avoid
24 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_part namespace
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/chromium_org/build/
compiler_version.py 6 """Compiler version checking tool for gcc
18 compiler_version_cache = {} # Map from (compiler, tool) -> version.
22 print '%s MODE TOOL' % os.path.basename(program_name)
24 print 'TOOL: assembler or compiler or linker.'
32 tool = args[1]
35 if tool not in ('assembler', 'compiler', 'linker'):
36 raise Exception('Invalid tool: %s' % tool)
37 return mode, tool
48 def GetVersion(compiler, tool)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
ActionLabel.java 30 import org.antlr.tool.Grammar;
31 import org.antlr.tool.GrammarAST;
  /external/clang/tools/diagtool/
diagtool_main.cpp 20 if (DiagTool *tool = diagTools->getTool(argv[1]))
21 return tool->run(argc - 2, &argv[2], llvm::outs());
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-inject.c 15 #include "util/tool.h"
24 struct perf_tool tool; member in struct:perf_inject
40 static int perf_event__repipe_synth(struct perf_tool *tool,
43 struct perf_inject *inject = container_of(tool, struct perf_inject, tool);
62 static int perf_event__repipe_op2_synth(struct perf_tool *tool,
67 return perf_event__repipe_synth(tool, event);
70 static int perf_event__repipe_attr(struct perf_tool *tool,
76 ret = perf_event__process_attr(tool, event, pevlist);
80 return perf_event__repipe_synth(tool, event)
    [all...]
  /external/clang/tools/diag-build/
diag-build.sh 3 # diag-build: a tool showing enabled warnings in a project.
69 tool=$1
72 if [[ -z "$tool" ]]; then
75 elif [[ "$tool" == "xcodebuild" ]]; then
78 elif [[ "$tool" == "make" ]]; then
82 echo "Warning: unknown build system '$tool'" 1>&2
97 eval $tool $dry_run $set_compiler $@ 2>/dev/null |
109 if [[ "$tool" != "xcodebuild" ]]; then
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain
44 def execute(self, options, args, tool):
61 def execute(self, options, args, tool):
84 expected_logs = "2 arguments required, 1 argument provided. Provided: 'foo' Required: ARG1 ARG2\nSee 'trivial-tool help trivial' for usage.\n"
91 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)
120 tool = TrivialTool()
121 self.assertEqual(tool.command_by_name("trivial").name, "trivial")
122 self.assertEqual(tool.command_by_name("bar"), None)
124 def _assert_tool_main_outputs(self, tool, main_args, expected_stdout, expected_stderr = "", expected_exit_code=0):
125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr
    [all...]

Completed in 1255 milliseconds

1 2 3 4 5 6 7 8 91011>>