/tools/repohooks/rh/ |
D | hooks.py | 371 found = [] 374 found.append(line) 376 if not found: 395 found = [] 398 found.append(line) 400 if not found: 403 elif len(found) > 1: 508 found = [] 511 found.append(line) 513 if not found: [all …]
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | ZFile.java | 579 FileUseMapEntry<StoredEntry> found = entries.get(path); in get() local 580 if (found == null) { in get() 584 return found.getStore(); in get() 632 FileUseMapEntry<?> found = map.at(start); in readData() 633 Verify.verifyNotNull(found); in readData() 637 if (!found.isFree() || found.getEnd() < end) { in readData() 638 if (found.isFree()) { in readData() 639 found = map.after(found); in readData() 640 Verify.verify(found != null && !found.isFree()); in readData() 643 Object foundEntry = found.getStore(); in readData() [all …]
|
D | ExtraField.java | 124 List<Segment> found = in getSingleSegment() local 128 if (found.isEmpty()) { in getSingleSegment() 130 } else if (found.size() == 1) { in getSingleSegment() 131 return found.get(0); in getSingleSegment() 133 throw new IOException(found.size() + " segments with header ID " + headerId + "found"); in getSingleSegment()
|
/tools/asuite/aidegen/lib/ |
D | ide_util.py | 546 found = self._get_preferred_version() 547 if found: 548 logging.debug('IDE internal installed path: %s.', found) 549 return found 761 found = self._get_preferred_version() 762 if found: 763 logging.debug('IDE internal installed path: %s.', found) 764 return found
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | PsiCompilationUnit.kt | 179 var found: MutableList<String>? = null in getImportStatements() variable 182 if (found == null) { in getImportStatements() 183 found = mutableListOf() in getImportStatements() 185 found.add(name) in getImportStatements() 188 found?.let { in getImportStatements() 189 for (name in found) { in getImportStatements()
|
D | PsiTypeItem.kt | 655 var found = false in typeParameterList() variable 658 found = true in typeParameterList() 663 if (!found) { in typeParameterList()
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | logserial.py | 75 found = True 79 found *= True 81 found = False 83 found = True if found == 1 else False 84 if found:
|
/tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/ |
D | XmlSuiteResultFormatterTest.java | 752 boolean found = false; in assertXmlContainsValue() 757 found = true; in assertXmlContainsValue() 766 found); in assertXmlContainsValue() 777 boolean found = false; in assertXmlContainsAttribute() 783 found = true; in assertXmlContainsAttribute() 792 found); in assertXmlContainsAttribute()
|
/tools/metalava/src/main/java/com/android/tools/metalava/ |
D | AnnotationsMerger.kt | 605 var found = false in createAnnotation() variable 621 if (!found && reflectionFields != null) { in createAnnotation() 646 found = true in createAnnotation() 650 if (!found) { in createAnnotation()
|
D | ApiLint.kt | 2329 val found = mutableMapOf<String, MethodItem>() in <lambda>() constant 2356 found[name] = method in <lambda>() 2361 for (f in found.values) { in <lambda>() 2445 var found = false in <lambda>() variable 2449 found = true in <lambda>() 2450 } else if (found) { in <lambda>()
|
D | Driver.kt | 1228 val found = dirToRootCache[parent.path] in extractRoots() constant 1229 if (found != null) { in extractRoots()
|
/tools/tradefederation/contrib/src/com/android/tradefed/ |
D | Sl4aBluetoothDiscovery.java | 112 boolean found = false; in run() 116 found = true; in run() 120 if (!found) { in run()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | ZipUtilFuncTest.java | 174 boolean found = false; in validateCentralDirectoryInfos() 179 found = true; in validateCentralDirectoryInfos() 183 Assert.assertTrue(found); in validateCentralDirectoryInfos()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/rust/ |
D | RustBinaryTest.java | 128 boolean found = false; in doRunAllTestsInSubdirectory() 132 found = true; in doRunAllTestsInSubdirectory() 135 return found; in doRunAllTestsInSubdirectory()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/ |
D | TextTypeItem.kt | 313 var found = false in markRecent() variable 317 found = true in markRecent() 323 if (!found) { in markRecent()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/ |
D | MethodItem.kt | 169 val found = method.findPredicateSuperMethod(predicate) in <lambda>() constant 170 if (found != null) { in <lambda>() 171 return found in <lambda>()
|
D | ModifierList.kt | 558 var found = false in <lambda>() variable 562 found = true in <lambda>() 566 if (found) { in <lambda>()
|
/tools/repohooks/tools/ |
D | checkpatch.pl | 3796 my $found = $1; 3797 if ($sline =~ /\bconst\s+\Q$found\E\s+const\b\s*\*/) { 3799 "'const $found const *' should probably be 'const $found * const'\n" . $herecurr); 3800 } elsif ($sline !~ /\bconst\s+\Q$found\E\s+const\s+\w+\s*\[/) { 3802 "'const $found const' should probably be 'const $found'\n" . $herecurr);
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiScannerBssidTest.py | 232 found = False 470 found = self.check_bssid_in_found_result( 473 asserts.assert_true(found,
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/ |
D | ClangCodeCoverageListenerTest.java | 415 boolean found = false; in checkListContainsSuffixes() 418 found = true; in checkListContainsSuffixes() 423 if (!found) { in checkListContainsSuffixes()
|
/tools/external_updater/ |
D | README.md | 31 repository. The full definition can be found 93 new version is found. The tool will download the tarball and overwrite the
|
/tools/tradefederation/core/tests/res/testtype/ |
D | python_output2.txt | 1 No handlers could be found for logger "oauth2client.contrib.multistore_file" 209 Test GetUrl when object is not found. ... ok
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
D | AlignmentTest.java | 62 byte found[] = readSegment(newZFile, 1024, testBytes.length); in addAlignedFile() 63 assertArrayEquals(testBytes, found); in addAlignedFile()
|
/tools/test/connectivity/acts_tests/tests/google/tel/lab/ |
D | TelLabNeighborCellTest.py | 571 found = False 574 found = True 579 if not found:
|
/tools/metalava/ |
D | README.md | 146 not just nullness annotations found in the source code and annotations merged 322 (2) There's a lot of logic for deciding whether code found in the source tree
|