Home
last modified time | relevance | path

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

12345

/third_party/gn/src/gn/
Dtoolchain.cc36 Tool* Toolchain::GetTool(const char* name) { in GetTool()
37 DCHECK(name != Tool::kToolNone); in GetTool()
45 const Tool* Toolchain::GetTool(const char* name) const { in GetTool()
46 DCHECK(name != Tool::kToolNone); in GetTool()
55 if (Tool* tool = GetTool(name)) { in GetToolAsGeneral()
62 if (const Tool* tool = GetTool(name)) { in GetToolAsGeneral()
69 if (Tool* tool = GetTool(name)) { in GetToolAsC()
76 if (const Tool* tool = GetTool(name)) { in GetToolAsC()
83 if (Tool* tool = GetTool(name)) { in GetToolAsRust()
90 if (const Tool* tool = GetTool(name)) { in GetToolAsRust()
[all …]
Dtest_with_scope.cc92 std::unique_ptr<Tool> cc_tool = Tool::CreateTool(CTool::kCToolCc); in SetupToolchain()
102 std::unique_ptr<Tool> cxx_tool = Tool::CreateTool(CTool::kCToolCxx); in SetupToolchain()
113 std::unique_ptr<Tool> objc_tool = Tool::CreateTool(CTool::kCToolObjC); in SetupToolchain()
123 std::unique_ptr<Tool> objcxx_tool = Tool::CreateTool(CTool::kCToolObjCxx); in SetupToolchain()
135 std::unique_ptr<Tool> alink = Tool::CreateTool(CTool::kCToolAlink); in SetupToolchain()
146 std::unique_ptr<Tool> solink = Tool::CreateTool(CTool::kCToolSolink); in SetupToolchain()
171 std::unique_ptr<Tool> solink_module = in SetupToolchain()
172 Tool::CreateTool(CTool::kCToolSolinkModule); in SetupToolchain()
187 std::unique_ptr<Tool> link = Tool::CreateTool(CTool::kCToolLink); in SetupToolchain()
200 std::unique_ptr<Tool> stamp_tool = in SetupToolchain()
[all …]
Dtool.cc14 const char* Tool::kToolNone = "";
16 Tool::Tool(const char* n) : name_(n) {} in Tool() function in Tool
18 Tool::~Tool() = default;
20 void Tool::SetToolComplete() { in SetToolComplete()
33 GeneralTool* Tool::AsGeneral() { in AsGeneral()
37 const GeneralTool* Tool::AsGeneral() const { in AsGeneral()
41 CTool* Tool::AsC() { in AsC()
45 const CTool* Tool::AsC() const { in AsC()
49 RustTool* Tool::AsRust() { in AsRust()
52 const RustTool* Tool::AsRust() const { in AsRust()
[all …]
Dtoolchain.h57 Tool* GetTool(const char* name);
58 const Tool* GetTool(const char* name) const;
72 void SetTool(std::unique_ptr<Tool> t);
96 const Tool* GetToolForSourceType(SourceFile::Type type) const;
106 const Tool* GetToolForTargetFinalOutput(const Target* target) const;
119 const std::map<const char*, std::unique_ptr<Tool>>& tools() const { in tools()
124 std::map<const char*, std::unique_ptr<Tool>> tools_;
Dninja_binary_target_writer.h70 const Tool* tool,
72 void WriteCustomLinkerFlags(std::ostream& out, const Tool* tool);
73 void WriteLibrarySearchPath(std::ostream& out, const Tool* tool);
74 void WriteLibs(std::ostream& out, const Tool* tool);
75 void WriteFrameworks(std::ostream& out, const Tool* tool);
77 const Tool* tool,
Dtool.h31 class Tool {
35 virtual ~Tool();
231 static std::unique_ptr<Tool> CreateTool(const std::string& name);
232 static std::unique_ptr<Tool> CreateTool(const ParseNode* function,
243 explicit Tool(const char* t);
302 Tool(const Tool&) = delete;
303 Tool& operator=(const Tool&) = delete;
Dsubstitution_writer.h22 class Tool; variable
181 const Tool* tool,
184 const Tool* tool,
223 const Tool* tool,
226 const Tool* tool,
234 const Tool* tool,
Dninja_binary_target_writer.cc216 const char* tool_name = Tool::kToolNone; in AddSourceSetFiles()
224 const Tool* tool = source_set->toolchain()->GetToolForSourceTypeAsC( in AddSourceSetFiles()
313 const Tool* tool) { in WriteCustomLinkerFlags()
325 const Tool* tool) { in WriteLibrarySearchPath()
359 const Tool* tool, in WriteLinkerFlags()
372 void NinjaBinaryTargetWriter::WriteLibs(std::ostream& out, const Tool* tool) { in WriteLibs()
396 const Tool* tool) { in WriteFrameworks()
413 const Tool* tool, in WriteSwiftModules()
Dcompile_commands_writer_unittest.cc265 std::unique_ptr<Tool> cxx = Tool::CreateTool(CTool::kCToolCxx); in TEST_F()
277 std::unique_ptr<Tool> cc = Tool::CreateTool(CTool::kCToolCc); in TEST_F()
413 std::unique_ptr<Tool> cxx = Tool::CreateTool(CTool::kCToolCxx); in TEST_F()
426 std::unique_ptr<Tool> cc = Tool::CreateTool(CTool::kCToolCc); in TEST_F()
Dbuiltin_tool.cc12 BuiltinTool::BuiltinTool(const char* n) : Tool(n) { in BuiltinTool()
39 return Tool::InitTool(scope, toolchain, err); in InitTool()
Dgeneral_tool.cc14 GeneralTool::GeneralTool(const char* n) : Tool(n) { in GeneralTool()
39 return Tool::InitTool(scope, toolchain, err); in InitTool()
Dninja_toolchain_writer.h20 class Tool; variable
43 void WriteToolRule(Tool* tool, const std::string& rule_prefix);
Dfunction_toolchain_unittest.cc63 const Tool* link = toolchain->GetTool(CTool::kCToolLink); in TEST_F()
111 const Tool* rust = toolchain->GetTool(RustTool::kRsToolBin); in TEST_F()
156 const Tool* link = toolchain->GetTool(CTool::kCToolCxx); in TEST_F()
Dvisual_studio_writer_unittest.cc178 std::unique_ptr<Tool> tool = Tool::CreateTool(CTool::kCToolAlink); in TEST_F()
213 std::unique_ptr<Tool> tool = Tool::CreateTool(CTool::kCToolAlink); in TEST_F()
Dtarget.cc586 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this); in GetComputedOutputName()
604 const Tool* tool = toolchain->GetToolForTargetFinalOutput(this); in SetToolchain()
621 Tool::GetToolTypeForTargetFinalOutput(this))); in SetToolchain()
657 const Tool* tool = toolchain()->GetToolForTargetFinalOutput(this); in GetOutputsAsSourceFiles()
686 *computed_tool_type = Tool::kToolNone; in GetOutputFilesForSource()
723 *computed_tool_type = Tool::GetToolTypeForSourceType(file_type); in GetOutputFilesForSource()
724 if (*computed_tool_type == Tool::kToolNone) in GetOutputFilesForSource()
726 const Tool* tool = toolchain_->GetTool(*computed_tool_type); in GetOutputFilesForSource()
938 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this); in FillOutputFiles()
Drust_tool.cc17 RustTool::RustTool(const char* n) : Tool(n) { in RustTool()
105 if (!Tool::InitTool(scope, toolchain, err)) { in InitTool()
Dninja_copy_target_writer.cc25 const Tool* copy_tool = target_->toolchain()->GetTool(GeneralTool::kGeneralToolCopy); in Run()
36 const Tool* stamp_tool = target_->toolchain()->GetTool(GeneralTool::kGeneralToolStamp); in Run()
/third_party/ninja/src/
Dninja.cc67 struct Tool;
78 const Tool* tool;
190 struct Tool { struct
1081 const Tool* ChooseTool(const string& tool_name) { in ChooseTool()
1082 static const Tool kTools[] = { in ChooseTool()
1084 Tool::RUN_AFTER_LOAD, &NinjaMain::ToolBrowse }, in ChooseTool()
1087 Tool::RUN_AFTER_FLAGS, &NinjaMain::ToolMSVC }, in ChooseTool()
1090 Tool::RUN_AFTER_LOAD, &NinjaMain::ToolClean }, in ChooseTool()
1092 Tool::RUN_AFTER_LOAD, &NinjaMain::ToolCommands }, in ChooseTool()
1094 Tool::RUN_AFTER_LOAD, &NinjaMain::ToolInputs}, in ChooseTool()
[all …]
/third_party/openssl/test/recipes/25-test_rusext_data/
Dgrfc.utf813 Signing Tool of Subject:
15 Signing Tool of Issuer:
29 Policy: Class of Signing Tool KC1
30 Policy: Class of Signing Tool KC2
Dgrfc.msb13 Signing Tool of Subject:
15 Signing Tool of Issuer:
29 Policy: Class of Signing Tool KC1
30 Policy: Class of Signing Tool KC2
/third_party/node/doc/contributing/
Ddiagnostic-tooling-support-tiers.md96 | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Tar…
103 | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier…
109 | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated wit…
121 | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrated with Node.js | Target Tier…
127 | Tool Type | Tool/API Name | Regular Testing in Node.js CI | Integrate…
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/interfaces/1_interface_declarations/
Dinterface_declarations_1.ts36 interface Tool { interface
44 interface Runer extends Tool,Worker{
77 let pointer: Tool = {
Dinterface_declarations_2.ts35 interface Tool { interface
43 interface WorkerTool extends Worker, Tool {
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
DMSVSProject.py12 class Tool: class
116 if isinstance(t, Tool):
119 specification.append(Tool(t)._GetSpecification())
/third_party/node/tools/gyp/pylib/gyp/
DMSVSProject.py12 class Tool: class
116 if isinstance(t, Tool):
119 specification.append(Tool(t)._GetSpecification())

12345