Home
last modified time | relevance | path

Searched refs:Tool (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/external/clang/unittests/Tooling/
DToolingTest.cpp226 ClangTool Tool(Compilations, Sources); in TEST() local
228 Tool.mapVirtualFile("/a.cc", "void a() {}"); in TEST()
229 Tool.mapVirtualFile("/b.cc", "void b() {}"); in TEST()
233 Tool.run(Action.get()); in TEST()
337 ClangTool Tool(Compilations, std::vector<std::string>(1, "/a.cc")); in TEST() local
338 Tool.mapVirtualFile("/a.cc", "void a() {}"); in TEST()
352 Tool.appendArgumentsAdjuster(CheckSyntaxOnlyAdjuster); in TEST()
353 Tool.run(Action.get()); in TEST()
358 Tool.clearArgumentsAdjusters(); in TEST()
359 Tool.appendArgumentsAdjuster(CheckSyntaxOnlyAdjuster); in TEST()
[all …]
/external/clang/lib/Driver/
DToolChains.h228 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;
643 Tool *buildLinker() const override;
660 Tool *buildAssembler() const override;
661 Tool *buildLinker() const override;
684 Tool *getTool(Action::ActionClass AC) const override;
[all …]
DTools.h46 class LLVM_LIBRARY_VISIBILITY Clang : public Tool {
109 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC, RF_Full) {} in Clang()
123 class LLVM_LIBRARY_VISIBILITY ClangAs : public Tool {
126 : Tool("clang::as", "clang integrated assembler", TC, RF_Full) {} in ClangAs()
141 class LLVM_LIBRARY_VISIBILITY GnuTool : public Tool {
146 : Tool(Name, ShortName, TC, RF_Full, llvm::sys::WEM_CurrentCodePage) {} in GnuTool()
335 class LLVM_LIBRARY_VISIBILITY MachOTool : public Tool {
352 : Tool(Name, ShortName, TC, ResponseSupport, ResponseEncoding, in Tool() function
629 class LLVM_LIBRARY_VISIBILITY Assembler : public Tool {
632 : Tool("solaris::Assembler", "assembler", TC) {} in Assembler()
[all …]
DTool.cpp14 Tool::Tool(const char *_Name, const char *_ShortName, const ToolChain &TC, in Tool() function in Tool
22 Tool::~Tool() { in ~Tool()
DJob.cpp30 Command::Command(const Action &Source, const Tool &Creator, in Command()
102 if (Creator.getResponseFilesSupport() == Tool::RF_FileList) { in writeResponseFile()
131 if (Creator.getResponseFilesSupport() != Tool::RF_FileList) { in buildArgvForResponseFile()
217 if (Creator.getResponseFilesSupport() != Tool::RF_FileList) in Print()
272 FallbackCommand::FallbackCommand(const Action &Source_, const Tool &Creator_, in FallbackCommand()
314 const Tool &Creator_, in ForceSuccessCommand()
/external/antlr/tool/src/test/java/org/antlr/test/
DTestAttributes.java30 import org.antlr.Tool;
58 Tool antlr = newTool(); in testEscapedLessThanInAction()
83 Tool antlr = newTool(); in testEscaped$InAction()
105 Tool antlr = newTool(); in testArguments()
130 Tool antlr = newTool(); in testComplicatedArgParsing()
152 Tool antlr = newTool(); in testBracketArgParsing()
183 Tool antlr = newTool(); in testStringArgParsing()
219 Tool antlr = newTool(); in testComplicatedSingleArgParsing()
244 Tool antlr = newTool(); in testArgWithLT()
275 Tool antlr = newTool(); in testGenericsAsArgumentDefinition()
[all …]
DTestTemplates.java30 import org.antlr.Tool;
67 Tool antlr = newTool(); in testTemplateConstructor()
104 Tool antlr = newTool(); in testTemplateConstructorNoArgs()
142 Tool antlr = newTool(); in testIndirectTemplateConstructor()
178 Tool antlr = newTool(); in testStringConstructor()
213 Tool antlr = newTool(); in testSetAttr()
249 Tool antlr = newTool(); in testSetAttrOfExpr()
283 Tool antlr = newTool(); in testSetAttrOfExprInMembers()
307 Tool antlr = newTool(); in testCannotHaveSpaceBeforeDot()
335 Tool antlr = newTool(); in testCannotHaveSpaceAfterDot()
DTestCompositeGrammars.java30 import org.antlr.Tool;
212 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testDelegatesSeeSameTokenType2()
250 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testCombinedImportsCombined()
284 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testSameStringTwoNames()
337 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testSameNameTwoStrings()
385 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testImportedTokenVocabIgnoredWithWarning()
427 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testImportedTokenVocabWorksInRoot()
462 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testSyntaxErrorsInImportsNotThrownOut()
488 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testSyntaxErrorsInImportsNotThrownOut2()
619 Tool antlr = newTool(new String[] {"-lib", tmpdir}); in testLexerDelegatorRuleOverridesDelegateLeavingNoRules()
[all …]
DTestRewriteTemplates.java30 import org.antlr.Tool;
250 Tool antlr = newTool(); in testRewriteRuleAndRewriteModeOnSimpleElements()
272 Tool antlr = newTool(); in testRewriteRuleAndRewriteModeIgnoreActionsPredicates()
291 Tool antlr = newTool(); in testRewriteRuleAndRewriteModeNotSimple()
311 Tool antlr = newTool(); in testRewriteRuleAndRewriteModeRefRule()
/external/clang/include/clang/Driver/
DToolChain.h45 class Tool; variable
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 …]
DJob.h27 class Tool; variable
48 const Tool &Creator;
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
103 const Tool &getCreator() const { return Creator; } in getCreator()
126 FallbackCommand(const Action &Source_, const Tool &Creator_,
144 ForceSuccessCommand(const Action &Source_, const Tool &Creator_,
DTool.h34 class Tool {
72 Tool(const char *Name, const char *ShortName, const ToolChain &TC,
78 virtual ~Tool();
/external/jsoncpp/
DSConstruct73 env.Tool( 'sunc++' )
74 env.Tool( 'sunlink' )
75 env.Tool( 'sunar' )
78 env.Tool( 'default' )
79 env.Tool( 'aixcc' )
88 env.Tool( tool )
93 env.Tool( tool )
98 env.Tool( tool )
103 env.Tool( tool )
115 env.Tool( tool )
[all …]
/external/boringssl/src/tool/
Dtool.cc39 struct Tool { struct
44 static const Tool kTools[] = { argument
72 const Tool &tool = kTools[i]; in usage()
82 const Tool &tool = kTools[i]; in FindTool()
/external/clang/tools/clang-check/
DClangCheck.cpp162 ClangTool Tool(OptionsParser.getCompilations(), in main() local
166 Tool.clearArgumentsAdjusters(); in main()
167 Tool.appendArgumentsAdjuster(getClangStripOutputAdjuster()); in main()
171 Tool.appendArgumentsAdjuster(getInsertArgumentAdjuster( in main()
185 return Tool.run(FrontendFactory.get()); in main()
/external/mesa3d/scons/
Dcrossmingw.py41 import SCons.Tool
115 source_scanner=SCons.Tool.SourceFileScanner)
116 SCons.Tool.SourceFileScanner.add_scanner('.rc', SCons.Defaults.CScan)
138 SCons.Tool.Tool(tool)(env)
/external/compiler-rt/lib/esan/
Desan_interface.cpp20 void __esan_init(ToolType Tool, void *Ptr) { in __esan_init() argument
21 if (Tool != __esan_which_tool) { in __esan_init()
22 Printf("ERROR: tool mismatch: %d vs %d\n", Tool, __esan_which_tool); in __esan_init()
25 initializeLibrary(Tool); in __esan_init()
/external/speex/ti/speex_C64_test/
Dspeex_C64_test.pjt7 Tool="Compiler"
8 Tool="CustomBuilder"
9 Tool="DspBiosBuilder"
10 Tool="Linker"
/external/speex/ti/speex_C55_test/
Dspeex_C55_test.pjt7 Tool="Compiler"
8 Tool="CustomBuilder"
9 Tool="DspBiosBuilder"
10 Tool="Linker"
/external/speex/ti/speex_C54_test/
Dspeex_C54_test.pjt7 Tool="Compiler"
8 Tool="CustomBuilder"
9 Tool="DspBiosBuilder"
10 Tool="Linker"
/external/selinux/gui/
Dselinux-polgengui.desktop2 Name=SELinux Policy Generation Tool
6 Name[de]=Tool zur Erstellung von SELinux-Richtlinien
12 Name[it]=Tool di generazione della policy di SELinux
30 Name[zh_TW]=SELinux 政策產生工具(SELinux Policy Generation Tool
35 Comment[de]=Tool zur Erstellung von SELinux-Richtlinien
/external/antlr/tool/src/main/java/org/antlr/codegen/
DCTarget.java30 import org.antlr.Tool;
43 protected void genRecognizerFile(Tool tool, in genRecognizerFile()
58 protected void genRecognizerHeaderFile(Tool tool, in genRecognizerHeaderFile()
74 protected ST chooseWhereCyclicDFAsGo(Tool tool, in chooseWhereCyclicDFAsGo()
DCppTarget.java30 import org.antlr.Tool;
49 protected void genRecognizerFile(Tool tool, in genRecognizerFile()
64 protected void genRecognizerHeaderFile(Tool tool, in genRecognizerHeaderFile()
105 protected ST chooseWhereCyclicDFAsGo(Tool tool, in chooseWhereCyclicDFAsGo()
/external/antlr/tool/src/main/java/org/antlr/tool/
DInterp.java30 import org.antlr.Tool;
77 Tool tool = new Tool(); in main()
/external/antlr/tool/src/main/resources/org/antlr/
Dantlr.properties3 # the build process. For instance the Tool version string is
5 # hard code this into Tool.java and so on.

12345678910>>...17