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

12 3 4

  /external/clang/lib/Driver/
Android.mk 27 Tool.cpp \
CrossWindowsToolChain.cpp 1 //===--- CrossWindowsToolChain.cpp - Cross Windows Tool Chain -------------===//
116 Tool *CrossWindowsToolChain::buildLinker() const {
120 Tool *CrossWindowsToolChain::buildAssembler() const {
ToolChain.cpp 208 Tool *ToolChain::getClang() const {
214 Tool *ToolChain::buildAssembler() const {
218 Tool *ToolChain::buildLinker() const {
222 Tool *ToolChain::getAssemble() const {
228 Tool *ToolChain::getClangAs() const {
234 Tool *ToolChain::getLink() const {
240 Tool *ToolChain::getTool(Action::ActionClass AC) const {
255 llvm_unreachable("Invalid tool kind.");
267 llvm_unreachable("Invalid tool kind.");
326 Tool *ToolChain::SelectTool(const JobAction &JA) const
    [all...]
MinGWToolChain.cpp 95 Tool *MinGW::getTool(Action::ActionClass AC) const {
110 Tool *MinGW::buildAssembler() const {
114 Tool *MinGW::buildLinker() const { return new tools::MinGW::Linker(*this); }
ToolChains.cpp 52 /// Darwin - Darwin tool chain for i386 and x86_64.
201 Tool *MachO::getTool(Action::ActionClass AC) const {
220 Tool *MachO::buildLinker() const { return new tools::darwin::Linker(*this); }
222 Tool *MachO::buildAssembler() const {
644 // Set the tool chain target information.
768 // FIXME: We really want to get out of the tool chain level argument
773 // and try to push it down into tool specific logic.
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 30 import org.antlr.Tool;
33 import org.antlr.tool.Grammar;
86 protected void genRecognizerHeaderFile(Tool tool,
ActionScriptTarget.java 30 import org.antlr.Tool;
32 import org.antlr.tool.Grammar;
126 protected ST chooseWhereCyclicDFAsGo(Tool tool,
CSharp3Target.java 35 import org.antlr.Tool;
36 import org.antlr.tool.Grammar;
82 protected void genRecognizerFile(Tool tool, CodeGenerator generator, Grammar grammar, ST outputFileST) throws IOException
104 super.genRecognizerFile(tool, generator, grammar, outputFileST);
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/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCompositeGrammars.java 30 import org.antlr.Tool;
31 import org.antlr.tool.*;
210 Tool antlr = newTool(new String[] {"-lib", tmpdir});
248 Tool antlr = newTool(new String[] {"-lib", tmpdir});
282 Tool antlr = newTool(new String[] {"-lib", tmpdir});
335 Tool antlr = newTool(new String[] {"-lib", tmpdir});
383 Tool antlr = newTool(new String[] {"-lib", tmpdir});
425 Tool antlr = newTool(new String[] {"-lib", tmpdir});
460 Tool antlr = newTool(new String[] {"-lib", tmpdir});
486 Tool antlr = newTool(new String[] {"-lib", tmpdir})
    [all...]
TestLexer.java 30 import org.antlr.Tool;
33 import org.antlr.tool.Grammar;
242 Tool antlr = newTool();
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/mesa3d/
SConstruct 101 # no tool used
113 host_env.Tool('gallium')
  /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/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')
  /build/soong/genrule/
genrule.go 58 Tool string
87 if g.properties.Tool != "" {
91 }, g.properties.Tool)
107 ctx.ModuleErrorf("host tool %q missing output file", ctx.OtherModuleName(module))
  /external/clang/tools/driver/
driver.cpp 298 static int ExecuteCC1Tool(ArrayRef<const char *> argv, StringRef Tool) {
300 if (Tool == "")
302 if (Tool == "as")
306 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...]

Completed in 897 milliseconds

12 3 4