/dalvik/dx/src/com/android/dex/ |
D | EncodedValueCodec.java | 51 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeSignedIntegralValue() 55 out.writeByte((byte) value); in writeSignedIntegralValue() 78 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeUnsignedIntegralValue() 82 out.writeByte((byte) value); in writeUnsignedIntegralValue() 108 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeRightZeroExtendedValue() 112 out.writeByte((byte) value); in writeRightZeroExtendedValue()
|
D | Leb128.java | 108 out.writeByte((byte) ((value & 0x7f) | 0x80)); in writeUnsignedLeb128() 113 out.writeByte((byte) (value & 0x7f)); in writeUnsignedLeb128() 129 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0))); in writeSignedLeb128()
|
D | Annotation.java | 50 out.writeByte(visibility); in writeTo()
|
D | Dex.java | 643 public void writeByte(int b) { in writeByte() method in Dex.Section 690 writeByte(0); in writeStringData()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | ValueEncoder.java | 184 out.writeByte(type); in writeConstant() 189 out.writeByte(type); in writeConstant() 195 out.writeByte(type); in writeConstant() 200 out.writeByte(type | (value << 5)); in writeConstant() 410 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeSignedIntegralValue() 414 out.writeByte((byte) value); in writeSignedIntegralValue() 441 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeUnsignedIntegralValue() 445 out.writeByte((byte) value); in writeUnsignedIntegralValue() 475 out.writeByte(type | ((requiredBytes - 1) << 5)); in writeRightZeroExtendedValue() 479 out.writeByte((byte) value); in writeRightZeroExtendedValue()
|
D | AnnotationItem.java | 199 case BUILD: out.writeByte(VISIBILITY_BUILD); break; in writeTo0() 200 case RUNTIME: out.writeByte(VISIBILITY_RUNTIME); break; in writeTo0() 201 case SYSTEM: out.writeByte(VISIBILITY_SYSTEM); break; in writeTo0()
|
D | DebugInfoEncoder.java | 200 output.writeByte(DBG_SET_PROLOGUE_END); in convert0() 616 output.writeByte(DBG_RESTART_LOCAL); in emitLocalRestart() 692 output.writeByte(DBG_START_LOCAL); in emitLocalStart() 721 output.writeByte(DBG_START_LOCAL_EXTENDED); in emitLocalStartExtended() 750 output.writeByte(DBG_END_LOCAL); in emitLocalEnd() 809 output.writeByte(opcode); in emitPosition() 853 output.writeByte(DBG_ADVANCE_LINE); in emitAdvanceLine() 877 output.writeByte(DBG_ADVANCE_PC); in emitAdvancePc() 914 output.writeByte(DBG_END_SEQUENCE); in emitEndSequence()
|
D | StringDataItem.java | 83 out.writeByte(0); in writeTo0()
|
D | HeaderItem.java | 89 out.writeByte(MAGIC.charAt(i)); in writeTo()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | AnnotationItem.java | 201 case BUILD: out.writeByte(VISIBILITY_BUILD); break; in writeTo0() 202 case RUNTIME: out.writeByte(VISIBILITY_RUNTIME); break; in writeTo0() 203 case SYSTEM: out.writeByte(VISIBILITY_SYSTEM); break; in writeTo0()
|
D | DebugInfoEncoder.java | 208 output.writeByte(DBG_SET_PROLOGUE_END); in convert0() 628 output.writeByte(DBG_RESTART_LOCAL); in emitLocalRestart() 704 output.writeByte(DBG_START_LOCAL); in emitLocalStart() 733 output.writeByte(DBG_START_LOCAL_EXTENDED); in emitLocalStartExtended() 762 output.writeByte(DBG_END_LOCAL); in emitLocalEnd() 821 output.writeByte(opcode); in emitPosition() 865 output.writeByte(DBG_ADVANCE_LINE); in emitAdvanceLine() 889 output.writeByte(DBG_ADVANCE_PC); in emitAdvancePc() 926 output.writeByte(DBG_END_SEQUENCE); in emitEndSequence()
|
D | ValueEncoder.java | 201 out.writeByte(type); in writeConstant() 206 out.writeByte(type); in writeConstant() 212 out.writeByte(type); in writeConstant() 217 out.writeByte(type | (value << 5)); in writeConstant()
|
D | StringDataItem.java | 83 out.writeByte(0); in writeTo0()
|
D | HeaderItem.java | 81 out.writeByte(magic.charAt(i)); in writeTo()
|
/dalvik/dx/src/com/android/dex/util/ |
D | ByteOutput.java | 29 void writeByte(int i); in writeByte() method
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
D | Output.java | 47 public void writeByte(int value); in writeByte() method
|
D | ByteArrayAnnotatedOutput.java | 148 public void writeByte(int value) { in writeByte() method in ByteArrayAnnotatedOutput 232 writeByte((value & 0x7f) | 0x80); in writeUnsignedLeb128() 238 writeByte(value & 0x7f); in writeUnsignedLeb128() 253 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0)); in writeSignedLeb128()
|
/dalvik/dx/src/com/android/dx/util/ |
D | Output.java | 50 public void writeByte(int value); in writeByte() method
|
D | ByteArrayAnnotatedOutput.java | 164 public void writeByte(int value) { in writeByte() method in ByteArrayAnnotatedOutput
|
/dalvik/dx/junit-tests/com/android/dx/util/ |
D | ByteArrayAnnotatedOutputTest.java | 49 output.writeByte(0); in testArrayAligned()
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
D | ArrayData.java | 123 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo() 154 out.writeByte(0x00); in writeTo()
|
/dalvik/dx/src/com/android/dx/dex/code/ |
D | ArrayData.java | 125 out.writeByte((byte) ((CstLiteral32) cst).getIntBits()); in writeTo() 156 out.writeByte(0x00); in writeTo()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 386 out.writeByte((arg << 5) | type); in writeTypeAndArg()
|
D | DexMerger.java | 983 debugInfoOut.writeByte(opcode); in transformDebugInfoItem()
|