/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | UnmodifiableBitSet.java | 43 public void clear(int fromIndex, int toIndex) { in clear() 53 public void flip(int fromIndex, int toIndex) { in flip() 68 public void set(int fromIndex, int toIndex) { in set() 73 public void set(int fromIndex, int toIndex, boolean value) { in set()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/chunk/ |
D | BaseMediaChunkIterator.java | 26 private final long fromIndex; field in BaseMediaChunkIterator 38 public BaseMediaChunkIterator(long fromIndex, long toIndex) { in BaseMediaChunkIterator()
|
/external/okio/okio/src/commonMain/kotlin/okio/internal/ |
D | RealBufferedSource.kt | 311 var fromIndex = fromIndex in commonIndexOf() variable 331 var fromIndex = fromIndex in commonIndexOf() variable 347 var fromIndex = fromIndex in commonIndexOfElement() variable
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | XMLString.java | 374 public abstract int indexOf(int ch, int fromIndex); in indexOf() 416 public abstract int lastIndexOf(int ch, int fromIndex); in lastIndexOf() 482 public abstract int indexOf(String str, int fromIndex); in indexOf() 524 public abstract int lastIndexOf(String str, int fromIndex); in lastIndexOf()
|
D | XMLStringDefault.java | 440 public int indexOf(int ch, int fromIndex) in indexOf() 488 public int lastIndexOf(int ch, int fromIndex) in lastIndexOf() 563 public int indexOf(String str, int fromIndex) in indexOf() 611 public int lastIndexOf(String str, int fromIndex) in lastIndexOf()
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | BufferedSource.java | 215 long indexOf(byte b, long fromIndex) throws IOException; in indexOf() 230 long indexOf(ByteString bytes, long fromIndex) throws IOException; in indexOf() 247 long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException; in indexOfElement()
|
D | RealBufferedSource.java | 303 @Override public long indexOf(byte b, long fromIndex) throws IOException { in indexOf() 320 @Override public long indexOf(ByteString bytes, long fromIndex) throws IOException { in indexOf() 338 @Override public long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException { in indexOfElement()
|
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/ |
D | BufferedSource.java | 217 long indexOf(byte b, long fromIndex) throws IOException; in indexOf() 232 long indexOf(ByteString bytes, long fromIndex) throws IOException; in indexOf() 249 long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException; in indexOfElement()
|
D | RealBufferedSource.java | 304 @Override public long indexOf(byte b, long fromIndex) throws IOException { in indexOf() 321 @Override public long indexOf(ByteString bytes, long fromIndex) throws IOException { in indexOf() 339 @Override public long indexOfElement(ByteString targetBytes, long fromIndex) throws IOException { in indexOfElement()
|
/external/mockito/src/test/java/org/mockitousage/stubbing/ |
D | StubbingWithDelegateTest.java | 42 public ArrayList<T> subList(int fromIndex, int toIndex) { in subList() 52 public Collection<T> subList(int fromIndex, int toIndex) { in subList()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/ |
D | Arrays.java | 269 public static void fill(boolean[] a, int fromIndex, int toIndex, boolean val) in fill() 282 public static void fill(byte[] a, int fromIndex, byte val) in fill() 287 public static void fill(byte[] a, int fromIndex, int toIndex, byte val) in fill() 297 public static void fill(char[] a, int fromIndex, int toIndex, char val) in fill() 310 public static void fill(int[] a, int fromIndex, int val) in fill() 315 public static void fill(int[] a, int fromIndex, int toIndex, int val) in fill() 328 public static void fill(long[] a, int fromIndex, long val) in fill() 333 public static void fill(long[] a, int fromIndex, int toIndex, long val) in fill() 343 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) in fill() 356 public static void fill(short[] a, int fromIndex, short val) in fill() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | Arrays.java | 269 public static void fill(boolean[] a, int fromIndex, int toIndex, boolean val) in fill() 282 public static void fill(byte[] a, int fromIndex, byte val) in fill() 287 public static void fill(byte[] a, int fromIndex, int toIndex, byte val) in fill() 297 public static void fill(char[] a, int fromIndex, int toIndex, char val) in fill() 310 public static void fill(int[] a, int fromIndex, int val) in fill() 315 public static void fill(int[] a, int fromIndex, int toIndex, int val) in fill() 328 public static void fill(long[] a, int fromIndex, long val) in fill() 333 public static void fill(long[] a, int fromIndex, int toIndex, long val) in fill() 343 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) in fill() 356 public static void fill(short[] a, int fromIndex, short val) in fill() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Arrays.java | 267 public static void fill(boolean[] a, int fromIndex, int toIndex, boolean val) in fill() 280 public static void fill(byte[] a, int fromIndex, byte val) in fill() 285 public static void fill(byte[] a, int fromIndex, int toIndex, byte val) in fill() 295 public static void fill(char[] a, int fromIndex, int toIndex, char val) in fill() 308 public static void fill(int[] a, int fromIndex, int val) in fill() 313 public static void fill(int[] a, int fromIndex, int toIndex, int val) in fill() 326 public static void fill(long[] a, int fromIndex, long val) in fill() 331 public static void fill(long[] a, int fromIndex, int toIndex, long val) in fill() 341 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) in fill() 354 public static void fill(short[] a, int fromIndex, short val) in fill() [all …]
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | ListExtensions.cs | 206 public static IList subList( this IList list, int fromIndex, int toIndex ) in subList() 217 public static IList<T> subList<T>( this IList<T> list, int fromIndex, int toIndex ) in subList() 227 public static IList<T> subList<T>( this List<T> list, int fromIndex, int toIndex ) in subList()
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XString.java | 680 public int indexOf(int ch, int fromIndex) in indexOf() 728 public int lastIndexOf(int ch, int fromIndex) in lastIndexOf() 803 public int indexOf(String str, int fromIndex) in indexOf() 851 public int lastIndexOf(String str, int fromIndex) in lastIndexOf()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | ForwardingList.java | 112 public List<E> subList(int fromIndex, int toIndex) { in subList() 213 protected List<E> standardSubList(int fromIndex, int toIndex) { in standardSubList()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingList.java | 112 public List<E> subList(int fromIndex, int toIndex) { in subList() 213 protected List<E> standardSubList(int fromIndex, int toIndex) { in standardSubList()
|
D | SingletonImmutableList.java | 63 public ImmutableList<E> subList(int fromIndex, int toIndex) { in subList()
|
D | ImmutableSortedAsList.java | 82 ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) { in subListUnchecked()
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/ |
D | StringContainsInOrder.java | 18 int fromIndex = 0; in matchesSafely() local
|
/external/guava/android/guava/src/com/google/common/primitives/ |
D | UnsignedInts.java | 230 public static void sort(int[] array, int fromIndex, int toIndex) { in sort() 259 public static void sortDescending(int[] array, int fromIndex, int toIndex) { in sortDescending()
|
D | UnsignedLongs.java | 196 public static void sort(long[] array, int fromIndex, int toIndex) { in sort() 225 public static void sortDescending(long[] array, int fromIndex, int toIndex) { in sortDescending()
|
/external/guava/guava/src/com/google/common/primitives/ |
D | UnsignedInts.java | 230 public static void sort(int[] array, int fromIndex, int toIndex) { in sort() 259 public static void sortDescending(int[] array, int fromIndex, int toIndex) { in sortDescending()
|
D | UnsignedLongs.java | 196 public static void sort(long[] array, int fromIndex, int toIndex) { in sort() 225 public static void sortDescending(long[] array, int fromIndex, int toIndex) { in sortDescending()
|
/external/okio/okio/src/commonMain/kotlin/okio/ |
D | Options.kt | 121 var fromIndex = fromIndex in <lambda>() variable
|