/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | GoogleBenchmarkTest.java | 150 private void doRunAllTestsInSubdirectory(String root, ITestDevice testDevice, in doRunAllTestsInSubdirectory() argument 152 if (testDevice.isDirectory(root)) { in doRunAllTestsInSubdirectory() 154 for (String child : testDevice.getChildren(root)) { in doRunAllTestsInSubdirectory() 155 doRunAllTestsInSubdirectory(root + "/" + child, testDevice, listener); in doRunAllTestsInSubdirectory() 160 String rootEntry = root.substring(root.lastIndexOf("/") + 1); in doRunAllTestsInSubdirectory() 164 testDevice.executeShellCommand(String.format("chmod 755 %s", root)); in doRunAllTestsInSubdirectory() 165 if (shouldSkipFile(root)) { in doRunAllTestsInSubdirectory() 171 int numTests = countExpectedTests(testDevice, root); in doRunAllTestsInSubdirectory() 182 String cmd = String.format("%s %s", root, GBENCHMARK_JSON_OUTPUT_FORMAT); in doRunAllTestsInSubdirectory()
|
D | GTest.java | 128 String root, ITestDevice testDevice, ITestInvocationListener listener) in doRunAllTestsInSubdirectory() argument 130 if (testDevice.isDirectory(root)) { in doRunAllTestsInSubdirectory() 132 for (String child : testDevice.getChildren(root)) { in doRunAllTestsInSubdirectory() 133 doRunAllTestsInSubdirectory(root + "/" + child, testDevice, listener); in doRunAllTestsInSubdirectory() 137 IShellOutputReceiver resultParser = createResultParser(getFileName(root), listener); in doRunAllTestsInSubdirectory() 138 if (shouldSkipFile(root)) { in doRunAllTestsInSubdirectory() 141 String flags = getAllGTestFlags(root); in doRunAllTestsInSubdirectory() 142 CLog.i("Running gtest %s %s on %s", root, flags, testDevice.getSerialNumber()); in doRunAllTestsInSubdirectory() 144 runTestXml(testDevice, root, flags, listener); in doRunAllTestsInSubdirectory() 146 runTest(testDevice, resultParser, root, flags); in doRunAllTestsInSubdirectory()
|
/tools/tradefederation/core/atest/test_finders/ |
D | tf_integration_finder.py | 96 root = tree.getroot() 97 self._load_include_tags(root) 98 return root 101 def _load_include_tags(self, root): argument 115 while i < len(root): 116 elem = root[i] 131 root[i] = node
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | ConvertJarsToSignatureFiles.kt | 43 fun convertJars(root: File) { in <lambda>() 47 root, in <lambda>() 57 val oldApiFile = File(root, "prebuilts/sdk/$api/public/api/android.txt") in <lambda>() 61 File(root, "prebuilts/sdk/$api/public/api/android.txt") in <lambda>() 99 val oldRemovedFile = File(root, "prebuilts/sdk/$api/public/api/removed.txt") in <lambda>()
|
D | Driver.kt | 421 val root = File("").absoluteFile in processFlags() constant 423 val rootPath = root.path in processFlags() 494 options.androidJarSignatureFiles?.let { root -> in processNonCodebaseFlags() method 496 ConvertJarsToSignatureFiles().convertJars(root) in processNonCodebaseFlags() 1040 val root = File("").absoluteFile in createStubFiles() constant 1041 stubWriter.writeSourceList(it, root) in createStubFiles() 1245 val root = findRoot(file) ?: continue in extractRoots() constant 1246 dirToRootCache[parent.path] = root in extractRoots() 1248 if (!sourceRoots.contains(root)) { in extractRoots() 1249 sourceRoots.add(root) in extractRoots()
|
D | ComparisonVisitor.kt | 394 val root = ItemTree(null) in createTree() constant 395 stack.push(root) in createTree() 420 ensureSorted(root.children) in createTree() 421 return root.children in createTree()
|
D | Reporter.kt | 238 val root: VirtualFile? = StandardFileSystems.local().findFileByPath(rootFolder.path) in toString() constant 239 … if (root != null) VfsUtilCore.getRelativePath(virtualFile, root) ?: file.path else file.path in toString()
|
D | StubWriter.kt | 70 fun writeSourceList(target: File, root: File?) { in writeSourceList() 72 val contents = if (root != null) { in writeSourceList() 73 val path = root.path.replace('\\', '/') + "/" in writeSourceList()
|
/tools/tradefederation/core/atest/docs/ |
D | developer_workflow.md | 56 (path relative to android repo root) 71 atest root dir: `./run_atest_unittests.sh`. Alternatively, you can 84 to android repo root). 120 (from android repo root) 129 (path relative to android repo root) 146 (path relative to android repo root)
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | GeekbenchTest.java | 165 JSONObject root = new JSONObject(tokener); in parseResultJSON() local 166 String overallScore = root.getString("score"); in parseResultJSON() 169 String overallScoreMulticore = root.getString("multicore_score"); in parseResultJSON() 173 JSONArray arr = root.getJSONArray("sections"); in parseResultJSON()
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | latency.py | 69 root = ET.parse(xml_file).getroot() 70 event_pairs = root.findall('event-pair') 76 start_evt = root.find( 78 end_evt = root.find(
|
/tools/test/connectivity/acts/framework/tests/ |
D | acts_import_unit_test.py | 126 for root, _, files in os.walk(base_dir): 128 full_path = os.path.join(root, f) 134 path = os.path.relpath(os.path.join(root, f), os.getcwd())
|
/tools/asuite/aidegen_functional_test/ |
D | aidegen_functional_test_main.py | 104 root = tree.getroot() 105 for element in root.iter('sourceFolder'): 109 for element in root.iter('root'):
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
D | ZipToolsTest.java | 108 StoredEntry root = zfile.get(name); in assertFileInZip() local 109 assertNotNull(root); in assertFileInZip() 111 InputStream is = root.open(); in assertFileInZip()
|
/tools/repohooks/tools/ |
D | checkpatch.pl | 42 my $root; 213 'root=s' => \$root, 315 if (defined $root) { 316 if (!top_of_kernel_tree($root)) { 317 die "$P: $root: --root does not point at a valid tree\n"; 321 $root = '.'; 324 $root = $1; 328 if (!defined $root) { 841 return 0 if (!$tree || !(-e "$root/scripts/get_maintainer.pl")); 843 …my $status = `perl $root/scripts/get_maintainer.pl --status --nom --nol --nogit --nogit-fallback -… [all …]
|
/tools/external_updater/ |
D | archive_utils.py | 127 for root, dirs, files in os.walk(path): 129 return root
|
/tools/dexter/dexter/ |
D | dexter_tests.py | 17 data_root = args.root or 'tools/dexter/testdata' 21 if args.root is None:
|
/tools/asuite/aidegen/lib/ |
D | ide_util.py | 669 for root, _, files in os.walk(top): 670 logging.debug('Search all files under %s to get %s, %s.', top, root, 674 os.path.join(root, file_)) 675 yield os.path.join(root, file_)
|
/tools/test/connectivity/tools/ |
D | proto_check.py | 71 for root, _, filenames in os.walk(os.path.dirname(proto_file)): 74 gen_file = os.path.join(root, filename)
|
/tools/test/connectivity/acts/framework/acts/libs/uicd/ |
D | uicd_cli.py | 80 for (root, _, files) in os.walk(path, onerror=_raise): 82 workflow_files.append(os.path.join(root, file))
|
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/ |
D | TestMapping.java | 81 JSONObject root = new JSONObject(tokener); in TestMapping() local 82 Iterator<String> testGroups = (Iterator<String>) root.keys(); in TestMapping() 92 JSONArray arr = root.getJSONArray(group); in TestMapping()
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | ConfigurationFactory.java | 287 private String getAbsolutePath(String root, String name) throws ConfigurationException { in getAbsolutePath() argument 290 if (root == null) { in getAbsolutePath() 293 root = System.getProperty("user.dir"); in getAbsolutePath() 295 file = new File(root, name); in getAbsolutePath()
|
/tools/test/connectivity/acts/framework/acts/ |
D | tracelogger.py | 40 self.root = et.Element('logger') 80 self.cat = et.SubElement(self.root, 'category', name='general', id='gen')
|
/tools/tradefederation/core/atest/ |
D | cli_translator.py | 269 for root, _, filenames in os.walk(path): 271 test_mapping_files.append(os.path.join(root, filename))
|
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/ |
D | MCAP_PTS_INSTRUCTIONS | 23 From AOSP root, assuming your target is already built. 26 adb root
|