byteAt            260 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java       result = left.byteAt(index);
byteAt            262 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java       result = right.byteAt(index - leftLength);
byteAt            885 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java         return currentPiece.byteAt(currentPieceIndex++) & 0xFF;
byteAt           1260 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       final byte b = input.byteAt(i);
byteAt           1310 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java       byte c = input.byteAt(i);
byteAt           1314 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java           c = input.byteAt(i);
byteAt           1318 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java             if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
byteAt           1320 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java               code = code * 8 + digitValue(input.byteAt(i));
byteAt           1322 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java             if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
byteAt           1324 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java               code = code * 8 + digitValue(input.byteAt(i));
byteAt           1344 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
byteAt           1346 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                   code = digitValue(input.byteAt(i));
byteAt           1351 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
byteAt           1353 third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java                   code = code * 16 + digitValue(input.byteAt(i));
byteAt            531 third_party/protobuf/java/src/test/java/com/google/protobuf/ByteStringTest.java       ok = (bigBytes[i] == concreteSubstring.byteAt(i - start));
byteAt            560 third_party/protobuf/java/src/test/java/com/google/protobuf/ByteStringTest.java       stillEqual = referenceBytes[from + i] == compositeSubstring.byteAt(i);
byteAt             82 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java       stillEqual = (referenceBytes[i] == stringUnderTest.byteAt(i));
byteAt            363 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read());
byteAt            375 third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java         stringUnderTest.byteAt(nearEndIndex) & 0xFF, input.read());