Searched defs:col (Results 1 - 8 of 8) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java27 Collection<Integer> col; // must contain the Integers 0 to 99 field in class:Support_CollectionTest
35 col = c;
40 new Support_UnmodifiableCollectionTest("", col).runTest();
49 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
51 assertTrue("CollectionTest - b) add did not work", col
55 assertTrue("CollectionTest - a) remove did not work", col
57 assertTrue("CollectionTest - b) remove did not work", !col
61 assertTrue("CollectionTest - a) addAll failed", col
63 assertTrue("CollectionTest - b) addAll failed", col
67 assertTrue("CollectionTest - a) containsAll failed", col
[all...]
H A DSupport_UnmodifiableCollectionTest.java29 Collection<Integer> col; field in class:Support_UnmodifiableCollectionTest
40 col = c;
47 assertTrue("UnmodifiableCollectionTest - should contain 0", col
49 assertTrue("UnmodifiableCollectionTest - should contain 50", col
51 assertTrue("UnmodifiableCollectionTest - should not contain 100", !col
61 col.containsAll(hs));
65 !col.containsAll(hs));
68 assertTrue("UnmodifiableCollectionTest - should not be empty", !col
72 Iterator<Integer> it = col.iterator();
89 + col
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DConcurrentModificationExceptionTest.java29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier
34 col = c;
44 col.add(someItem);
45 col.remove(someItem);
H A DCollectionsTest.java88 Collection col; field in class:CollectionsTest.SynchCollectionChecker
108 synchronized (col) {
109 if (!(col.isEmpty() || col.containsAll(normalCountingList) || col
112 col.clear();
115 col.addAll(offsetCountingList);
117 col.addAll(normalCountingList);
127 col = c;
135 col
[all...]
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharset_TestGenerator.java104 int row = 0, col = 0; field in class:Charset_TestGenerator.CodesGenerator
118 col++;
119 if (col == 16) {
122 col = 0;
139 col++;
140 if (col == 80) {
143 col = 0;
153 buf[col] = (char) code;
156 col++;
157 if (col
190 int row = 0, col = 0; field in class:Charset_TestGenerator.Dumper
[all...]
H A DOldCharset_AbstractTest.java275 int row = 0, col = 0; field in class:OldCharset_AbstractTest.CodesGenerator
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DX509CertificateTest.java820 Collection<List<?>> col = c.getSubjectAlternativeNames();
822 checkAlternativeNames(f, col);
825 private void checkAlternativeNames(CertificateFactory f, Collection<List<?>> col) throws Exception { argument
826 assertNotNull(col);
831 col.add(new ArrayList<Object>());
843 for (List<?> item : col) {
914 Collection<List<?>> col = c.getSubjectAlternativeNames();
916 assertNotNull(f.getProvider().getName(), col);
918 assertEquals(1, col.size());
919 List<?> item = col
[all...]
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java722 // @param col
726 private static String getData(int col, int startRow) { argument
729 if (datas[i][col] != null) {
730 return datas[i][col];
735 if (datas[i][col] != null) {
736 return datas[i][col];

Completed in 709 milliseconds