Searched refs:byteAt (Results 1 - 25 of 61) sorted by relevance

123

/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DTextFormatEscaper.java41 byte byteAt(int offset); method in interface:TextFormatEscaper.ByteSequence
55 final byte b = input.byteAt(i);
100 public byte byteAt(int offset) {
101 return input.byteAt(offset);
116 public byte byteAt(int offset) {
H A DTextFormat.java1813 byte c = input.byteAt(i);
1817 c = input.byteAt(i);
1821 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
1823 code = code * 8 + digitValue(input.byteAt(i));
1825 if (i + 1 < input.size() && isOctal(input.byteAt(i + 1))) {
1827 code = code * 8 + digitValue(input.byteAt(i));
1847 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
1849 code = digitValue(input.byteAt(i));
1854 if (i + 1 < input.size() && isHex(input.byteAt(i + 1))) {
1856 code = code * 16 + digitValue(input.byteAt(
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java60 int opcode = iter.byteAt(pos);
68 return opstring + " " + iter.byteAt(pos + 1);
72 return opstring + " " + ldc(pool, iter.byteAt(pos + 1));
86 return opstring + " " + iter.byteAt(pos + 1);
105 return opstring + " " + iter.byteAt(pos + 1);
110 return opstring + " " + iter.byteAt(pos + 1);
131 return opstring + " " + arrayInfo(iter.byteAt(pos + 1));
149 int opcode = iter.byteAt(pos + 1);
H A DCodeAnalyzer.java82 int op = ci.byteAt(index);
246 stack += 1 - ci.byteAt(index + 3);
249 op = ci.byteAt(index + 1);
H A DCodeAttribute.java487 int opcode = ci.byteAt(index);
511 int var = ci.byteAt(index + 1);
519 int plus = (byte)ci.byteAt(index + 2);
543 int var = ci.byteAt(index + 1);
/external/javassist/src/main/javassist/convert/
H A DTransformNewClass.java50 int c = iterator.byteAt(pos);
54 if (iterator.byteAt(pos + 3) != DUP)
H A DTransformAfter.java39 iterator.writeByte(iterator.byteAt(pos), p);
H A DTransformNew.java54 int c = iterator.byteAt(pos);
58 if (iterator.byteAt(pos + 3) != DUP)
H A DTransformFieldAccess.java59 int c = iterator.byteAt(pos);
H A DTransformWriteField.java32 int c = iterator.byteAt(pos);
H A DTransformCall.java68 int c = iterator.byteAt(pos);
H A DTransformReadField.java71 int c = iterator.byteAt(pos);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DUtil.java27 int opcode = iter.byteAt(pos);
H A DExecutor.java68 int opcode = iter.byteAt(pos);
107 evalLDC(iter.byteAt(pos + 1), frame);
114 evalLoad(Type.INTEGER, iter.byteAt(pos + 1), frame, subroutine);
117 evalLoad(Type.LONG, iter.byteAt(pos + 1), frame, subroutine);
120 evalLoad(Type.FLOAT, iter.byteAt(pos + 1), frame, subroutine);
123 evalLoad(Type.DOUBLE, iter.byteAt(pos + 1), frame, subroutine);
126 evalLoad(Type.OBJECT, iter.byteAt(pos + 1), frame, subroutine);
179 evalStore(Type.INTEGER, iter.byteAt(pos + 1), frame, subroutine);
182 evalStore(Type.LONG, iter.byteAt(pos + 1), frame, subroutine);
185 evalStore(Type.FLOAT, iter.byteAt(po
[all...]
/external/javassist/src/main/javassist/expr/
H A DMethodCall.java36 int c = iterator.byteAt(pos);
87 int c = iterator.byteAt(pos);
148 return iterator.byteAt(currentPos) == INVOKESPECIAL
186 int c = iterator.byteAt(pos);
H A DNewArray.java81 int atype = iterator.byteAt(currentPos + 1);
143 return iterator.byteAt(currentPos + 3);
182 index = iterator.byteAt(currentPos + 1); // atype
200 dim = iterator.byteAt(currentPos + 3);
H A DNewExpr.java45 int c = iterator.byteAt(pos);
141 int op = iterator.byteAt(newPos + 3);
145 && iterator.byteAt(newPos + 4) == Opcode.SWAP)
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java241 int op = ci.byteAt(index);
250 readLocal(ci.byteAt(index + 1));
264 readLocal(ci.byteAt(pos + 1));
306 writeLocal(ci.byteAt(pos + 1));
342 int op = ci.byteAt(pos + 1);
/external/javassist/src/main/javassist/
H A DCtConstructor.java160 int op0 = it.byteAt(it.next());
163 && it.byteAt(pos = it.next()) == Opcode.INVOKESPECIAL
167 && it.byteAt(it.next()) == Opcode.RETURN
/external/apache-http/src/org/apache/http/util/
H A DByteArrayBuffer.java136 public int byteAt(int i) { method in class:ByteArrayBuffer
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java53 public byte byteAt(final int index) { method in class:ByteStringMicro
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DByteBuffer.java148 public byte byteAt(int index) method in class:ByteBuffer
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionInputBuffer.java217 if (this.linebuffer.byteAt(l - 1) == HTTP.LF) {
223 if (this.linebuffer.byteAt(l - 1) == HTTP.CR) {
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java86 if (iter.byteAt(pos) == opcode)
101 if (iter.byteAt(pos) == Opcode.ARETURN)
121 if (iter.byteAt(pos) == Opcode.AALOAD)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DTrieMap.java566 byte b = entry.byteAt(i++);
571 int b2 = 0xFF & entry.byteAt(i++);
574 int b2 = entry.byteAt(i++);
575 int b3 = 0xFF & entry.byteAt(i++);

Completed in 341 milliseconds

123