Searched refs:byteAt (Results 1 – 12 of 12) sorted by relevance
41 byte byteAt(int offset); in byteAt() method55 final byte b = input.byteAt(i); in escapeBytes()100 public byte byteAt(int offset) { in escapeBytes() method in TextFormatEscaper101 return input.byteAt(offset); in escapeBytes()116 public byte byteAt(int offset) {
1842 byte c = input.byteAt(i); in unescapeBytes()1846 c = input.byteAt(i); in unescapeBytes()1850 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) { in unescapeBytes()1852 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()1854 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) { in unescapeBytes()1856 code = code * 8 + digitValue(input.byteAt(i)); in unescapeBytes()1876 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()1878 code = digitValue(input.byteAt(i)); in unescapeBytes()1883 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) { in unescapeBytes()1885 code = code * 16 + digitValue(input.byteAt(i)); in unescapeBytes()
254 public byte byteAt(int index) { in byteAt() method in RopeByteString259 return left.byteAt(index); in byteAt()262 return right.byteAt(index - leftLength); in byteAt()838 return currentPiece.byteAt(currentPieceIndex++) & 0xFF; in read()
159 public abstract byte byteAt(int index); in byteAt() method in ByteString188 return byteAt(position++); in iterator()1257 public byte byteAt(int index) { in byteAt() method in LiteralByteString1503 public byte byteAt(int index) { in byteAt() method in BoundedByteString
79 public byte byteAt(int index) { in byteAt() method in NioByteString
78 stillEqual = (referenceBytes[i] == stringUnderTest.byteAt(i)); in testByteAt()311 stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()323 stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()
485 ok = (bigBytes[i] == concreteSubstring.byteAt(i - start)); in testSubstringParity()514 stillEqual = referenceBytes[from + i] == compositeSubstring.byteAt(i); in testCompositeSubstring()
84 stillEqual = (referenceBytes[i] == stringUnderTest.byteAt(i)); in testByteAt()499 stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()511 stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()
78 stillEqual = (BYTES[i] == testString.byteAt(i)); in testByteAt()570 testString.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()582 testString.byteAt(nearEndIndex) & 0xFF, input.read()); in testNewInput_skip()
534 ok = (bigBytes[i] == concreteSubstring.byteAt(i - start)); in testSubstringParity()563 stillEqual = referenceBytes[from + i] == compositeSubstring.byteAt(i); in testCompositeSubstring()
57573 method public int byteAt(int);
33257 Landroid/icu/util/BytesTrie$Entry;->byteAt(I)B