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

1 2 3 4

  /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,
20 Tool::~Tool() {
Tools.h 1 //===--- Tools.h - Tool Implementations -------------------------*- C++ -*-===//
13 #include "clang/Driver/Tool.h"
39 /// \brief Clang compiler tool.
40 class LLVM_LIBRARY_VISIBILITY Clang : public Tool {
91 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC) {}
103 /// \brief Clang integrated assembler tool.
104 class LLVM_LIBRARY_VISIBILITY ClangAs : public Tool {
106 ClangAs(const ToolChain &TC) : Tool("clang::as",
119 /// gcc - Generic GCC tool implementations.
121 class LLVM_LIBRARY_VISIBILITY Common : public Tool {
    [all...]
ToolChains.h 28 /// Generic_GCC - A tool chain using the 'gcc' command to perform
166 Tool *getTool(Action::ActionClass AC) const override;
167 Tool *buildAssembler() const override;
168 Tool *buildLinker() const override;
188 Tool *buildAssembler() const override;
189 Tool *buildLinker() const override;
190 Tool *getTool(Action::ActionClass AC) const override;
308 /// Darwin - The base Darwin tool chain.
333 /// The default macosx-version-min of this tool chain; empty until
337 /// The default ios-version-min of this tool chain; empty unti
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/tools/
antlr.sh 7 org.antlr.Tool \
  /external/clang/include/clang/Driver/
Tool.h 1 //===--- Tool.h - Compilation Tools -----------------------------*- C++ -*-===//
32 /// Tool - Information on a specific compilation tool.
33 class Tool {
34 /// The tool name (for debugging).
37 /// The human readable name for the tool, for use in diagnostics.
40 /// The tool chain this tool is a part of.
44 Tool(const char *Name, const char *ShortName,
48 virtual ~Tool();
    [all...]
ToolChain.h 39 class Tool;
69 mutable std::unique_ptr<Tool> Clang;
70 mutable std::unique_ptr<Tool> Assemble;
71 mutable std::unique_ptr<Tool> Link;
72 Tool *getClang() const;
73 Tool *getAssemble() const;
74 Tool *getLink() const;
75 Tool *getClangAs() const;
85 virtual Tool *buildAssembler() const;
86 virtual Tool *buildLinker() const
    [all...]
Job.h 26 class Tool;
65 /// Tool - The tool which caused the creation of this job.
66 const Tool &Creator;
76 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
88 /// getCreator - Return the Tool which caused the creation of this job.
89 const Tool &getCreator() const { return Creator; }
105 FallbackCommand(const Action &Source_, const Tool &Creator_,
  /external/chromium_org/tools/gn/
toolchain.h 57 struct Tool {
58 Tool();
59 ~Tool();
84 const Tool& GetTool(ToolType type) const;
85 void SetTool(ToolType type, const Tool& t);
95 Tool tools_[TYPE_NUMTYPES];
toolchain.cc 22 Toolchain::Tool::Tool() {
25 Toolchain::Tool::~Tool() {
79 const Toolchain::Tool& Toolchain::GetTool(ToolType type) const {
84 void Toolchain::SetTool(ToolType type, const Tool& t) {
ninja_binary_target_writer.h 29 void WriteLinkerFlags(const Toolchain::Tool& tool,
31 void WriteLibs(const Toolchain::Tool& tool);
  /external/clang/unittests/Tooling/
ToolingTest.cpp 145 Args.push_back("tool-executable");
164 Args.push_back("tool-executable");
204 ClangTool Tool(Compilations, Sources);
206 Tool.mapVirtualFile("/a.cc", "void a() {}");
207 Tool.mapVirtualFile("/b.cc", "void b() {}");
211 Tool.run(Action.get());
279 ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc"));
280 Tool.mapVirtualFile("/a.cc", "void a() {}");
287 Tool.appendArgumentsAdjuster(new CheckSyntaxOnlyAdjuster(Found, Ran));
288 Tool.run(Action.get())
    [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.'
count.py 9 from grit.tool import interface
12 class CountMessage(interface.Tool):
  /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,
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
gen_msvs_proj.sh 79 tag Tool \
96 tag Tool \
290 tag Tool \
301 tag Tool \
305 tag Tool \
316 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
319 tag Tool \
330 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
342 tag Tool \
347 tag Tool \
    [all...]
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 155 tag Tool \
172 tag Tool \
362 tag Tool \
373 tag Tool \
377 tag Tool \
388 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
391 tag Tool \
402 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
414 tag Tool \
419 tag Tool \
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_proj.sh 155 tag Tool \
172 tag Tool \
362 tag Tool \
373 tag Tool \
377 tag Tool \
388 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
391 tag Tool \
402 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
414 tag Tool \
419 tag Tool \
    [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
197 ClangTool Tool(OptionsParser.getCompilations(),
201 Tool.clearArgumentsAdjusters();
202 Tool.appendArgumentsAdjuster(new ClangStripOutputAdjuster());
204 Tool.appendArgumentsAdjuster(new InsertAdjuster(ArgsAfter,
208 Tool.appendArgumentsAdjuster(new InsertAdjuster(ArgsBefore,
214 Tool.appendArgumentsAdjuster(new InsertAdjuster(
228 return Tool.run(FrontendFactory.get())
    [all...]

Completed in 6597 milliseconds

1 2 3 4