Home
last modified time | relevance | path

Searched refs:cc (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/sun/misc/
DIOUtils.java65 int cc = is.read(output, pos, bytesToRead); in readFully() local
66 if (cc < 0) { in readFully()
76 pos += cc; in readFully()
DResource.java122 int cc = 0; in getBytes() local
124 cc = in.read(b, pos, bytesToRead); in getBytes()
129 if (cc < 0) { in getBytes()
139 pos += cc; in getBytes()
/libcore/ojluni/src/main/java/java/util/
DTreeSet.java305 Comparator<?> cc = set.comparator(); in addAll() local
307 if (cc==mc || (cc != null && cc.equals(mc))) { in addAll()
/libcore/ojluni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java121 @SuppressWarnings("unchecked") CopyOnWriteArraySet<E> cc = in CopyOnWriteArraySet() local
123 al = new CopyOnWriteArrayList<E>(cc.al); in CopyOnWriteArraySet()
/libcore/ojluni/src/main/java/sun/security/util/
DSignatureFileVerifier.java212 char cc = ext.charAt(index); in isSigningRelated() local
214 if ((cc < 'A' || cc > 'Z') && (cc < '0' || cc > '9')) { in isSigningRelated()
/libcore/ojluni/src/main/java/sun/net/www/
DParseUtil.java153 private static int escape(char[] cc, char c, int index) { in escape() argument
154 cc[index++] = '%'; in escape()
155 cc[index++] = Character.forDigit((c >> 4) & 0xF, 16); in escape()
156 cc[index++] = Character.forDigit(c & 0xF, 16); in escape()
/libcore/ojluni/annotations/hiddenapi/sun/net/www/
DParseUtil.java45 private static int escape(char[] cc, char c, int index) { in escape() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumSetTest.java45 … E, F, G, H, I, 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,… enumConstant
53 …}, O{}, P{}, Q{}, R{}, S{}, T{}, U{}, V{}, W{}, X{}, Y{}, Z{}, aa{}, bb{}, cc{}, dd{}, ee{}, ff{},… enumConstant
57 … E, F, G, H, I, 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,… enumConstant
730 set.add(EnumFoo.cc); in test_contains_LObject()
852 hugeSet.add(HugeEnum.cc); in test_containsAll_LCollection()
857 hugeSet.add(HugeEnum.cc); in test_containsAll_LCollection()
/libcore/jsr166-tests/src/test/java/jsr166/
DCountedCompleterTest.java303 void testComplete(NoopCC cc, Object x, int pendingCount) {
304 cc.setPendingCount(pendingCount);
305 cc.checkCompletes(x);
306 assertEquals(pendingCount, cc.getPendingCount());