/third_party/gn/src/gn/ |
D | toolchain.cc | 36 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 …]
|
D | test_with_scope.cc | 92 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 …]
|
D | tool.cc | 14 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 …]
|
D | toolchain.h | 57 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_;
|
D | ninja_binary_target_writer.h | 70 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,
|
D | tool.h | 31 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;
|
D | substitution_writer.h | 22 class Tool; variable 181 const Tool* tool, 184 const Tool* tool, 223 const Tool* tool, 226 const Tool* tool, 234 const Tool* tool,
|
D | ninja_binary_target_writer.cc | 216 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()
|
D | compile_commands_writer_unittest.cc | 265 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()
|
D | builtin_tool.cc | 12 BuiltinTool::BuiltinTool(const char* n) : Tool(n) { in BuiltinTool() 39 return Tool::InitTool(scope, toolchain, err); in InitTool()
|
D | general_tool.cc | 14 GeneralTool::GeneralTool(const char* n) : Tool(n) { in GeneralTool() 39 return Tool::InitTool(scope, toolchain, err); in InitTool()
|
D | ninja_toolchain_writer.h | 20 class Tool; variable 43 void WriteToolRule(Tool* tool, const std::string& rule_prefix);
|
D | function_toolchain_unittest.cc | 63 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()
|
D | visual_studio_writer_unittest.cc | 178 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()
|
D | target.cc | 586 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()
|
D | rust_tool.cc | 17 RustTool::RustTool(const char* n) : Tool(n) { in RustTool() 105 if (!Tool::InitTool(scope, toolchain, err)) { in InitTool()
|
D | ninja_copy_target_writer.cc | 25 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/ |
D | ninja.cc | 67 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/ |
D | grfc.utf8 | 13 Signing Tool of Subject: 15 Signing Tool of Issuer: 29 Policy: Class of Signing Tool KC1 30 Policy: Class of Signing Tool KC2
|
D | grfc.msb | 13 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/ |
D | diagnostic-tooling-support-tiers.md | 96 | 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/ |
D | interface_declarations_1.ts | 36 interface Tool { interface 44 interface Runer extends Tool,Worker{ 77 let pointer: Tool = {
|
D | interface_declarations_2.ts | 35 interface Tool { interface 43 interface WorkerTool extends Worker, Tool {
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | MSVSProject.py | 12 class Tool: class 116 if isinstance(t, Tool): 119 specification.append(Tool(t)._GetSpecification())
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | MSVSProject.py | 12 class Tool: class 116 if isinstance(t, Tool): 119 specification.append(Tool(t)._GetSpecification())
|