Home
last modified time | relevance | path

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

/external/okhttp/okio/okio/src/test/java/okio/
DBufferedSourceTest.java685 long actual = source.readDecimalLong(); in assertLongDecimalString()
694 assertEquals(1234567890123456L, source.readDecimalLong()); in longDecimalStringAcrossSegment()
701 source.readDecimalLong(); in longDecimalStringTooLongThrows()
711 source.readDecimalLong(); in longDecimalStringTooHighThrows()
721 source.readDecimalLong(); in longDecimalStringTooLowThrows()
731 source.readDecimalLong(); in longDecimalStringTooShortThrows()
741 source.readDecimalLong(); in longDecimalEmptyThrows()
/external/okhttp/okio/okio/src/main/java/okio/
DBufferedSource.java79 long readDecimalLong() throws IOException; in readDecimalLong() method
DRealBufferedSource.java251 @Override public long readDecimalLong() throws IOException { in readDecimalLong() method in RealBufferedSource
266 return buffer.readDecimalLong(); in readDecimalLong()
DBuffer.java410 @Override public long readDecimalLong() {
/external/okhttp/okhttp-ws-tests/src/main/java/com/squareup/okhttp/ws/
DAutobahnTester.java140 countRef.set(message.source().readDecimalLong()); in getTestCount()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCache.java681 long result = source.readDecimalLong(); in readInt()