/external/cldr/tools/java/org/unicode/cldr/util/ |
D | ChainedMap.java | 27 … private M3(Map<?, ?> map2, Constructor<Map<Object, Object>>[] constructors, int indexStart) { in M3() argument 28 super(map2, constructors, indexStart); in M3() 77 … private M4(Map<?, ?> map2, Constructor<Map<Object, Object>>[] constructors, int indexStart) { in M4() argument 78 super(map2, constructors, indexStart); in M4() 88 … return submap == null ? null : new M3<>(submap, super.mapConstructors, super.indexStart + 1); in get() 136 : new M4<>(submap, super.mapConstructors, super.indexStart + 2); in get() 175 private final int indexStart; field in ChainedMap 183 …ChainedMap(Map<?, ?> mapBase, Constructor<Map<Object, Object>>[] mapConstructors, int indexStart) { in ChainedMap() argument 186 this.indexStart = indexStart; in ChainedMap() 252 for (int i = indexStart; i < last; ++i) { in handlePut()
|
/external/perfetto/ui/src/controller/ |
D | args_parser.ts | 133 const indexStart = segment.indexOf('['); constant 134 const indexString = segment.substring(indexStart + 1, segment.length - 1); 135 return [segment.substring(0, indexStart), Math.floor(Number(indexString))];
|
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ |
D | SegmentBase.java | 71 /* package */ final long indexStart; field in SegmentBase.SingleSegmentBase 87 long indexStart, in SingleSegmentBase() argument 90 this.indexStart = indexStart; in SingleSegmentBase() 107 : new RangedUri(/* referenceUri= */ null, indexStart, indexLength); in getIndex()
|
D | Representation.java | 211 long indexStart, in newInstance() argument 218 SingleSegmentBase segmentBase = new SingleSegmentBase(rangedUri, 1, 0, indexStart, in newInstance() 219 indexEnd - indexStart + 1); in newInstance()
|
D | DashManifestParser.java | 690 long indexStart = parent != null ? parent.indexStart : 0; in parseSegmentBase() local 695 indexStart = Long.parseLong(indexRange[0]); in parseSegmentBase() 696 indexLength = Long.parseLong(indexRange[1]) - indexStart + 1; in parseSegmentBase() 709 return buildSingleSegmentBase(initialization, timescale, presentationTimeOffset, indexStart, in parseSegmentBase() 714 long presentationTimeOffset, long indexStart, long indexLength) { in buildSingleSegmentBase() argument 715 return new SingleSegmentBase(initialization, timescale, presentationTimeOffset, indexStart, in buildSingleSegmentBase()
|
/external/javapoet/src/main/java/com/squareup/javapoet/ |
D | CodeBlock.java | 257 int indexStart = p; 268 indexStart == indexEnd, "$$, $>, $<, $[, $], $W, and $Z may not have an index"); 275 if (indexStart < indexEnd) { 276 index = Integer.parseInt(format.substring(indexStart, indexEnd)) - 1; 289 index + 1, format.substring(indexStart - 1, indexEnd + 1), args.length);
|
/external/llvm-project/mlir/lib/Dialect/Affine/IR/ |
D | AffineValueMap.cpp | 65 unsigned indexStart, unsigned *indexOfMatch) { in findIndex() argument 67 for (unsigned i = indexStart; i < size; ++i) { in findIndex()
|
/external/cldr/tools/java/org/unicode/cldr/json/ |
D | Ldml2JsonConverter.java | 555 int indexStart = item.getFullPath().indexOf("@value") + 8; in convertCldrItems() local 556 int indexEnd = item.getFullPath().indexOf("]", indexStart) - 1; in convertCldrItems() 557 if (indexStart >= 0 && indexEnd >= 0 && indexEnd > indexStart) { in convertCldrItems() 558 String sub = item.getFullPath().substring(indexStart, indexEnd); in convertCldrItems()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zUpdate.cpp | 2027 size_t indexStart = db->FoToCoderUnpackSizes[folderIndex]; in Update() local 2029 for (; indexStart < indexEnd; indexStart++) in Update() 2030 newDatabase.CoderUnpackSizes.Add(db->CoderUnpackSizes[indexStart]); in Update()
|