Searched defs:value1 (Results 1 - 5 of 5) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DOrderedTable.java37 private Object value1; field in class:OrderedTable
81 value1 = value;
180 case 1: return value1;
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DX509NameElementList.java33 private String value1; field in class:X509NameElementList
91 value1 = value;
170 case 1: return value1;
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java59 * @param value1 the second value in the list
61 public static IntList makeImmutable(int value0, int value1) { argument
65 result.add(value1);
/dalvik/libcore/math/src/main/java/java/math/
H A DBigDecimal.java2849 private static int longCompareTo(long value1, long value2) { argument
2850 return value1 > value2 ? 1 : (value1 < value2 ? -1 : 0);
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DArraysTest.java2277 private void orderFail(int index, String value1, String value2) { argument
2278 fail("Array is not sorted at " + index + "-th position: " + value1 + " and " + value2);

Completed in 120 milliseconds