HomeSort by relevance Sort by last modified time
    Searched refs:Tool (Results 1 - 25 of 109) 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,
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/chromium_org/tools/gn/
tool.cc 5 #include "tools/gn/tool.h"
7 Tool::Tool()
13 Tool::~Tool() {
16 void Tool::SetComplete() {
test_with_scope.cc 13 void SetCommandForTool(const std::string& cmd, Tool* tool) {
19 tool->set_command(command);
47 scoped_ptr<Tool> cc_tool(new Tool);
57 scoped_ptr<Tool> cxx_tool(new Tool);
67 scoped_ptr<Tool> objc_tool(new Tool);
77 scoped_ptr<Tool> objcxx_tool(new Tool)
    [all...]
toolchain.h 17 #include "tools/gn/tool.h"
74 // Returns null if the tool hasn't been defined.
75 const Tool* GetTool(ToolType type) const;
77 // Set a tool. When all tools are configured, you should call
79 void SetTool(ToolType type, scoped_ptr<Tool> t);
95 // Returns the tool for compiling the given source file type.
97 const Tool* GetToolForSourceType(SourceFileType type);
99 // Returns the tool that produces the final output for the given target type.
100 // This isn't necessarily the tool you would expect. For copy target, this
101 // will return the stamp tool ionstead since the final output of a cop
    [all...]
ninja_copy_target_writer.h 11 class Tool;
function_toolchain.cc 14 #include "tools/gn/tool.h"
29 Tool* tool,
30 void (Tool::*set)(bool),
38 (tool->*set)(v->boolean_value());
46 Tool* tool,
47 void (Tool::*set)(const std::string&),
55 (tool->*set)(v->string_value());
80 Tool* tool
    [all...]
ninja_toolchain_writer.h 21 class Tool;
44 const Tool* tool,
substitution_writer.h 22 class Tool;
36 // - Target substitutions: These are specific to the target+tool combination
166 const Tool* tool,
170 const Tool* tool,
176 // compiler and linker ones which will fall through if it's not a common tool
188 // A compiler substitution allows both source and tool substitutions. These
213 const Tool* tool,
    [all...]
tool.h 15 class Tool {
22 Tool();
23 ~Tool();
27 // After the tool has had its attributes set, the caller must call
149 // Called when the toolchain is saving this tool, after everything is filled
153 // Returns true if this tool has separate outputs for dependency tracking
159 // Substitutions required by this tool.
185 DISALLOW_COPY_AND_ASSIGN(Tool);
  /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/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 81 tag Tool \
98 tag Tool \
299 tag Tool \
310 tag Tool \
314 tag Tool \
325 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
328 tag Tool \
339 $uses_asm && tag Tool Name="YASM" IncludePaths="$incs" Debug="true"
351 tag Tool \
356 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 {

Completed in 1158 milliseconds

1 2 3 4 5