HomeSort by relevance Sort by last modified time
    Searched refs:tool (Results 26 - 50 of 323) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/gdbserver_tests/
nlpasssigalrm.stderr.exp 1 Nulgrind, the minimal Valgrind tool
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
closepatch.py 29 from webkitpy.tool.comments import bug_comment_from_commit_text
30 from webkitpy.tool.steps.abstractstep import AbstractStep
validatechangelogs_unittest.py 33 from webkitpy.tool.mocktool import MockOptions, MockTool
34 from webkitpy.tool.steps.validatechangelogs import ValidateChangeLogs
40 tool = MockTool()
41 tool._checkout.is_path_to_changelog = lambda path: True
42 step = ValidateChangeLogs(tool, MockOptions(git_commit=None, non_interactive=non_interactive))
closebugforlanddiff.py 29 from webkitpy.tool.comments import bug_comment_from_commit_text
30 from webkitpy.tool.steps.abstractstep import AbstractStep
31 from webkitpy.tool.steps.options import Options
obsoletepatches.py 29 from webkitpy.tool.grammar import pluralize
30 from webkitpy.tool.steps.abstractstep import AbstractStep
31 from webkitpy.tool.steps.options import Options
applypatch.py 29 from webkitpy.tool.steps.abstractstep import AbstractStep
30 from webkitpy.tool.steps.options import Options
applypatchwithlocalcommit.py 29 from webkitpy.tool.steps.applypatch import ApplyPatch
30 from webkitpy.tool.steps.options import Options
closebugforlanddiff_unittest.py 32 from webkitpy.tool.mocktool import MockOptions, MockTool
33 from webkitpy.tool.steps.closebugforlanddiff import CloseBugForLandDiff
ensurelocalcommitifneeded.py 29 from webkitpy.tool.steps.abstractstep import AbstractStep
30 from webkitpy.tool.steps.options import Options
reopenbugafterrollout.py 29 from webkitpy.tool.comments import bug_comment_from_commit_text
30 from webkitpy.tool.steps.abstractstep import AbstractStep
update.py 29 from webkitpy.tool.steps.abstractstep import AbstractStep
30 from webkitpy.tool.steps.options import Options
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
upload.py 37 from webkitpy.tool import steps
44 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
45 from webkitpy.tool.comments import bug_comment_from_svn_revision
46 from webkitpy.tool.grammar import pluralize, join_with_separators
47 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
60 def execute(self, options, args, tool):
63 print "%s" % tool.checkout().commit_message_for_this_commit(options.git_commit).message()
82 def execute(self, options, args, tool):
84 for bug_id in tool.bugs.queries.fetch_bug_ids_from_pending_commit_list():
100 def execute(self, options, args, tool)
    [all...]
upload_unittest.py 30 from webkitpy.tool.commands.commandtest import CommandsTest
31 from webkitpy.tool.commands.upload import *
32 from webkitpy.tool.mocktool import MockOptions, MockTool
36 tool = MockTool()
38 self.assert_execute_outputs(CommitMessageForCurrentDiff(), [], expected_stdout=expected_stdout, tool=tool)
44 tool = MockTool()
46 self.assert_execute_outputs(AssignToCommitter(), [], expected_stderr=expected_stderr, tool=tool)
47 tool.bugs.reassign_bug.assert_called_with(42, "eric@webkit.org", "Attachment 128 was posted by a commit (…)
    [all...]
download.py 32 from webkitpy.tool import steps
37 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
38 from webkitpy.tool.commands.stepsequence import StepSequence
39 from webkitpy.tool.comments import bug_comment_from_commit_text
40 from webkitpy.tool.grammar import pluralize
41 from webkitpy.tool.multicommandtool import AbstractDeclarativeCommand
52 def _prepare_state(self, options, args, tool):
74 def _prepare_state(self, options, args, tool):
108 def _prepare_state(self, options, args, tool):
112 "bug_id": (args and args[0]) or tool.checkout().bug_id_for_this_commit(options.git_commit, changed_files)
    [all...]
queues_unittest.py 39 from webkitpy.tool.commands.commandtest import CommandsTest
40 from webkitpy.tool.commands.queues import *
41 from webkitpy.tool.commands.queuestest import QueuesTest
42 from webkitpy.tool.commands.stepsequence import StepSequence
43 from webkitpy.tool.mocktool import MockTool, MockSCM, MockStatusServer
64 tool = MockTool()
65 tool.status_server.bot_id = "gort"
66 tool.executive = Mock()
67 queue.bind_to_tool(tool)
76 tool.executive.run_and_throw_if_fail.assert_called_with(expected_run_args
    [all...]
queries_unittest.py 33 from webkitpy.tool.commands.commandtest import CommandsTest
34 from webkitpy.tool.commands.queries import *
35 from webkitpy.tool.mocktool import MockTool
81 tool = MockTool()
83 command.bind_to_tool(tool)
89 tool.checkout().commit_info_for_revision = raising_mock
openbugs_unittest.py 29 from webkitpy.tool.commands.commandtest import CommandsTest
30 from webkitpy.tool.commands.openbugs import OpenBugs
  /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/webkit/Tools/Scripts/webkitpy/tool/bot/
flakytestreporter_unittest.py 37 from webkitpy.tool.bot.flakytestreporter import FlakyTestReporter
38 from webkitpy.tool.mocktool import MockTool, MockStatusServer
59 tool = MockTool()
60 reporter = FlakyTestReporter(tool, 'dummy-queue')
62 tool.checkout().recent_commit_infos_for_files = lambda paths: set(commit_infos)
95 tool = MockTool()
96 reporter = FlakyTestReporter(tool, 'dummy-queue')
97 bug = tool.bugs.fetch_bug(78)
101 tool = MockTool()
102 tool.filesystem = MockFileSystem({"/mock/foo/bar-diffs.txt": "mock"}
    [all...]
sheriffircbot_unittest.py 33 from webkitpy.tool.bot.sheriff import Sheriff
34 from webkitpy.tool.bot.sheriffircbot import SheriffIRCBot
35 from webkitpy.tool.bot.sheriff_unittest import MockSheriffBot
36 from webkitpy.tool.mocktool import MockTool
40 tool = MockTool()
41 tool.ensure_irc_connected(None)
42 bot = SheriffIRCBot(tool, Sheriff(tool, MockSheriffBot()))
  /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/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;

Completed in 485 milliseconds

12 3 4 5 6 7 8 91011>>