HomeSort by relevance Sort by last modified time
    Searched refs:Tool (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /external/clang/lib/Driver/
Job.cpp 13 #include "clang/Driver/Tool.h"
27 Command::Command(const Action &_Source, const Tool &_Creator,
134 FallbackCommand::FallbackCommand(const Action &Source_, const Tool &Creator_,
WindowsToolChain.cpp 46 Tool *Windows::buildLinker() const {
50 Tool *Windows::buildAssembler() const {
ToolChains.cpp 54 /// Darwin - Darwin tool chain for i386 and x86_64.
209 Tool *MachO::getTool(Action::ActionClass AC) const {
228 Tool *MachO::buildLinker() const {
232 Tool *MachO::buildAssembler() const {
566 // Set the tool chain target information.
675 // FIXME: We really want to get out of the tool chain level argument
680 // and try to push it down into tool specific logic.
    [all...]
  /external/mesa3d/
SConstruct 101 # no tool used
113 host_env.Tool('gallium')
  /external/chromium_org/tools/grit/grit/tool/
buildinfo.py 14 from grit.tool import interface
16 class DetermineBuildInfo(interface.Tool):
23 """Describes this tool for the usage message."""
28 """Main method for the buildinfo tool. Outputs the list
36 print 'This tool takes exactly one argument: the output directory via -o'
diff_structures.py 6 '''The 'grit sdiff' tool.
14 from grit.tool import interface
19 # Builds the description for the tool (used as the __doc__
38 class DiffStructures(interface.Tool):
menu_from_parts.py 6 '''The 'grit menufromparts' tool.'''
14 from grit.tool import interface
15 from grit.tool import transl2tc
20 class MenuTranslationsFromParts(interface.Tool):
21 '''One-off tool to generate translated menu messages (where each menu is kept
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 44 Tool,
  /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...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
BuildDependencyGenerator.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
80 protected Tool tool; field in class:BuildDependencyGenerator
85 public BuildDependencyGenerator(Tool tool, String grammarFileName)
87 this.tool = tool;
89 grammar = tool.getRootGrammar(grammarFileName);
91 generator = new CodeGenerator(tool, grammar, language)
    [all...]
RandomPhrase.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
47 * java org.antlr.tool.RandomPhrase grammarFile.g startRule [seed]
50 * java org.antlr.tool.RandomPhrase simple.g program 342
142 System.err.println("usage: java org.antlr.tool.RandomPhrase grammarfile startrule");
156 Tool tool = new Tool(); local
157 Grammar parser = new Grammar(tool, grammarFileName, composite);
180 Grammar lexer = new Grammar(tool);
    [all...]
DOTGenerator.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
48 public static STGroup stlib = new STGroupDir("org/antlr/tool/templates/dot/dfa");
79 Boolean.valueOf(Tool.internalOption_ShowNFAConfigsInDFA));
319 if ( Tool.internalOption_ShowNFAConfigsInDFA ) {
ErrorManager.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
50 /** Defines all the errors ANTLR can generator for both the tool and for
74 * in the org/antlr/tool/templates/messages dir called en_US.stg and so on.
92 // TOOL ERRORS
278 /** Each thread has its own ptr to a Tool object, which knows how
409 String fileName = "org/antlr/tool/templates/messages/languages/"+language+".stg";
434 /** The format gets reset either from the Tool if the user supplied a command line option to that effect
439 String fileName = "org/antlr/tool/templates/messages/formats/"+formatName+".stg";
470 String fileName = "org/antlr/tool/templates/messages/"+language+".stg"
507 threadToToolMap.put(Thread.currentThread(), tool); local
915 Tool tool = (Tool)threadToToolMap.get(Thread.currentThread()); local
    [all...]
  /external/chromium_org/third_party/mesa/src/scons/
gallium.py 3 Frontend-tool for Gallium3D architecture.
116 env.Tool(env['toolchain'])
518 env.Tool('lex')
519 env.Tool('yacc')
521 env.Tool('llvm')
524 env.Tool('custom')
  /external/chromium_org/tools/gn/
substitution_writer.cc 402 const Tool* tool,
421 const Tool* tool,
426 target, tool, list.list()[i]));
514 // First try the common tool ones.
528 const Tool* tool,
536 result.value().append(GetLinkerSubstitution(target, tool, subrange.type));
545 const Tool* tool
    [all...]
target.cc 166 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this); local
167 const std::string& prefix = tool->output_prefix();
182 const Tool* tool = toolchain->GetToolForTargetFinalOutput(this); local
183 if (tool)
186 // Tool not specified for this target type.
188 *err = Err(defined_from(), "This target uses an undefined tool.",
193 "which doesn't have the tool \"%s\" defined.\n\n"
277 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this) local
    [all...]
  /external/mesa3d/scons/
gallium.py 3 Frontend-tool for Gallium3D architecture.
116 env.Tool(env['toolchain'])
518 env.Tool('lex')
519 env.Tool('yacc')
521 env.Tool('llvm')
524 env.Tool('custom')
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
Target.java 30 import org.antlr.Tool;
34 import org.antlr.tool.Grammar;
86 protected void genRecognizerFile(Tool tool,
97 protected void genRecognizerHeaderFile(Tool tool,
  /external/chromium_org/chrome/browser/resources/feedback/js/
event_handler.js 29 'kkebgepbbgbcmghedmmdfcbdcodlkngh', // Chrome OS Recovery Tool
30 'jndclpdbaamdhonoechobihbbiimdgai', // Chrome OS Recovery Tool
  /external/clang/tools/driver/
driver.cpp 315 StringRef Tool = argv[1] + 4;
317 if (Tool == "")
320 if (Tool == "as")
325 llvm::errs() << "error: unknown integrated tool '" << Tool << "'\n";
  /cts/hostsidetests/theme/app/
Android.mk 33 #Flags to tell the Android Asset Packaging Tool not to strip for some densities
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java 34 import org.antlr.tool.*;
41 public class Tool {
85 * tool is required to sort the provided grammars into build dependency order.
90 Tool antlr = new Tool(args);
128 public Tool() {
132 public Tool(String[] args) {
412 // Have to be tricky here when Maven or build tools call in and must new Tool()
722 ErrorManager.info("ANTLR Parser Generator Version " + new Tool().VERSION);
726 ErrorManager.info("ANTLR Parser Generator Version " + new Tool().VERSION)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 31 import org.antlr.Tool;
38 import org.antlr.tool.ANTLRErrorListener;
39 import org.antlr.tool.ErrorManager;
40 import org.antlr.tool.GrammarSemanticsMessage;
41 import org.antlr.tool.Message;
97 protected Tool newTool(String[] args) {
98 Tool tool = new Tool(args); local
99 tool.setOutputDirectory(tmpdir)
104 Tool tool = new Tool(); local
    [all...]
TestRewriteAST.java 30 import org.antlr.Tool;
32 import org.antlr.tool.ErrorManager;
33 import org.antlr.tool.Grammar;
34 import org.antlr.tool.GrammarSemanticsMessage;
873 Tool antlr = newTool();
    [all...]
  /external/chromium_org/third_party/cython/src/Tools/site_scons/site_tools/
pyext.py 1 """SCons.Tool.pyext
3 Tool-specific initialization for python extensions builder.
39 from SCons.Tool import SourceFileScanner, ProgramScanner

Completed in 762 milliseconds

1 23 4 5