Searched refs:index (Results 201 - 215 of 215) sorted by relevance

123456789

/libcore/luni/src/test/java/libcore/java/sql/
H A DOldPreparedStatementTest.java1323 assertEquals("bad parameter index", sqle.getMessage());
1331 assertEquals("bad parameter index", sqle.getMessage());
1950 // expected index out of bounds
2283 public Object getArray(long index, int count) throws SQLException { argument
2287 public Object getArray(long index, int count, Map<String, Class<?>> map) argument
2308 public ResultSet getResultSet(long index, int count) argument
2313 public ResultSet getResultSet(long index, int count, argument
/libcore/luni/src/main/java/android/system/
H A DOs.java256 public static String if_indextoname(int index) { return Libcore.os.if_indextoname(index); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java112 public String if_indextoname(int index) { return os.if_indextoname(index); } argument
H A DLinux.java103 public native String if_indextoname(int index); argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1227 int index = 0; local
1241 env->SetObjectArrayElement(result, index, inetAddress.get());
1242 ++index;
1461 int index = 0; local
1462 for (ifaddrs* ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next, ++index) {
1525 env->SetObjectArrayElement(result, index, o);
1531 static jstring Linux_if_indextoname(JNIEnv* env, jobject, jint index) { argument
1533 char* name = if_indextoname(index, buf);
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DParameterTest.java988 ParameterTestHelper getParameterTestHelper(int index) { argument
989 return new ParameterTestHelper(executable.getParameters()[index]);
/libcore/ojluni/src/main/java/java/text/
H A DDecimalFormat.java743 * The method attempts to parse text starting at the index given by
745 * If parsing succeeds, then the index of <code>pos</code> is updated
746 * to the index after the last character used (parsing does not necessarily
750 * If an error occurs, then the index of <code>pos</code> is not
751 * changed, the error index of <code>pos</code> is set to the index of
790 * @param pos A <code>ParsePosition</code> object with index and error
791 * index information as described above.
799 if (pos.index < 0 || pos.index >
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DArrays.java64 * <a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/collections/index.html">
166 * to be sorted extends from the index {@code fromIndex}, inclusive, to
167 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
177 * @param fromIndex the index of the first element, inclusive, to be sorted
178 * @param toIndex the index of the last element, exclusive, to be sorted
206 * to be sorted extends from the index {@code fromIndex}, inclusive, to
207 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
217 * @param fromIndex the index of the first element, inclusive, to be sorted
218 * @param toIndex the index of the last element, exclusive, to be sorted
246 * to be sorted extends from the index {
3768 get(int index) argument
3773 set(int index, E element) argument
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DObjectInputStream.java3513 public int get(int index) { argument
3514 if (index >= size) {
3517 return list[index];
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DTransformers.java253 // Read the array object and the index from the stack frame.
255 final int index = reader.nextInt();
261 writer.putNextReference(array[index], arrayClass.getComponentType());
282 // Read the array object, index and the value to write from the stack frame.
284 final int index = reader.nextInt();
287 array[index] = value;
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DArraysTest.java1624 assertTrue(array[i - 1].index < array[i].index);
1632 public int index; field in class:ArraysTest.Element
1638 index = count++;
1992 private void orderFail(int index, String value1, String value2) { argument
1993 fail("Array is not sorted at " + index + "-th position: " + value1 + " and " + value2);
H A DScannerTest.java5647 for (int index = 0; index < 5; index++) {
5648 String line = "line" + index + "\n";
5655 assertEquals(index + 1, result.size());
/libcore/luni/src/test/java/libcore/java/util/
H A DCollectionsTest.java276 int index = Collections.binarySearch(list, 9, new Comparator<Integer>() {
289 assertEquals(1, index);
/libcore/luni/src/test/java/libcore/javax/crypto/
H A DCipherTest.java4565 final int index = keysize - SMALLEST_KEY_SIZE;
4567 keys[index] = kg.generateKey();
4590 final int index = keysize - SMALLEST_KEY_SIZE;
4591 final SecretKey sk = keys[index];
4606 if (expected[index] == null) {
4607 expected[index] = Arrays.toString(cipherText);
4610 + " for key size " + keysize, expected[index],

Completed in 436 milliseconds

123456789