Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 110) sorted by relevance

12345

/tools/dexter/testdata/expected/
Dhello_nodebug.verbose_cfg10 .............................. end block 1 ..............................
14 .............................. end block 2 ..............................
17 .............................. end block 3 ..............................
26 .............................. end block 1 ..............................
29 .............................. end block 2 ..............................
38 .............................. end block 1 ..............................
41 .............................. end block 2 ..............................
50 .............................. end block 1 ..............................
53 .............................. end block 2 ..............................
56 .............................. end block 3 ..............................
[all …]
Dtry_catch.verbose_cfg13 .............................. end block 1 ..............................
16 .............................. end block 2 ..............................
30 .............................. end block 1 ..............................
33 .............................. end block 2 ..............................
47 .............................. end block 1 ..............................
50 .............................. end block 2 ..............................
65 .............................. end block 1 ..............................
70 .............................. end block 2 ..............................
75 .............................. end block 3 ..............................
81 .............................. end block 4 ..............................
[all …]
Dexit_hooks.verbose_cfg13 .............................. end block 1 ..............................
16 .............................. end block 2 ..............................
30 .............................. end block 1 ..............................
33 .............................. end block 2 ..............................
36 .............................. end block 3 ..............................
40 .............................. end block 4 ..............................
44 .............................. end block 5 ..............................
47 .............................. end block 6 ..............................
50 .............................. end block 7 ..............................
54 .............................. end block 8 ..............................
[all …]
Dhello.verbose_cfg17 .............................. end block 1 ..............................
21 .............................. end block 2 ..............................
24 .............................. end block 3 ..............................
38 .............................. end block 1 ..............................
41 .............................. end block 2 ..............................
55 .............................. end block 1 ..............................
58 .............................. end block 2 ..............................
74 .............................. end block 1 ..............................
78 .............................. end block 2 ..............................
81 .............................. end block 3 ..............................
[all …]
Dentry_hooks.verbose_cfg13 .............................. end block 1 ..............................
16 .............................. end block 2 ..............................
34 .............................. end block 1 ..............................
37 .............................. end block 2 ..............................
41 .............................. end block 3 ..............................
49 .............................. end block 4 ..............................
53 .............................. end block 5 ..............................
61 .............................. end block 6 ..............................
64 .............................. end block 7 ..............................
72 .............................. end block 8 ..............................
[all …]
Dexit_hooks.compact_cfg14 .............................. end block 1 ..............................
38 .............................. end block 1 ..............................
129 .............................. end block 1 ..............................
146 .............................. end block 1 ..............................
151 .............................. end block 2 ..............................
156 .............................. end block 3 ..............................
164 .............................. end block 4 ..............................
171 .............................. end block 5 ..............................
178 .............................. end block 6 ..............................
201 .............................. end block 1 ..............................
[all …]
Dmi.compact_cfg11 .............................. end block 1 ..............................
24 .............................. end block 1 ..............................
46 .............................. end block 1 ..............................
65 .............................. end block 1 ..............................
86 .............................. end block 1 ..............................
Dhello_nodebug.compact_cfg13 .............................. end block 1 ..............................
23 .............................. end block 1 ..............................
33 .............................. end block 1 ..............................
58 .............................. end block 1 ..............................
68 .............................. end block 1 ..............................
92 .............................. end block 1 ..............................
102 .............................. end block 1 ..............................
149 .............................. end block 1 ..............................
170 .............................. end block 1 ..............................
176 .............................. end block 2 ..............................
[all …]
Dmin.verbose_cfg12 .............................. end block 1 ..............................
15 .............................. end block 2 ..............................
Dentry_hooks.compact_cfg14 .............................. end block 1 ..............................
56 .............................. end block 1 ..............................
71 .............................. end block 1 ..............................
115 .............................. end block 1 ..............................
130 .............................. end block 1 ..............................
168 .............................. end block 1 ..............................
202 .............................. end block 1 ..............................
221 .............................. end block 1 ..............................
242 .............................. end block 1 ..............................
265 .............................. end block 1 ..............................
[all …]
/tools/apksig/src/test/java/com/android/apksig/internal/util/
DChainedDataSourceTest.java52 for (int end = begin + 1; end < mChain.size(); end++) { in feedAllPossibleRanges()
53 int size = end - begin; in feedAllPossibleRanges()
57 ByteBuffer.wrap("1234567890".substring(begin, end).getBytes(US_ASCII)), in feedAllPossibleRanges()
70 for (int end = begin + 1; end < mChain.size(); end++) { in getByteBufferFromAllPossibleRanges()
71 int size = end - begin; in getByteBufferFromAllPossibleRanges()
74 ByteBuffer.wrap("1234567890".substring(begin, end).getBytes(US_ASCII)), in getByteBufferFromAllPossibleRanges()
88 for (int end = begin + 1; end < mChain.size(); end++) { in copyTo()
89 int size = end - begin; in copyTo()
96 ByteBuffer.wrap("1234567890".substring(begin, end).getBytes(US_ASCII)), in copyTo()
105 for (int end = begin + 1; end < mChain.size(); end++) { in slice()
[all …]
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DFileUseMapEntry.java58 private final long end; field in FileUseMapEntry
73 private FileUseMapEntry(long start, long end, @Nullable T store) { in FileUseMapEntry() argument
75 Preconditions.checkArgument(end > start, "end <= start"); in FileUseMapEntry()
78 this.end = end; in FileUseMapEntry()
89 public static FileUseMapEntry<Object> makeFree(long start, long end) { in makeFree() argument
90 return new FileUseMapEntry<>(start, end, null); in makeFree()
102 public static <T> FileUseMapEntry<T> makeUsed(long start, long end, @Nonnull T store) { in makeUsed() argument
104 return new FileUseMapEntry<>(start, end, store); in makeUsed()
123 return end; in getEnd()
132 return end - start; in getSize()
[all …]
DFileUseMap.java177 <T> FileUseMapEntry<T> add(long start, long end, @Nonnull T store) {
179 Preconditions.checkArgument(end > start, "end < start");
181 FileUseMapEntry<T> entry = FileUseMapEntry.makeUsed(start, end, store);
219 long end = entry.getEnd(); in split() local
223 Verify.verify(start < end, "start >= end"); in split()
224 Verify.verify(farEnd >= end, "farEnd < end"); in split()
233 if (end < farEnd) { in split()
234 result.add(FileUseMapEntry.makeFree(end, farEnd)); in split()
263 long end = entry.getEnd(); in coalesce() local
264 if (end < size) { in coalesce()
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Ddhcp_config.py34 end=None, argument
63 if end:
64 self.end = end
66 self.end = self.network[-2]
68 if not self.end in self.network:
70 if self.end.is_reserved:
72 if self.end < self.start:
77 if router >= self.start and router <= self.end:
88 if host < self.start or host > self.end:
/tools/apksig/src/main/java/com/android/apksig/
DHints.java43 final long end; field in Hints.ByteRange
45 public ByteRange(long start, long end) { in ByteRange() argument
47 this.end = end; in ByteRange()
73 if (rangeIn.end - rangeIn.start < this.offset) { in ClampToAbsoluteByteRange()
77 long rangeOutSize = Math.min(rangeIn.end - rangeOutStart, in ClampToAbsoluteByteRange()
94 out.writeInt(clampToInt(pinByteRange.end - pinByteRange.start)); in encodeByteRangeList()
112 long end = Long.parseLong(fields[2]); in parsePinPatterns() local
113 pinPatterns.add(new PatternWithRange(fields[0], start, end - start)); in parsePinPatterns()
/tools/dexter/slicer/export/slicer/
Dbuffer.h132 dex::u1* end = dex::WriteULeb128(tmp, value); in PushULeb128() local
133 assert(end > tmp && end - tmp <= 4); in PushULeb128()
134 return Push(tmp, end - tmp); in PushULeb128()
139 dex::u1* end = dex::WriteSLeb128(tmp, value); in PushSLeb128() local
140 assert(end > tmp && end - tmp <= 4); in PushSLeb128()
141 return Push(tmp, end - tmp); in PushSLeb128()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/importers/ftrace/
DFtraceLineTest.kt40 " next_pid=0 next_prio=120", line.functionDetailsReader.stringTo { end() }) in <lambda>()
56 line.functionDetailsReader.stringTo { end() }) in <lambda>()
73 " next_pid=0 next_prio=120", line.functionDetailsReader.stringTo { end() }) in <lambda>()
88 assertEquals("prev_pid=0", line.functionDetailsReader.stringTo { end() }) in <lambda>()
103 line.functionDetailsReader.stringTo { end() }) in <lambda>()
118 line.functionDetailsReader.stringTo { end() }) in <lambda>()
133 line.functionDetailsReader.stringTo { end() }) in <lambda>()
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextTypeParameterItem.kt136 var end = to in add() variable
137 while (end > i && s[end - 1].isWhitespace()) { in add()
138 end-- in add()
141 while (begin < end && s[begin].isWhitespace()) { in add()
144 if (begin == end) { in add()
147 val element = s.substring(begin, end) in add()
/tools/trebuchet/trebuchet/viewer/src/main/kotlin/traceviewer/ui/
DAnimator.kt22 fun animate(start: Double, end: Double, setter: (Double) -> Unit) { in animate()
23 AnimationPulse.register(Animator(start, end, setter)) in animate()
26 class Animator(val start: Double, val end: Double, val setter: (Double) -> Unit, val duration: Int … constant in traceviewer.ui.Animator
31 val value: Double = ((end - start) * frac) + start in animate()
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiItem.kt176 var end = documentation.lastIndexOf("*/") in addUniqueTag() variable
177 … val s = "/**\n *" + documentation.substring(3, end) + "\n * $tagSection $commentLine\n */" in addUniqueTag()
181 var end = documentation.lastIndexOf("*/") in addUniqueTag() variable
182 while (end > 0 && documentation[end - 1].isWhitespace() && in addUniqueTag()
183 documentation[end - 1] != '\n') { in addUniqueTag()
184 end-- in addUniqueTag()
188 var insertNewLine: Boolean = documentation[end - 1] != '\n' in addUniqueTag()
211 …val s = documentation.substring(0, end) + (if (insertNewLine) "\n" else "") + indent + linePrefix … in addUniqueTag()
/tools/dexter/slicer/
Ddex_ir.cc116 std::sort(items.begin(), items.end(), comp); in IndexItems()
163 std::sort(fields->begin(), fields->end(), in SortEncodedFields()
172 std::sort(methods->begin(), methods->end(), in SortEncodedMethods()
220 aParamTypes.begin(), aParamTypes.end(), bParamTypes.begin(), in Normalize()
221 bParamTypes.end(), in Normalize()
274 std::sort(elements.begin(), elements.end(), in Normalize()
284 std::sort(annotations.begin(), annotations.end(), in Normalize()
295 std::sort(field_annotations.begin(), field_annotations.end(), in Normalize()
303 std::sort(method_annotations.begin(), method_annotations.end(), in Normalize()
311 std::sort(param_annotations.begin(), param_annotations.end(), in Normalize()
/tools/test/graphicsbenchmark/functional_tests/native/
DglExtensions_test.cpp105 if (std::find(availableExts.begin(), availableExts.end(), ext) == availableExts.end()) in TEST()
135 if (std::find(availableExts.begin(), availableExts.end(), ext) == availableExts.end()) in TEST()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extractors/
DZlibExtractor.kt72 inflater.end() in <lambda>()
83 inflater.end() in close()
111 inflate.end() in extractorFor()
118 inflate.end() in extractorFor()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DAndroidBinXmlParser.java792 private static ByteBuffer sliceFromTo(ByteBuffer source, long start, long end) { in sliceFromTo() argument
796 if (end < start) { in sliceFromTo()
797 throw new IllegalArgumentException("end < start: " + end + " < " + start); in sliceFromTo()
800 if (end > source.capacity()) { in sliceFromTo()
801 throw new IllegalArgumentException("end > capacity: " + end + " > " + capacity); in sliceFromTo()
803 return sliceFromTo(source, (int) start, (int) end); in sliceFromTo()
812 private static ByteBuffer sliceFromTo(ByteBuffer source, int start, int end) { in sliceFromTo() argument
816 if (end < start) { in sliceFromTo()
817 throw new IllegalArgumentException("end < start: " + end + " < " + start); in sliceFromTo()
820 if (end > source.capacity()) { in sliceFromTo()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/
DTableBuilder.java65 Separator(char end, char pipe, String text) { in Separator() argument
66 mEnd = end; in Separator()
219 public TableBuilder addSeparator(char end, char pipe) { in addSeparator() argument
220 mTable.add(new Separator(end, pipe, "")); in addSeparator()

12345