Searched refs:argAndType (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/io/
H A DEncodedValueReader.java75 int argAndType = in.readByte() & 0xff;
76 int type = argAndType & 0x1f;
77 int arg = (argAndType & 0xe0) >> 5;
88 visitPrimitive(argAndType, type, arg, size);
104 visitArrayValue(argAndType);
108 visitAnnotationValue(argAndType);
112 visitEncodedNull(argAndType);
115 visitEncodedBoolean(argAndType);
123 protected void visitPrimitive(int argAndType, int type, int arg, int size) { argument
132 protected void visitArrayValue(int argAndType) {} argument
133 visitAnnotationValue(int argAndType) argument
134 visitEncodedBoolean(int argAndType) argument
135 visitEncodedNull(int argAndType) argument
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java243 protected void visitPrimitive(int argAndType, int type, int arg, int size) { argument
244 out.writeByte(argAndType);
264 protected void visitArrayValue(int argAndType) { argument
265 out.writeByte(argAndType);
268 protected void visitAnnotationValue(int argAndType) { argument
269 out.writeByte(argAndType);
272 protected void visitEncodedBoolean(int argAndType) { argument
273 out.writeByte(argAndType);
276 protected void visitEncodedNull(int argAndType) { argument
277 out.writeByte(argAndType);
[all...]

Completed in 75 milliseconds