Home
last modified time | relevance | path

Searched refs:tool (Results 1 – 25 of 2011) sorted by relevance

12345678910>>...81

/third_party/gn/src/gn/
Dninja_toolchain_writer.cc45 for (const auto& tool : toolchain_->tools()) { in Run() local
46 if (tool.second->name() == GeneralTool::kGeneralToolAction) in Run()
48 WriteToolRule(tool.second.get(), rule_prefix); in Run()
78 void NinjaToolchainWriter::WriteToolRule(Tool* tool, in WriteToolRule() argument
80 out_ << "rule " << rule_prefix << tool->name() << std::endl; in WriteToolRule()
86 WriteCommandRulePattern("command", tool->command_launcher(), tool->command(), options); in WriteToolRule()
88 WriteRulePattern("description", tool->description(), options); in WriteToolRule()
89 WriteRulePattern("rspfile", tool->rspfile(), options); in WriteToolRule()
90 WriteRulePattern("rspfile_content", tool->rspfile_content(), options); in WriteToolRule()
92 if (CTool* c_tool = tool->AsC()) { in WriteToolRule()
[all …]
Dtoolchain.cc49 if (Tool* tool = GetTool(name)) { in GetToolAsGeneral() local
50 return tool->AsGeneral(); in GetToolAsGeneral()
56 if (const Tool* tool = GetTool(name)) { in GetToolAsGeneral() local
57 return tool->AsGeneral(); in GetToolAsGeneral()
63 if (Tool* tool = GetTool(name)) { in GetToolAsC() local
64 return tool->AsC(); in GetToolAsC()
70 if (const Tool* tool = GetTool(name)) { in GetToolAsC() local
71 return tool->AsC(); in GetToolAsC()
77 if (Tool* tool = GetTool(name)) { in GetToolAsRust() local
78 return tool->AsRust(); in GetToolAsRust()
[all …]
Dtarget.cc449 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this); in GetComputedOutputName() local
450 if (tool) { in GetComputedOutputName()
454 !base::StartsWith(name, tool->output_prefix(), in GetComputedOutputName()
456 result = tool->output_prefix(); in GetComputedOutputName()
467 const Tool* tool = toolchain->GetToolForTargetFinalOutput(this); in SetToolchain() local
468 if (tool) in SetToolchain()
512 const Tool* tool = toolchain_->GetTool(*computed_tool_type); in GetOutputFilesForSource() local
513 if (!tool) in GetOutputFilesForSource()
518 tool->outputs(), outputs); in GetOutputFilesForSource()
653 const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this); in FillOutputFiles() local
[all …]
Dninja_target_command_util.cc61 const CTool* tool = target->toolchain()->GetToolAsC(tool_name); in WriteOneFlag() local
62 if (tool && tool->precompiled_header_type() == CTool::PCH_MSVC) { in WriteOneFlag()
72 } else if (tool && tool->precompiled_header_type() == CTool::PCH_GCC) { in WriteOneFlag()
113 const CTool* tool = target->toolchain()->GetToolAsC(tool_name); in GetPCHOutputFiles() local
114 if (!tool) in GetPCHOutputFiles()
117 target, target->config_values().precompiled_source(), tool->outputs(), in GetPCHOutputFiles()
135 CTool::PrecompiledHeaderType header_type = tool->precompiled_header_type(); in GetPCHOutputFiles()
/third_party/boringssl/src/tool/
Dtool.cc72 const Tool &tool = kTools[i]; in usage() local
73 if (tool.func == nullptr) { in usage()
76 printf(" %s\n", tool.name); in usage()
82 const Tool &tool = kTools[i]; in FindTool() local
83 if (tool.func == nullptr || name == tool.name) { in FindTool()
84 return tool.func; in FindTool()
112 tool_func_t tool = nullptr; in main() local
114 tool = FindTool(basename(argv[0])); in main()
116 if (tool == nullptr) { in main()
119 tool = FindTool(argv[1]); in main()
[all …]
/third_party/libinput/src/
Devdev-tablet.c319 enum libinput_tablet_tool_type tool, in tablet_update_tool() argument
322 assert(tool != LIBINPUT_TOOL_NONE); in tablet_update_tool()
325 tablet->current_tool.type = tool; in tablet_update_tool()
354 struct libinput_tablet_tool *tool) in normalize_pressure() argument
374 if (tool->has_pressure_offset) in normalize_pressure()
375 offset = tool->pressure_offset; in normalize_pressure()
377 offset = tool->pressure_threshold.upper; in normalize_pressure()
494 struct libinput_tablet_tool *tool, in tablet_tool_process_delta() argument
530 tool, in tablet_tool_process_delta()
537 struct libinput_tablet_tool *tool) in tablet_update_pressure() argument
[all …]
Devdev-totem.c38 struct libinput_tablet_tool *tool; member
80 struct libinput_tablet_tool *tool; in totem_new_tool() local
82 tool = zalloc(sizeof *tool); in totem_new_tool()
84 *tool = (struct libinput_tablet_tool) { in totem_new_tool()
91 tool->pressure_offset = 0; in totem_new_tool()
92 tool->has_pressure_offset = false; in totem_new_tool()
93 tool->pressure_threshold.lower = 0; in totem_new_tool()
94 tool->pressure_threshold.upper = 1; in totem_new_tool()
96 set_bit(tool->axis_caps, LIBINPUT_TABLET_TOOL_AXIS_X); in totem_new_tool()
97 set_bit(tool->axis_caps, LIBINPUT_TABLET_TOOL_AXIS_Y); in totem_new_tool()
[all …]
/third_party/icu/icu4c/source/test/testdata/
DBUILDRULES.py61 tool = IcuTool("genrb"),
72 tool = IcuTool("genrb"),
81 tool = IcuTool("genrb"),
90 tool = IcuTool("genrb"),
105 tool = IcuTool("gensprep"),
114 tool = IcuTool("gensprep"),
123 tool = IcuTool("gensprep"),
132 tool = IcuTool("gensprep"),
141 tool = IcuTool("gensprep"),
165 tool = IcuTool("makeconv"),
[all …]
/third_party/flutter/flutter/dev/bots/test/analyze-sample-code-test-input/
Dknown_broken_documentation.dart25 /// {@tool sample}
35 /// {@end-tool}
37 /// {@tool sample}
47 /// {@end-tool}
49 /// {@tool sample}
55 /// {@end-tool}
57 /// {@tool sample}
62 /// {@end-tool}
64 /// {@tool sample}
69 /// {@end-tool}
[all …]
/third_party/flutter/skia/third_party/externals/sdl/test/nacl/
Dcommon.js21 function isHostToolchain(tool) { argument
22 return tool == 'win' || tool == 'linux' || tool == 'mac';
32 function mimeTypeForTool(tool) { argument
35 if (isHostToolchain(tool)) {
42 } else if (tool == 'pnacl' && isRelease) {
55 function browserSupportsNaCl(tool) { argument
59 if (isHostToolchain(tool)) {
62 var mimetype = mimeTypeForTool(tool);
123 function createNaClModule(name, tool, path, width, height, attrs) { argument
139 var mimetype = mimeTypeForTool(tool);
[all …]
/third_party/glib/po/
DPOTFILES.in6 gio/gapplication-tool.c
41 gio/gdbus-tool.c
74 gio/gio-tool.c
75 gio/gio-tool-cat.c
76 gio/gio-tool-copy.c
77 gio/gio-tool-info.c
78 gio/gio-tool-launch.c
79 gio/gio-tool-list.c
80 gio/gio-tool-mime.c
81 gio/gio-tool-mkdir.c
[all …]
Dgd.po42 #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46
43 #: ../gio/gio-tool.c:227 ../gio/gresource-tool.c:488
44 #: ../gio/gsettings-tool.c:522
48 #: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:489
49 #: ../gio/gresource-tool.c:557
53 #: ../gio/gapplication-tool.c:49 ../gio/gio-tool.c:228
57 #: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:528
61 #: ../gio/gapplication-tool.c:52
65 #: ../gio/gapplication-tool.c:53
71 #: ../gio/gapplication-tool.c:55
[all …]
Dth.po39 #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46
40 #: ../gio/gio-tool.c:209 ../gio/gresource-tool.c:488
41 #: ../gio/gsettings-tool.c:520
45 #: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:489
46 #: ../gio/gresource-tool.c:557
50 #: ../gio/gapplication-tool.c:49 ../gio/gio-tool.c:210
54 #: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:526
58 #: ../gio/gapplication-tool.c:52
62 #: ../gio/gapplication-tool.c:53
66 #: ../gio/gapplication-tool.c:55
[all …]
Dkk.po41 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
42 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
46 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
50 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
54 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
58 #: gio/gapplication-tool.c:52
62 #: gio/gapplication-tool.c:53
66 #: gio/gapplication-tool.c:55
70 #: gio/gapplication-tool.c:56
74 #: gio/gapplication-tool.c:57
[all …]
Dne.po41 #: ../gio/gapplication-tool.c:45 ../gio/gapplication-tool.c:46
42 #: ../gio/gio-tool.c:227 ../gio/gresource-tool.c:488
43 #: ../gio/gsettings-tool.c:522
47 #: ../gio/gapplication-tool.c:47 ../gio/gresource-tool.c:489
48 #: ../gio/gresource-tool.c:557
52 #: ../gio/gapplication-tool.c:49 ../gio/gio-tool.c:228
56 #: ../gio/gapplication-tool.c:50 ../gio/gsettings-tool.c:528
60 #: ../gio/gapplication-tool.c:52
64 #: ../gio/gapplication-tool.c:53
68 #: ../gio/gapplication-tool.c:55
[all …]
Dsr.po48 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
49 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
53 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
57 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
61 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
65 #: gio/gapplication-tool.c:52
69 #: gio/gapplication-tool.c:53
75 #: gio/gapplication-tool.c:55
79 #: gio/gapplication-tool.c:56
83 #: gio/gapplication-tool.c:57
[all …]
Duk.po46 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
47 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
51 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
55 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
59 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
63 #: gio/gapplication-tool.c:53
67 #: gio/gapplication-tool.c:54
73 #: gio/gapplication-tool.c:57
77 #: gio/gapplication-tool.c:58
81 #: gio/gapplication-tool.c:59
[all …]
Dko.po49 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
50 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
54 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
58 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
62 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
66 #: gio/gapplication-tool.c:53
70 #: gio/gapplication-tool.c:54
75 #: gio/gapplication-tool.c:57
79 #: gio/gapplication-tool.c:58
83 #: gio/gapplication-tool.c:59
[all …]
Dzh_CN.po56 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
57 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
61 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
65 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
69 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
73 #: gio/gapplication-tool.c:52
77 #: gio/gapplication-tool.c:53
81 #: gio/gapplication-tool.c:55
85 #: gio/gapplication-tool.c:56
89 #: gio/gapplication-tool.c:57
[all …]
Dzh_TW.po44 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
45 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
49 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
53 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
57 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
61 #: gio/gapplication-tool.c:52
65 #: gio/gapplication-tool.c:53
69 #: gio/gapplication-tool.c:55
73 #: gio/gapplication-tool.c:56
77 #: gio/gapplication-tool.c:57
[all …]
Dru.po53 #: gio/gapplication-tool.c:45 gio/gapplication-tool.c:46 gio/gio-tool.c:227
54 #: gio/gresource-tool.c:493 gio/gsettings-tool.c:567
58 #: gio/gapplication-tool.c:47 gio/gresource-tool.c:494 gio/gresource-tool.c:562
62 #: gio/gapplication-tool.c:49 gio/gio-tool.c:228
66 #: gio/gapplication-tool.c:50 gio/gsettings-tool.c:573
70 #: gio/gapplication-tool.c:52
74 #: gio/gapplication-tool.c:53
80 #: gio/gapplication-tool.c:55
84 #: gio/gapplication-tool.c:56
88 #: gio/gapplication-tool.c:57
[all …]
/third_party/libinput/tools/
Dlibinput-debug-gui.c148 } tool; member
549 if (w->tool.distance > 0) { in draw_tablet()
550 double pos = w->tool.distance * 100; in draw_tablet()
554 if (w->tool.pressure > 0) { in draw_tablet()
555 double pos = w->tool.pressure * 100; in draw_tablet()
556 if (w->tool.is_down) in draw_tablet()
567 if (w->tool.x_in && w->tool.y_in) { in draw_tablet()
568 cairo_rectangle(cr, w->tool.x_in - 15, w->tool.y_in - 15, 30, 30); in draw_tablet()
572 if (w->tool.x_down && w->tool.y_down) { in draw_tablet()
573 cairo_rectangle(cr, w->tool.x_down - 10, w->tool.y_down - 10, 20, 20); in draw_tablet()
[all …]
/third_party/node/tools/gyp/pylib/gyp/
DMSVSSettings.py52 def _AddTool(tool): argument
60 _msvs_validators[tool.msvs_name] = {}
61 _msbuild_validators[tool.msbuild_name] = {}
62 _msvs_to_msbuild_converters[tool.msvs_name] = {}
63 _msbuild_name_of_tool[tool.msvs_name] = tool.msbuild_name
66 def _GetMSBuildToolSettings(msbuild_settings, tool): argument
68 return msbuild_settings.setdefault(tool.msbuild_name, {})
238 def _Same(tool, name, setting_type): argument
246 _Renamed(tool, name, name, setting_type)
249 def _Renamed(tool, msvs_name, msbuild_name, setting_type): argument
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
DMSVSSettings.py52 def _AddTool(tool): argument
60 _msvs_validators[tool.msvs_name] = {}
61 _msbuild_validators[tool.msbuild_name] = {}
62 _msvs_to_msbuild_converters[tool.msvs_name] = {}
63 _msbuild_name_of_tool[tool.msvs_name] = tool.msbuild_name
66 def _GetMSBuildToolSettings(msbuild_settings, tool): argument
68 return msbuild_settings.setdefault(tool.msbuild_name, {})
237 def _Same(tool, name, setting_type): argument
245 _Renamed(tool, name, name, setting_type)
248 def _Renamed(tool, msvs_name, msbuild_name, setting_type): argument
[all …]
/third_party/node/doc/guides/
Ddiagnostic-tooling-support-tiers.md14 suite for the tool/API is not green. To be considered for inclusion
19 release branches should break this tool/API if the next major release
21 * The maintainers of the tool must remain responsive when there
23 * The tool must be actively used by the ecosystem;
24 * The tool must be heavily depended on;
25 * The tool must have a guide or other documentation in the Node.js GitHub
27 * The tool must be working on all supported platforms;
28 * The tool must only be using APIs exposed by Node.js as opposed to
30 * The tool must be open source.
34 suite for the tool/API is not green. To be considered for inclusion
[all …]

12345678910>>...81