/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | FileUseMap.java | 306 FileUseMapEntry<?> last = map.last(); in truncate() local 307 Verify.verifyNotNull(last, "last == null"); in truncate() 308 if (last.isFree()) { in truncate() 309 internalRemove(last); in truncate() 310 size = last.getStart(); in truncate() 337 FileUseMapEntry<?> last = map.last(); in usedSize() local 338 Verify.verifyNotNull(last, "last == null"); in usedSize() 339 if (last.isFree()) { in usedSize() 340 return last.getStart(); in usedSize() 342 Verify.verify(last.getEnd() == size); in usedSize() [all …]
|
D | ZFile.java | 721 byte[] last = new byte[lastToRead]; in readEocd() 722 directFullyRead(raf.length() - lastToRead, last); in readEocd() local 739 for (int endIdx = last.length - MIN_EOCD_SIZE; endIdx >= 0 && foundEocdSignature == -1; in readEocd() 744 if (last[endIdx] == EOCD_SIGNATURE[3] in readEocd() 745 && last[endIdx + 1] == EOCD_SIGNATURE[2] in readEocd() 746 && last[endIdx + 2] == EOCD_SIGNATURE[1] in readEocd() 747 && last[endIdx + 3] == EOCD_SIGNATURE[0]) { in readEocd() 755 ByteBuffer.wrap(last, foundEocdSignature, last.length - foundEocdSignature); in readEocd()
|
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/cli/common/ |
D | Terminal.kt | 92 if (sb.last().isDigit()) sb.append(';') in attributes() 96 if (sb.last().isDigit()) sb.append(';') in attributes() 100 if (sb.last().isDigit()) sb.append(';') in attributes() 104 if (sb.last().isDigit()) sb.append(';') in attributes() 108 if (sb.last().isDigit()) sb.append(';') in attributes() 111 if (sb.last() == '[') { in attributes()
|
D | PreviouslyReleasedApi.kt | 104 override val lastSignatureFile = signatureFiles.last().file
|
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/util/ |
D | StringSearch.kt | 46 val last = lookFor.length - 1 constant in trebuchet.util.StringSearch 47 for (i in 0..last - 1) { 48 skipLut[lookFor[i].toInt() and 0xFF] = (last - i).toByte() 51 var lastPrefix = last 52 for (i in last downTo 0) { 56 suffixSkip[i] = (lastPrefix + last - i).toByte() 58 for (i in 0 until last) { 60 if(lookFor[i - suffixLength] != lookFor[last - suffixLength]) { 61 suffixSkip[last - suffixLength] = (suffixLength + last - i).toByte()
|
D | Slices.kt | 66 …NATE_DEX_OPEN_START) -> return SliceContents("Open dex file", sliceString.split(" ").last().trim()) in parseSliceName()
|
/tools/tradefederation/core/javatests/res/testtype/ |
D | python_subtest_output.txt | 7 Traceback (most recent call last): 15 Traceback (most recent call last): 23 Traceback (most recent call last): 31 Traceback (most recent call last):
|
D | python_output4.txt | 254 Traceback (most recent call last): 267 Traceback (most recent call last): 278 Traceback (most recent call last): 293 Traceback (most recent call last): 304 Traceback (most recent call last): 315 Traceback (most recent call last): 325 Traceback (most recent call last): 335 Traceback (most recent call last): 344 Traceback (most recent call last): 353 Traceback (most recent call last): [all …]
|
D | python_output1.txt | 34 Traceback (most recent call last): 43 Traceback (most recent call last):
|
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/ |
D | SchedulingSliceFragment.kt | 34 if (_slices.last().state == newState) { in switchState() 38 _slices.last().endTime = timestamp in switchState()
|
D | SchedulingProcessFragment.kt | 29 if (_slices.last().endTime == Double.MAX_VALUE) { in switchProcess() 30 _slices.last().endTime = timestamp in switchProcess()
|
D | SliceGroupBuilder.kt | 40 openSlices.last().add(builder) in endSlice()
|
/tools/dexter/slicer/ |
D | control_flow_graph.cc | 112 current_block_.region.last = nullptr; in StartBlock() 121 current_block_.region.last = instr; in EndBlock()
|
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/binarycompatibility/ |
D | BinaryCompatibilityInterfaceMethodsTest.kt | 430 … fun `Change last parameter from array type T(array) to variable arity T(elipse) (Compatible)`() { in Change last parameter from array type T(array) to variable arity T(elipse) (Compatible)() 452 …fun `Change last parameter from variable arity T(elipse) to array type T(array) (Incompatible)`() { in Change last parameter from variable arity T(elipse) to array type T(array) (Incompatible)()
|
D | BinaryCompatibilityClassMethodsAndConstructors.kt | 637 … fun `Change last parameter from array type T(array) to variable arity T(elipse) (Compatible)`() { in Change last parameter from array type T(array) to variable arity T(elipse) (Compatible)() 659 …fun `Change last parameter from variable arity T(elipse) to array type T(array) (Incompatible)`() { in Change last parameter from variable arity T(elipse) to array type T(array) (Incompatible)()
|
/tools/metalava/metalava-reporter/src/main/java/com/android/tools/metalava/reporter/ |
D | Severity.kt | 64 val UNLIMITED = values().last()
|
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/methoditem/ |
D | CommonParameterItemTest.kt | 430 fun `Test nullability of Kotlin varargs last`() { in Test nullability of Kotlin varargs last() 479 fun `Test nullability of Kotlin varargs not-last`() { in Test nullability of Kotlin varargs not-last() 514 fun `Test nullability of Kotlin varargs last in inline reified fun`() { in Test nullability of Kotlin varargs last in inline reified fun()
|
D | SourceMethodItemTest.kt | 63 val methodItem1 = classItem.methods().last() in test duplicate() for methoditem() 128 val methodItem1 = classItem.methods().last() in test inherited methods()
|
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/constructoritem/ |
D | CommonConstructorItemTest.kt | 81 .last() in Test access type parameter of outer class()
|
/tools/ndkports/buildSrc/src/main/kotlin/com/android/ndkports/ |
D | NdkVersion.kt | 46 return fromString(it.groups.last()!!.value) in fromSourcePropertiesText()
|
/tools/metalava/metalava-model-text/src/main/java/com/android/tools/metalava/model/text/ |
D | FileFormat.kt | 429 val LATEST = allDefaults.last() in <lambda>() 942 val last = last() in possibilitiesList() constant 946 append(transform(last)) in possibilitiesList()
|
/tools/metalava/metalava-model-testsuite/src/main/java/com/android/tools/metalava/model/testsuite/packageitem/ |
D | CommonPackageItemTest.kt | 87 fun `Test @hide in package info processed last`() { in Test @hide in package info processed last()
|
/tools/dexter/slicer/export/slicer/ |
D | control_flow_graph.h | 29 Instruction* last = nullptr; member
|
/tools/ndkports/buildSrc/src/test/kotlin/com/android/ndkports/ |
D | CMakeCompatibleVersionTest.kt | 109 fun `constructor requires that nulls come last`() { in constructor requires that nulls come last()
|
/tools/metalava/metalava-testing/src/test/java/com/android/tools/metalava/testing/ |
D | MutableBaselineFileTest.kt | 98 fun `Write empty after removing last failure`() { in Write empty after removing last failure()
|