OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:readRawByte
(Results
1 - 6
of
6
) sorted by null
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedInputByteBufferNano.java
285
byte tmp =
readRawByte
();
290
if ((tmp =
readRawByte
()) >= 0) {
294
if ((tmp =
readRawByte
()) >= 0) {
298
if ((tmp =
readRawByte
()) >= 0) {
302
result |= (tmp =
readRawByte
()) << 28;
306
if (
readRawByte
() >= 0) {
323
final byte b =
readRawByte
();
335
final byte b1 =
readRawByte
();
336
final byte b2 =
readRawByte
();
337
final byte b3 =
readRawByte
();
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java
318
byte tmp =
readRawByte
();
323
if ((tmp =
readRawByte
()) >= 0) {
327
if ((tmp =
readRawByte
()) >= 0) {
331
if ((tmp =
readRawByte
()) >= 0) {
335
result |= (tmp =
readRawByte
()) << 28;
339
if (
readRawByte
() >= 0) {
407
final byte b =
readRawByte
();
419
final byte b1 =
readRawByte
();
420
final byte b2 =
readRawByte
();
421
final byte b3 =
readRawByte
();
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java
292
byte tmp =
readRawByte
();
297
if ((tmp =
readRawByte
()) >= 0) {
301
if ((tmp =
readRawByte
()) >= 0) {
305
if ((tmp =
readRawByte
()) >= 0) {
309
result |= (tmp =
readRawByte
()) << 28;
313
if (
readRawByte
() >= 0) {
363
final byte b =
readRawByte
();
375
final byte b1 =
readRawByte
();
376
final byte b2 =
readRawByte
();
377
final byte b3 =
readRawByte
();
[
all
...]
/external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java
325
assertEquals(2, input.
readRawByte
());
344
assertEquals(1, input.
readRawByte
());
349
assertEquals(5, input.
readRawByte
());
466
input.
readRawByte
();
474
input.
readRawByte
(); // No exception thrown.
512
assertEquals(i, in.
readRawByte
());
MicroTest.java
[
all
...]
NanoTest.java
[
all
...]
Completed in 40 milliseconds