Home
last modified time | relevance | path

Searched refs:readUtf8CodePoint (Results 1 – 6 of 6) sorted by relevance

/external/okhttp/okio/okio/src/test/java/okio/
DUtf8Test.java93 buffer.readUtf8CodePoint(); in readEmptyBufferThrowsEofException()
102 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readLeadingContinuationByteReturnsReplacementCharacter()
110 buffer.readUtf8CodePoint(); in readMissingContinuationBytesThrowsEofException()
121 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readTooLargeCodepointReturnsReplacementCharacter()
122 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readTooLargeCodepointReturnsReplacementCharacter()
123 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readTooLargeCodepointReturnsReplacementCharacter()
124 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readTooLargeCodepointReturnsReplacementCharacter()
125 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readTooLargeCodepointReturnsReplacementCharacter()
133 assertEquals(Buffer.REPLACEMENT_CHARACTER, buffer.readUtf8CodePoint()); in readNonContinuationBytesReturnsReplacementCharacter()
134 assertEquals(0x20, buffer.readUtf8CodePoint()); // Non-continuation character not consumed. in readNonContinuationBytesReturnsReplacementCharacter()
[all …]
DBufferedSourceTest.java749 assertEquals(0x7f, source.readUtf8CodePoint()); in codePoints()
752 assertEquals(0x07ff, source.readUtf8CodePoint()); in codePoints()
755 assertEquals(0xffff, source.readUtf8CodePoint()); in codePoints()
758 assertEquals(0x10ffff, source.readUtf8CodePoint()); in codePoints()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DWebPlatformUrlTestData.java118 int c = in.readUtf8CodePoint();
124 switch (in.readUtf8CodePoint()) {
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java187 int readUtf8CodePoint() throws IOException; in readUtf8CodePoint() method
DRealBufferedSource.java206 @Override public int readUtf8CodePoint() throws IOException { in readUtf8CodePoint() method in RealBufferedSource
218 return buffer.readUtf8CodePoint(); in readUtf8CodePoint()
DBuffer.java630 @Override public int readUtf8CodePoint() throws EOFException {