Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 19 of 19) sorted by relevance

/dalvik/libcore/luni/src/test/java/tests/api/java/util/
DLinkedListTest.java40 LinkedList ll; field in LinkedListTest
55 new Support_ListTest("", ll).runTest(); in test_Constructor()
74 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll) in test_ConstructorLjava_util_Collection()
75 .equals(ll)); in test_ConstructorLjava_util_Collection()
97 ll.add(50, o = "Test"); in test_addILjava_lang_Object()
98 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll in test_addILjava_lang_Object()
101 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51])); in test_addILjava_lang_Object()
102 ll.add(50, null); in test_addILjava_lang_Object()
103 assertNull("Did not add null correctly", ll.get(50)); in test_addILjava_lang_Object()
118 ll.add(o = new Object()); in test_addLjava_lang_Object()
[all …]
DCollectionsTest.java56 private LinkedList ll; field in CollectionsTest
285 final int llSize = ll.size(); in test_binarySearchLjava_util_ListLjava_lang_Object()
293 assertTrue("Returned incorrect binary search item position", ll in test_binarySearchLjava_util_ListLjava_lang_Object()
294 .get(Collections.binarySearch(ll, ll.get(counter))) == ll in test_binarySearchLjava_util_ListLjava_lang_Object()
355 Collections.copy(null, ll); in test_copyLjava_util_ListLjava_util_List()
360 Collections.copy(ll, null); in test_copyLjava_util_ListLjava_util_List()
364 final int llSize = ll.size(); in test_copyLjava_util_ListLjava_util_List()
365 ll.set(25, null); in test_copyLjava_util_ListLjava_util_List()
372 Collections.copy(al, ll); in test_copyLjava_util_ListLjava_util_List()
375 .get(counter) == ll.get(counter)); in test_copyLjava_util_ListLjava_util_List()
[all …]
DAbstractListTest.java189 List ll = new LinkedList(); in test_subListII() local
191 ll.add(new Integer(i)); in test_subListII()
195 !(ll.subList(3, 7) instanceof RandomAccess)); in test_subListII()
DEnumSetTest.java50 … J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, enumConstant
58 …, W{}, X{}, Y{}, Z{}, aa{}, bb{}, cc{}, dd{}, ee{}, ff{}, gg{}, hh{}, ii{}, jj{}, kk{}, ll{}, mm{}, enumConstant
62 …K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, mm, enumConstant
696 result = set.contains(EnumFoo.ll); in test_contains_LObject()
742 result = hugeSet.contains(HugeEnum.ll); in test_contains_LObject()
/dalvik/tests/003-omnibus-opcodes/src/
DIntMath.java440 static void jlmTests(int ii, long ll) { in jlmTests() argument
448 assert(Math.abs(ll) == ll); in jlmTests()
449 assert(Math.abs(-ll) == ll); in jlmTests()
450 assert(Math.min(ll, -5L) == -5L); in jlmTests()
451 assert(Math.max(ll, -5L) == ll); in jlmTests()
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoDecoder.java427 LocalList ll = code.getLocals(); in validateEncode() local
434 isStatic, ref, file, pl, ll); in validateEncode()
439 ll.debugPrint(System.err, " "); in validateEncode()
447 DexFile file, PositionList pl, LocalList ll) { in validateEncode0() argument
520 int origSz = ll.size(); in validateEncode0()
525 LocalList.Entry origEntry = ll.get(i); in validateEncode0()
/dalvik/vm/mterp/c/
Dheader.c163 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
168 return conv.ll; in getLongFromArray()
182 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
185 conv.ll = val; in putLongToArray()
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
DListIteratorTest.java307 LinkedList ll = new LinkedList(); in setUp() local
309 ll.add(objArray[i]); in setUp()
311 l = ll.listIterator(); in setUp()
DCollectionsTest.java85 LinkedList<String> ll = lls; in test_binarySearchLjava_util_ListLjava_lang_ObjectLjava_util_Comparator() local
88 Collections.binarySearch(ll, new Integer(10), null); in test_binarySearchLjava_util_ListLjava_lang_ObjectLjava_util_Comparator()
124 LinkedList ll = lls; in test_binarySearchLjava_util_ListLjava_lang_Object() local
127 Collections.binarySearch(ll, new Integer(10)); in test_binarySearchLjava_util_ListLjava_lang_Object()
/dalvik/vm/
DInlineNative.c416 s8 ll; in javaLangMath_abs_long() member
421 s8 val = convert.ll; in javaLangMath_abs_long()
451 s8 ll; in javaLangMath_abs_double() member
458 convert.ll &= 0x7fffffffffffffffULL; in javaLangMath_abs_double()
/dalvik/vm/mterp/out/
DInterpC-armv7-a.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-armv5te-vfp.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-armv5te.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-armv4t.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-x86.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-portstd.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-allstubs.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpC-portdbg.c170 union { s8 ll; u4 parts[2]; } conv; in getLongFromArray() member
175 return conv.ll; in getLongFromArray()
189 union { s8 ll; u4 parts[2]; } conv; in putLongToArray() member
192 conv.ll = val; in putLongToArray()
DInterpAsm-x86.S892 # less frequent path, so we'll redo some work