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

1 2 3 4 5

  /external/clang/lib/Driver/
Tool.cpp 1 //===--- Tool.cpp - Compilation Tools -------------------------------------===//
10 #include "clang/Driver/Tool.h"
14 Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC,
22 Tool::~Tool() {
Tools.h 1 //===--- Tools.h - Tool Implementations -------------------------*- C++ -*-===//
15 #include "clang/Driver/Tool.h"
45 /// \brief Clang compiler tool.
46 class LLVM_LIBRARY_VISIBILITY Clang : public Tool {
107 // as it is for other tools. Some operations on a Tool actually test
108 // whether that tool is Clang based on the Tool's Name as a string.
109 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC, RF_Full) {}
122 /// \brief Clang integrated assembler tool.
123 class LLVM_LIBRARY_VISIBILITY ClangAs : public Tool {
    [all...]
ToolChains.h 30 /// Generic_GCC - A tool chain using the 'gcc' command to perform
228 Tool *getTool(Action::ActionClass AC) const override;
229 Tool *buildAssembler() const override;
230 Tool *buildLinker() const override;
257 Tool *buildAssembler() const override;
258 Tool *buildLinker() const override;
259 Tool *getTool(Action::ActionClass AC) const override;
371 /// Darwin - The base Darwin tool chain.
429 // FIXME: Eliminate these ...Target functions and derive separate tool chains
643 Tool *buildLinker() const override
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/tools/
antlr.sh 7 org.antlr.Tool \
  /external/jsoncpp/scons-tools/
globtool.py 51 Tool always exists.
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
ParseGuidedSectionTools.c 111 STRING_LIST *Tool;
135 Tool = SplitStringByWhitespace (NextLine);
136 if ((Tool != NULL) &&
137 (Tool->Count == 3)
139 Status = StringToGuid (Tool->Strings[0], &Guid);
144 NewGuidTool->Name = CloneString(Tool->Strings[1]);
145 NewGuidTool->Path = CloneString(Tool->Strings[2]);
155 FreeStringList (Tool);
172 This function looks up the appropriate tool to use for extracting
182 NULL - if no tool is found or there is another error
    [all...]
  /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,
ObjCTarget.java 31 import org.antlr.Tool;
34 import org.antlr.tool.Grammar;
39 protected void genRecognizerHeaderFile(Tool tool,
CTarget.java 30 import org.antlr.Tool;
32 import org.antlr.tool.Grammar;
42 protected void genRecognizerFile(Tool tool,
57 protected void genRecognizerHeaderFile(Tool tool,
73 protected ST chooseWhereCyclicDFAsGo(Tool tool,
DelphiTarget.java 30 import org.antlr.Tool;
34 import org.antlr.tool.Grammar;
49 protected ST chooseWhereCyclicDFAsGo(Tool tool,
  /external/boringssl/src/tool/
tool.cc 34 struct Tool {
39 static const Tool kTools[] = {
65 const Tool &tool = kTools[i]; local
66 if (tool.func == nullptr) {
69 printf(" %s\n", tool.name);
75 const Tool &tool = kTools[i]; local
76 if (tool.func == nullptr || name == tool.name)
105 tool_func_t tool = nullptr; local
    [all...]
  /external/compiler-rt/lib/esan/
esan_interface.cpp 20 void __esan_init(ToolType Tool, void *Ptr) {
21 if (Tool != __esan_which_tool) {
22 Printf("ERROR: tool mismatch: %d vs %d\n", Tool, __esan_which_tool);
25 initializeLibrary(Tool);
esan.h 38 void initializeLibrary(ToolType Tool);
41 // Esan creates the variable per tool per compilation unit at compile time
  /external/clang/include/clang/Driver/
Tool.h 1 //===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===//
33 /// Tool - Information on a specific compilation tool.
34 class Tool {
36 // Documents the level of support for response files in this tool.
41 // all tool input arguments to a file. E.g.: clang, gcc, binutils and MSVC
53 /// The tool name (for debugging).
56 /// The human readable name for the tool, for use in diagnostics.
59 /// The tool chain this tool is a part of
    [all...]
ToolChain.h 45 class Tool;
85 mutable std::unique_ptr<Tool> Clang;
86 mutable std::unique_ptr<Tool> Assemble;
87 mutable std::unique_ptr<Tool> Link;
88 Tool *getClang() const;
89 Tool *getAssemble() const;
90 Tool *getLink() const;
91 Tool *getClangAs() const;
102 virtual Tool *buildAssembler() const;
103 virtual Tool *buildLinker() const
    [all...]
Job.h 27 class Tool;
47 /// Tool - The tool which caused the creation of this job.
48 const Tool &Creator;
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
102 /// getCreator - Return the Tool which caused the creation of this job.
103 const Tool &getCreator() const { return Creator; }
109 /// the tool being called only supports input files lists.
126 FallbackCommand(const Action &Source_, const Tool &Creator_,
144 ForceSuccessCommand(const Action &Source_, const Tool &Creator_
    [all...]
  /external/clang/unittests/Tooling/
ToolingTest.cpp 160 Args.push_back("tool-executable");
186 Args.push_back("tool-executable");
226 ClangTool Tool(Compilations, Sources);
228 Tool.mapVirtualFile("/a.cc", "void a() {}");
229 Tool.mapVirtualFile("/b.cc", "void b() {}");
233 Tool.run(Action.get());
337 ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc"));
338 Tool.mapVirtualFile("/a.cc", "void a() {}");
352 Tool.appendArgumentsAdjuster(CheckSyntaxOnlyAdjuster);
353 Tool.run(Action.get())
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
Tool.java 34 public class Tool {
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestMessages.java 30 import org.antlr.Tool;
35 import org.antlr.tool.ErrorManager;
36 import org.antlr.tool.Grammar;
37 import org.antlr.tool.GrammarSemanticsMessage;
59 Tool antlr = newTool();
TestRewriteTemplates.java 30 import org.antlr.Tool;
32 import org.antlr.tool.*;
248 Tool antlr = newTool();
270 Tool antlr = newTool();
289 Tool antlr = newTool();
309 Tool antlr = newTool();
TestTemplates.java 30 import org.antlr.Tool;
37 import org.antlr.tool.ErrorManager;
38 import org.antlr.tool.Grammar;
39 import org.antlr.tool.GrammarSemanticsMessage;
40 import org.antlr.tool.Message;
65 Tool antlr = newTool();
102 Tool antlr = newTool();
140 Tool antlr = newTool();
176 Tool antlr = newTool();
211 Tool antlr = newTool()
    [all...]
TestAttributes.java 30 import org.antlr.Tool;
37 import org.antlr.tool.*;
56 Tool antlr = newTool();
81 Tool antlr = newTool();
103 Tool antlr = newTool();
128 Tool antlr = newTool();
150 Tool antlr = newTool();
181 Tool antlr = newTool();
217 Tool antlr = newTool();
242 Tool antlr = newTool()
    [all...]
  /external/clang/tools/clang-check/
ClangCheck.cpp 1 //===--- tools/clang-check/ClangCheck.cpp - Clang check tool --------------===//
10 // This file implements a clang-check tool that runs clang based on the info
13 // This tool uses the Clang Tooling infrastructure, see
162 ClangTool Tool(OptionsParser.getCompilations(),
166 Tool.clearArgumentsAdjusters();
167 Tool.appendArgumentsAdjuster(getClangStripOutputAdjuster());
171 Tool.appendArgumentsAdjuster(getInsertArgumentAdjuster(
185 return Tool.run(FrontendFactory.get());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 28 package org.antlr.tool;
30 import org.antlr.Tool;
75 Tool tool = new Tool(); local
77 Grammar parser = new Grammar(tool, grammarFileName, composite);
99 Grammar lexer = new Grammar(tool);
102 lexer.setTool(tool);
  /device/linaro/bootloader/edk2/BaseTools/Bin/CYGWIN_NT-5.1-i686/
BootSectImage 14 echo BaseTools C Tool binary was not found \($TOOL_BASENAME\)

Completed in 436 milliseconds

1 2 3 4 5