Home
last modified time | relevance | path

Searched refs:cs2 (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/time/format/
DDateTimeParseContext.java208 …boolean subSequenceEquals(CharSequence cs1, int offset1, CharSequence cs2, int offset2, int length… in subSequenceEquals() argument
209 if (offset1 + length > cs1.length() || offset2 + length > cs2.length()) { in subSequenceEquals()
215 char ch2 = cs2.charAt(offset2 + i); in subSequenceEquals()
223 char ch2 = cs2.charAt(offset2 + i); in subSequenceEquals()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DCodeSignerTest.java135 CodeSigner cs2 = new CodeSigner(cpath, ts); in testHashCode() local
138 assertTrue(cs1.hashCode() == cs2.hashCode()); in testHashCode()
139 assertTrue(cs2.hashCode() != cs3.hashCode()); in testHashCode()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
DCharsetDecoder2Test.java118 MockMalfunctionCharset cs2 = new MockMalfunctionCharset( in test_decodeLjava_nio_ByteBuffer() local
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 })); in test_decodeLjava_nio_ByteBuffer()
DCharsetTest.java259 Charset cs2 = Charset.forName("UTF-8"); in test_forNameLjava_lang_String() local
260 assertSame(cs1, cs2); in test_forNameLjava_lang_String()