Home
last modified time | relevance | path

Searched defs:fromIndex (Results 1 – 25 of 150) sorted by relevance

123456

/external/cldr/tools/java/org/unicode/cldr/draft/
DUnmodifiableBitSet.java43 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/
DBaseMediaChunkIterator.java26 private final long fromIndex; field in BaseMediaChunkIterator
38 public BaseMediaChunkIterator(long fromIndex, long toIndex) { in BaseMediaChunkIterator()
/external/okio/okio/src/commonMain/kotlin/okio/internal/
DRealBufferedSource.kt311 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/
DXMLString.java374 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()
DXMLStringDefault.java440 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/
DBufferedSource.java215 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()
DRealBufferedSource.java303 @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/
DBufferedSource.java217 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()
DRealBufferedSource.java304 @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/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DArrays.java269 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/
DArrays.java269 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/
DArrays.java267 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/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingWithDelegateTest.java42 public ArrayList<T> subList(int fromIndex, int toIndex) { in subList()
52 public Collection<T> subList(int fromIndex, int toIndex) { in subList()
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXString.java680 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/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DListExtensions.cs206 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/guava/android/guava/src/com/google/common/collect/
DForwardingList.java112 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/
DForwardingList.java112 public List<E> subList(int fromIndex, int toIndex) { in subList()
213 protected List<E> standardSubList(int fromIndex, int toIndex) { in standardSubList()
DSingletonImmutableList.java63 public ImmutableList<E> subList(int fromIndex, int toIndex) { in subList()
DImmutableSortedAsList.java82 ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) { in subListUnchecked()
/external/guava/android/guava/src/com/google/common/primitives/
DUnsignedInts.java230 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()
DChars.java452 public static void sortDescending(char[] array, int fromIndex, int toIndex) { in sortDescending()
480 public static void reverse(char[] array, int fromIndex, int toIndex) { in reverse()
583 public List<Character> subList(int fromIndex, int toIndex) { in subList()
DFloats.java428 public static void sortDescending(float[] array, int fromIndex, int toIndex) { in sortDescending()
456 public static void reverse(float[] array, int fromIndex, int toIndex) { in reverse()
589 public List<Float> subList(int fromIndex, int toIndex) { in subList()
/external/guava/guava/src/com/google/common/primitives/
DUnsignedInts.java230 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()
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/
DStringContainsInOrder.java18 int fromIndex = 0; in matchesSafely() local
/external/okio/okio/src/commonMain/kotlin/okio/
DOptions.kt121 var fromIndex = fromIndex in <lambda>() variable

123456