Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
47 protected final ByteInput in;
52 public EncodedValueReader(ByteInput in) {
53 this.in = in;
56 public EncodedValueReader(EncodedValue in) {
57 this(in.asByteInput());
66 public EncodedValueReader(ByteInput in, int knownType) {
67 this.in = in;
71 public EncodedValueReader(EncodedValue in, int knownType) {
72 this(in.asByteInput(), knownType);
80 int argAndType = in.readByte() & 0xff;
89 * caller must follow up by calling a read method for each element in the
100 return Leb128.readUnsignedLeb128(in);
119 annotationType = Leb128.readUnsignedLeb128(in);
120 return Leb128.readUnsignedLeb128(in);
133 return Leb128.readUnsignedLeb128(in);
139 return (byte) EncodedValueCodec.readSignedInt(in, arg);
145 return (short) EncodedValueCodec.readSignedInt(in, arg);
151 return (char) EncodedValueCodec.readUnsignedInt(in, arg, false);
157 return EncodedValueCodec.readSignedInt(in, arg);
163 return EncodedValueCodec.readSignedLong(in, arg);
169 return Float.intBitsToFloat(EncodedValueCodec.readUnsignedInt(in, arg, true));
175 return Double.longBitsToDouble(EncodedValueCodec.readUnsignedLong(in, arg, true));
181 return EncodedValueCodec.readUnsignedInt(in, arg, false);
187 return EncodedValueCodec.readUnsignedInt(in, arg, false);
193 return EncodedValueCodec.readUnsignedInt(in, arg, false);
199 return EncodedValueCodec.readUnsignedInt(in, arg, false);
205 return EncodedValueCodec.readUnsignedInt(in, arg, false);
211 return EncodedValueCodec.readUnsignedInt(in, arg, false);
217 return EncodedValueCodec.readUnsignedInt(in, arg, false);