/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/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/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/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/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/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/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/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/hamcrest/hamcrest-library/src/main/java/org/hamcrest/text/ |
D | StringContainsInOrder.java | 18 int fromIndex = 0; in matchesSafely() local
|
/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()
|
D | Floats.java | 418 public static void sortDescending(float[] array, int fromIndex, int toIndex) { in sortDescending() 446 public static void reverse(float[] array, int fromIndex, int toIndex) { in reverse() 579 public List<Float> subList(int fromIndex, int toIndex) { in subList()
|
/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()
|
D | Floats.java | 418 public static void sortDescending(float[] array, int fromIndex, int toIndex) { in sortDescending() 446 public static void reverse(float[] array, int fromIndex, int toIndex) { in reverse() 579 public List<Float> subList(int fromIndex, int toIndex) { in subList()
|
D | Chars.java | 452 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()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ForwardingImmutableList.java | 46 public ImmutableList<E> subList(int fromIndex, int toIndex) { in subList()
|
/external/proguard/src/proguard/ |
D | DataEntryWriterFactory.java | 45 int fromIndex, in createDataEntryWriter()
|