/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
abstractsequencedcommand.py | 32 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)
|
rebaseline_unittest.py | 37 from webkitpy.tool.commands.rebaseline import * 38 from webkitpy.tool.mocktool import MockTool, MockOptions 48 self.tool = MockTool() 50 self.command.bind_to_tool(self.tool) 51 self.lion_port = self.tool.port_factory.get_from_builder_name("WebKit Mac10.7") 60 if self.tool.filesystem.isabs(path): 62 return self.tool.filesystem.join(self.lion_port.layout_tests_dir(), path) 65 return self.tool.filesystem.read_text_file(self._expand(path)) 68 self.tool.filesystem.write_text_file(self._expand(path), contents) 71 for port_name in self.tool.port_factory.all_port_names() [all...] |
abstractlocalservercommand.py | 28 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand 42 def _prepare_config(self, options, args, tool): 45 def execute(self, options, args, tool): 46 config = self._prepare_config(options, args, tool)
|
commandtest.py | 31 from webkitpy.tool.mocktool import MockOptions, MockTool 35 def assert_execute_outputs(self, command, args=[], expected_stdout="", expected_stderr="", expected_exception=None, expected_logs=None, options=MockOptions(), tool=MockTool()): 48 command.bind_to_tool(tool) 49 OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expected_stderr=expected_stderr, expected_exception=expected_exception, expected_logs=expected_logs)
|
commitannouncer.py | 32 from webkitpy.tool.bot.commitannouncer import CommitAnnouncer, CommitAnnouncerThread 33 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand 49 def execute(self, options, args, tool): 50 bot_thread = CommitAnnouncerThread(tool, options.irc_password)
|
/external/chromium_org/tools/valgrind/ |
chrome_tests.sh | 13 # tools/valgrind/chrome_tests.sh --tool memcheck 15 # tools/valgrind/chrome_tests.sh --tool=memcheck 16 # (same for "--tool=tsan") 17 tool="memcheck" # Default to memcheck. 20 if [[ "$1" == "--tool" ]] 22 tool="$2" 24 elif [[ "$1" =~ --tool=(.*) ]] 26 tool="${BASH_REMATCH[1]}" 34 case "$tool" in
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/ |
Antlr3Mojo.java | 47 import org.antlr.Tool; 72 // First, let's deal with the options that the ANTLR tool itself 76 * If set to true, then after the tool has processed an input grammar file 84 * If set to true, then the ANTLR tool will print a version of the input 106 * If set to true then the ANTLR tool will generate a description of the nfa 113 * If set to true then the ANTLR tool will generate a description of the DFA 158 * options that the ANTLR tool can use. 164 * not acted upon directly by the ANTLR Tool. 178 * processing by the ANTLR tool. 233 * An instance of the ANTLR tool buil 235 protected Tool tool; field in class:Antlr3Mojo [all...] |
Antlr3ErrorLog.java | 33 import org.antlr.tool.ANTLRErrorListener; 34 import org.antlr.tool.Message; 35 import org.antlr.tool.ToolMessage; 41 * tool to report errors by. 84 * Sends an error message from the ANTLR tool to the Maven Log sink.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
JavaTarget.java | 30 import org.antlr.Tool; 31 import org.antlr.tool.Grammar; 32 import org.antlr.tool.Rule; 38 protected ST chooseWhereCyclicDFAsGo(Tool tool,
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
ErrorQueue.java | 30 import org.antlr.tool.ANTLRErrorListener; 31 import org.antlr.tool.Message; 32 import org.antlr.tool.ToolMessage;
|
/external/chromium_org/chrome/installer/mac/ |
dirpatcher.sh | 63 local tool="${script_dir}/${tool_name}" 64 if [[ -f "${tool}" ]] && [[ -x "${tool}" ]]; then 65 echo "${tool}" 72 tool="${BASH_REMATCH[1]}/src/out/Release/${tool_name}" 73 if [[ -f "${tool}" ]] && [[ -x "${tool}" ]]; then 74 echo "${tool}" 78 tool="${BASH_REMATCH[1]}/src/out/Debug/${tool_name}" 79 if [[ -f "${tool}" ]] && [[ -x "${tool}" ]]; the [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFA.java | 30 import org.antlr.tool.Grammar; 31 import org.antlr.tool.NFAFactory;
|
RuleClosureTransition.java | 30 import org.antlr.tool.Rule;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/check-for-inappropriate-macros-in-external-headers-tests/ |
run-test.rb | 28 $tool = File.expand_path(File.join($test_directory, '..', '..', 'check-for-inappropriate-macros-in-external-headers')) 42 output = sanitized_output %x{ #{$tool} #{config[:paths].join(' ')} 2>&1 }
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
LeftRecursionCyclesMessage.java | 28 package org.antlr.tool;
|
/external/chromium_org/courgette/ |
run_mem_test | 42 valgrind --tool=massif --massif-out-file="${apply_mem}" courgette -apply \ 48 valgrind --tool=massif --massif-out-file="${unbz2_mem}" bunzip2 -c \ 54 valgrind --tool=massif --massif-out-file="${unxz_mem}" unxz -c \ 60 valgrind --tool=massif --massif-out-file="${bsdiff_mem}" bspatch \
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/ |
commitannouncer_unittest.py | 28 from webkitpy.tool.bot.commitannouncer import CommitAnnouncer 29 from webkitpy.tool.mocktool import MockTool 34 tool = MockTool() 35 bot = CommitAnnouncer(tool, "test_password")
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/ |
grammar_unittest.py | 31 from webkitpy.tool.grammar import join_with_separators
|
/external/chromium_org/tools/grit/grit/ |
test_suite_all.py | 68 import grit.tool.android2grd_unittest namespace 69 import grit.tool.build_unittest namespace 70 import grit.tool.buildinfo_unittest namespace 71 import grit.tool.postprocess_unittest namespace 72 import grit.tool.preprocess_unittest namespace 73 import grit.tool.rc2grd_unittest namespace 74 import grit.tool.transl2tc_unittest namespace 75 import grit.tool.xmb_unittest namespace 133 grit.tool.android2grd_unittest.Android2GrdUnittest, 134 grit.tool.build_unittest.BuildUnittest [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
test.py | 6 from grit.tool import interface 8 class TestTool(interface.Tool): 9 '''This tool does nothing except print out the global options and 10 tool-specific arguments that it receives. It is intended only for testing, 15 return 'A do-nothing tool for testing command-line parsing.' 18 print 'NOTE This tool is only for testing the parsing of global options and' 19 print 'tool-specific arguments that it receives. You may have intended to'
|
unit.py | 6 '''GRIT tool that runs the unit test suite for GRIT.''' 12 from grit.tool import interface 15 class UnitTestTool(interface.Tool): 16 '''By using this tool (e.g. 'grit unit') you run all the unit tests for GRIT. 21 return 'Use this tool to run all the unit tests for GRIT.'
|
transl2tc_unittest.py | 6 '''Unit tests for the 'grit transl2tc' tool.''' 17 from grit.tool import transl2tc 31 tool = transl2tc.TranslationToTc() 38 tool.WriteTranslations(buf, translations) 95 tool = transl2tc.TranslationToTc() 100 tool.Setup(globopts, []) 101 translations = tool.ExtractTranslations(current_grd,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/ |
gardeningserver.py | 35 from webkitpy.tool.servers.reflectionhandler import ReflectionHandler 45 self.tool = config['tool'] 81 PIPE = self.server.tool.executive.PIPE 82 process = self.server.tool.executive.popen([self.server.tool.path()] + command, cwd=self.server.tool.scm().checkout_root, stdin=PIPE, stdout=PIPE, stderr=PIPE) 88 self._serve_xml(self.server.tool.executive.run_command(['svn', 'log', '--xml', '--limit', self.REVISION_LIMIT, self.BLINK_SVN_URL])) 91 deps_contents = self.server.tool.executive.run_command(['svn', 'cat', self.CHROMIUM_SVN_DEPS_URL]) 125 filesystem = self.server.tool.filesyste [all...] |
/external/llvm/tools/opt/ |
Android.mk | 7 # opt command line tool (common) 36 # opt command line tool (host) 58 # opt command line tool (target)
|
/build/tools/rgb2565/ |
Android.mk | 8 # rgb2565 host tool
|