/external/autotest/server/site_tests/debugd_DevTools/ |
D | debugd_DevTools.py | 46 for tool in self.tools: 47 tool.initialize(host, save_initial_state=True) 60 for tool in self.tools: 62 tool.restore_state() 65 'altered by test (%s).', tool, e) 69 def test_tool(self, tool): argument 85 logging.debug('Disabling %s.', tool) 87 tool.disable() 91 if tool.is_enabled(): 92 logging.warning('Skipping %s - cannot disable (%s).', tool, e) [all …]
|
/external/boringssl/src/tool/ |
D | tool.cc | 72 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 …]
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/ |
D | Antlr3Mojo.java | 235 protected Tool tool; field in Antlr3Mojo 305 tool = new Tool(); in execute() 315 tool.setDebug(debug); in execute() 316 tool.setGenerate_DFA_dot(dfa); in execute() 317 tool.setGenerate_NFA_dot(nfa); in execute() 318 tool.setProfile(profile); in execute() 319 tool.setReport(report); in execute() 320 tool.setPrintGrammar(printGrammar); in execute() 321 tool.setTrace(trace); in execute() 322 tool.setVerbose(verbose); in execute() [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/services/ |
D | java.awt.im.spi.InputMethodDescriptor | 1 com.ibm.icu.dev.tool.ime.indic.BengaliInputMethodDescriptor 2 com.ibm.icu.dev.tool.ime.indic.DevanagariInputMethodDescriptor 3 com.ibm.icu.dev.tool.ime.indic.GujaratiInputMethodDescriptor 4 com.ibm.icu.dev.tool.ime.indic.GurmukhiInputMethodDescriptor 5 com.ibm.icu.dev.tool.ime.indic.KannadaInputMethodDescriptor 6 com.ibm.icu.dev.tool.ime.indic.MalayalamInputMethodDescriptor 7 com.ibm.icu.dev.tool.ime.indic.OriyaInputMethodDescriptor 8 com.ibm.icu.dev.tool.ime.indic.TamilInputMethodDescriptor 9 com.ibm.icu.dev.tool.ime.indic.TeluguInputMethodDescriptor
|
/external/toolchain-utils/go/patch/ |
D | go3.patch | 49 - run("go", "tool", "compile", "bug0.go") 50 - run("go", "tool", "compile", "bug1.go") 51 - run("go", "tool", "compile", "bug2.go") 52 - run(errchk, "go", "tool", "compile", "-e", "bug3.go") 53 - run("go", "tool", "link", "bug2.o") 55 + run(goCmd(), "tool", "compile", "bug0.go") 56 + run(goCmd(), "tool", "compile", "bug1.go") 57 + run(goCmd(), "tool", "compile", "bug2.go") 58 + run(errchk, goCmd(), "tool", "compile", "-e", "bug3.go") 59 + run(goCmd(), "tool", "link", "bug2.o") [all …]
|
/external/libmojo/third_party/catapult/devil/devil/android/ |
D | forwarder.py | 66 def Map(port_pairs, device, tool=None): argument 82 if not tool: 83 tool = base_tool.BaseTool() 85 instance = Forwarder._GetInstanceLocked(tool) 86 instance._InitDeviceLocked(device, tool) 107 Forwarder._KillDeviceLocked(device, tool) 161 tool = base_tool.BaseTool() 162 Forwarder._KillDeviceLocked(device, tool) 185 def _GetInstanceLocked(tool): argument 195 Forwarder._instance = Forwarder(tool) [all …]
|
/external/mockito/src/test/java/org/mockito/internal/util/reflection/ |
D | LenientCopyToolTest.java | 21 private LenientCopyTool tool = new LenientCopyTool(); field in LenientCopyToolTest 57 tool.copyToMock(from, to); in shouldShallowCopyBasicFinalField() 70 tool.copyToMock(from, to); in shouldShallowCopyTransientPrivateFields() 83 tool.copyToMock(fromList, toList); in shouldShallowCopyLinkedListIntoMock() 104 tool.copyToMock(from, to); in shouldShallowCopyFieldValuesIntoMock() 123 tool.copyToMock(from, to); in shouldCopyValuesOfInheritedFields() 136 tool.copyToMock(from, to); in shouldEnableAndThenDisableAccessibility() 146 tool.fieldCopier = mock(FieldCopier.class); in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue() 151 when(tool.fieldCopier). in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue() 155 tool.copyToMock(from, to); in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue() [all …]
|
/external/clang/tools/diag-build/ |
D | diag-build.sh | 69 tool=$1 72 if [[ -z "$tool" ]]; then 75 elif [[ "$tool" == "xcodebuild" ]]; then 78 elif [[ "$tool" == "make" ]]; then 82 echo "Warning: unknown build system '$tool'" 1>&2 97 eval $tool $dry_run $set_compiler $@ 2>/dev/null | 109 if [[ "$tool" != "xcodebuild" ]]; then
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | forwarder.py | 112 def Map(port_pairs, device, tool=None): argument 128 if not tool: 129 tool = base_tool.BaseTool() 131 instance = Forwarder._GetInstanceLocked(tool) 132 instance._InitDeviceLocked(device, tool) 158 instance._KillDeviceLocked(device, tool) 239 tool = base_tool.BaseTool() 240 instance._KillDeviceLocked(device, tool) 263 def _GetInstanceLocked(tool): argument 273 Forwarder._instance = Forwarder(tool) [all …]
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | BuildDependencyGenerator.java | 28 package org.antlr.tool; 80 protected Tool tool; field in BuildDependencyGenerator 85 public BuildDependencyGenerator(Tool tool, String grammarFileName) in BuildDependencyGenerator() argument 87 this.tool = tool; in BuildDependencyGenerator() 89 grammar = tool.getRootGrammar(grammarFileName); in BuildDependencyGenerator() 91 generator = new CodeGenerator(tool, grammar, language); in BuildDependencyGenerator() 100 File outputDir = tool.getOutputDirectory(grammarFileName); in getGeneratedFileList() 116 files.add(new File(tool.getOutputDirectory(), generator.getVocabFileName())); in getGeneratedFileList() 146 outputDir = tool.getOutputDirectory(g.getFileName()); in getGeneratedFileList() 170 String libdir = tool.getLibraryDirectory(); in getDependenciesFileList() [all …]
|
/external/r8/tools/ |
D | create_art_tests.py | 54 def write_file(toolchain, tool, class_name, contents): argument 55 file_name = join(OUTPUT_DIR, toolchain, tool, class_name + ".java") 65 for tool in TOOLS: 66 if tool == "d8" and toolchain == "none": 69 tool_enum = upper(tool) 73 compilerUnderTest=tool, 77 write_file(toolchain, tool, class_name, contents)
|
/external/skia/gn/toolchain/ |
D | BUILD.gn | 53 tool("asm") { 65 tool("cc") { 80 tool("cxx") { 95 tool("alink") { 112 tool("solink") { 142 tool("link") { 161 tool("stamp") { 166 tool("copy") { 181 tool("cc") { 191 tool("cxx") { [all …]
|
/external/compiler-rt/lib/esan/ |
D | esan_flags.inc | 22 // Cross-tool options 26 "The number of bytes in a cache line. For the working-set tool, this " 31 // Working set tool options 35 "Working set tool: whether to sample snapshots during a run.") 41 "Working set tool: sampling frequency in milliseconds.") 46 ESAN_FLAG(int, snapshot_step, 2, "Working set tool: the log of the sampling " 50 // Cache Fragmentation tool options 55 ESAN_FLAG(int, report_threshold, 1<<10, "Cache-frag tool: the struct difference"
|
/external/libyuv/files/tools_libyuv/valgrind/ |
D | libyuv_tests.sh | 29 tool="memcheck" # Default to memcheck. 34 tool="$2" 36 elif [[ "$1" =~ --tool=(.*) ]] 38 tool="${BASH_REMATCH[1]}" 45 case "$tool" in
|
/external/webrtc/tools/valgrind-webrtc/ |
D | webrtc_tests.sh | 28 tool="memcheck" # Default to memcheck. 33 tool="$2" 35 elif [[ "$1" =~ --tool=(.*) ]] 37 tool="${BASH_REMATCH[1]}" 45 case "$tool" in
|
/external/abi-compliance-checker/ |
D | README | 2 …ABI Compliance Checker (ABICC) - a tool for checking backward binary and source-level compatibilit… 4 …The tool checks header files and shared objects of old and new versions and analyzes changes in AP… 6 …The tool is intended for developers of software libraries and Linux maintainers who are interested… 8 …The tool is developed by Andrey Ponomarenko. You can order additional reports for visualization of… 10 …The tool is a core of the ABI Tracker and Upstream Tracker projects: https://abi-laboratory.pro/tr… 28 using the ABI Dumper (https://github.com/lvc/abi-dumper) tool: 34 additional -public-headers option of the ABI Dumper tool. 61 The tool is tested properly in the ABI Tracker and Upstream Tracker
|
/external/swiftshader/third_party/subzero/crosstest/ |
D | lit.cfg | 14 for tool in pnaclbintools: 16 # Extract the tool name from the pattern. This relies on the tool 22 tool) 23 config.substitutions.append((tool, substitution))
|
/external/r8/src/test/java/com/android/tools/r8/ |
D | R8RunExamplesTest.java | 124 DexTool tool, CompilerUnderTest compiler, CompilationMode mode, String clazz) { in makeTest() argument 126 return new String[]{pkg, tool.name(), compiler.name(), mode.name(), clazz}; in makeTest() 132 private final DexTool tool; field in R8RunExamplesTest 140 String tool, in R8RunExamplesTest() argument 145 this.tool = DexTool.valueOf(tool); in R8RunExamplesTest() 152 if (tool == DexTool.NONE) { in getInputFile() 155 assert tool == DexTool.DX; in getInputFile() 227 if (condition != null && condition.test(tool, compiler, version, mode)) { in outputIsIdentical() 250 return condition == null || !condition.test(tool, compiler, version, mode); in shouldMatchJVMOutput()
|
/external/clang/docs/ |
D | LibTooling.rst | 6 This document will provide a basic walkthrough of how to write a tool using 40 Writing a standalone tool 44 possibly break, it's time to create a standalone tool. For a standalone tool 69 static llvm::cl::OptionCategory MyToolCategory("my-tool options"); 89 // A clang tool can run over a number of sources in the same process... 95 // the tool constructor. 104 Putting it together --- the first tool 107 Now we combine the two previous steps into our first real tool. A more advanced 108 version of this example tool is also checked into the clang tree at 125 static cl::OptionCategory MyToolCategory("my-tool options"); [all …]
|
/external/llvm/docs/CommandGuide/ |
D | bugpoint.rst | 1 bugpoint - automatic test case reduction tool 48 **--tool-args** *tool args* 50 Pass all arguments specified after **--tool-args** to the LLVM tool under test 56 bugpoint [bugpoint args] --tool-args -- [tool args] 58 The "``--``" right after the **--tool-args** option tells **bugpoint** to 59 consider any options starting with "``-``" to be part of the **--tool-args** 62 **--safe-tool-args** *tool args* 64 Pass all arguments specified after **--safe-tool-args** to the "safe" execution 65 tool. 67 **--gcc-tool-args** *gcc tool args* [all …]
|
/external/compiler-rt/test/sanitizer_common/ |
D | CMakeLists.txt | 16 # Create a separate config for each tool we support. 17 foreach(tool ${SUPPORTED_TOOLS}) 18 string(TOUPPER ${tool} tool_toupper) 20 list(APPEND SANITIZER_COMMON_TEST_DEPS ${tool}) 28 set(SANITIZER_COMMON_LIT_TEST_MODE ${tool}) 38 set(CONFIG_NAME ${tool}-${arch}-${OS_NAME})
|
/external/valgrind/perf/ |
D | vg_perf.in | 73 --outer-tool: tool to use by the outer valgrind (default cachegrind). 74 --outer-args: use this as outer tool args. If the outer args are starting 163 } elsif ($arg =~ /^--outer-tool=(.*)$/) { 320 foreach my $tool (@tools) { 322 my $tool_abbrev = $tool; 350 . "--command-line-only=yes --tool=$tool $extraopts -q " 380 if (not defined $first_tTool{$tool}) { 381 $first_tTool{$tool} = $tTool; 384 my $speedup = 100 - (100 * $tTool / $first_tTool{$tool});
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | bugpoint.pod | 5 bugpoint - automatic test case reduction tool 48 =item B<--tool-args> I<tool args> 50 Pass all arguments specified after --tool-args to the LLVM tool under test 54 bugpoint [bugpoint args] --tool-args -- [tool args] 56 The "--" right after the B<--tool-args> option tells B<bugpoint> to consider any 57 options starting with C<-> to be part of the B<--tool-args> option, not as 60 =item B<--safe-tool-args> I<tool args> 62 Pass all arguments specified after B<--safe-tool-args> to the "safe" execution 63 tool. 65 =item B<--gcc-tool-args> I<gcc tool args> [all …]
|
/external/curl/tests/data/ |
D | test500 | 32 # tool is what to use instead of 'curl' 33 <tool> 35 </tool> 38 simple libcurl HTTP GET tool
|
/external/harfbuzz_ng/test/api/ |
D | Makefile.am | 101 check-tool: 106 check-tool-raw: 114 $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool-raw TOOL="$(GTESTER) --verbose --keep-going" 119 --tool=memcheck --suppressions=$(srcdir)/.valgrind-suppressions \ 131 $(AM_V_at)$(MAKE) $(AM_MAKEFLGS) check-tool TOOL="valgrind $(VALGRIND_FLAGS)" \ 159 .PHONY: check-symbols check-tool check-valgrind
|