Searched refs:writeInt (Results 1 - 25 of 130) sorted by relevance

123456

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DHeaderItem.java144 out.writeInt(0);
151 out.writeInt(dexFile.getFileSize());
154 out.writeInt(HEADER_SIZE);
157 out.writeInt(LITTLE_ENDIAN);
160 out.writeInt(0);
163 out.writeInt(0);
166 out.writeInt(dexFile.MapItem.getOffset());
169 out.writeInt(dexFile.StringIdsSection.getItems().size());
172 out.writeInt(dexFile.StringIdsSection.getOffset());
175 out.writeInt(dexFil
[all...]
H A DMapItem.java89 out.writeInt(sections.length + 2);
120 out.writeInt(sectionSize);
121 out.writeInt(sectionOffset);
/external/emma/core/java12/com/vladium/jcd/lib/
H A DUDataOutputStream.java44 writeInt ((int) ulong); // this narrowing cast is Ok
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DHeaderItem.java87 out.writeInt(file.getFileSize());
88 out.writeInt(SizeOf.HEADER_ITEM);
89 out.writeInt(DexFormat.ENDIAN_TAG);
97 out.writeInt(mapOff);
112 out.writeInt(dataSize);
113 out.writeInt(dataOff);
H A DAnnotationSetRefItem.java78 out.writeInt(annotationsOff);
H A DClassDefItem.java211 out.writeInt(classIdx);
212 out.writeInt(accessFlags);
213 out.writeInt(superIdx);
214 out.writeInt(interOff);
215 out.writeInt(sourceFileIdx);
216 out.writeInt(annoOff);
217 out.writeInt(dataOff);
218 out.writeInt(staticValuesOff);
H A DFieldAnnotationStruct.java96 out.writeInt(fieldIdx);
97 out.writeInt(annotationsOff);
H A DFieldIdsSection.java88 out.writeInt(sz);
89 out.writeInt(offset);
H A DMethodAnnotationStruct.java96 out.writeInt(methodIdx);
97 out.writeInt(annotationsOff);
H A DMethodIdsSection.java88 out.writeInt(sz);
89 out.writeInt(offset);
H A DProtoIdsSection.java80 out.writeInt(sz);
81 out.writeInt(offset);
/external/javassist/src/main/javassist/util/proxy/
H A DProxyObjectOutputStream.java56 writeInt(interfaces.length - 1);
64 writeInt(signature.length);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest2Test.java105 output.writeInt(0); // class modifiers
110 output.writeInt(9); // modifiers
114 output.writeInt(9); // modifiers
118 output.writeInt(1); // modifiers
122 output.writeInt(1); // modifiers
126 output.writeInt(1); // modifiers
130 output.writeInt(1); // modifiers
135 output.writeInt(8); // modifiers
140 output.writeInt(0); // modifiers
145 output.writeInt(
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeOutput.java51 public void writeInt(int value); method in interface:CodeOutput
H A DShortArrayCodeOutput.java93 public void writeInt(int value) { method in class:ShortArrayCodeOutput
136 writeInt(i);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DOutput.java61 public void writeInt(int value); method in interface:Output
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DDefaultMapStorage.java83 objectOutput.writeInt(numOfEntries);
85 objectOutput.writeInt(phoneNumberPrefixes[i]);
89 objectOutput.writeInt(sizeOfLengths);
91 objectOutput.writeInt(length);
H A DFlyweightMapStorage.java157 objectOutput.writeInt(prefixSizeInBytes);
158 objectOutput.writeInt(descIndexSizeInBytes);
162 objectOutput.writeInt(sizeOfLengths);
164 objectOutput.writeInt(length);
168 objectOutput.writeInt(descriptionPool.length);
175 objectOutput.writeInt(numOfEntries);
225 objectOutput.writeInt(inputBuffer.getInt(wordIndex));
/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java113 writeInt(code, offset, defaultOffset); offset += 4;
114 writeInt(code, offset, cases.length); offset += 4;
119 writeInt(code, offset, cases[index]); offset += 4;
120 writeInt(code, offset, jumpOffsets[index]); offset += 4;
H A DTableSwitchInstruction.java116 writeInt(code, offset, defaultOffset); offset += 4;
117 writeInt(code, offset, lowCase); offset += 4;
118 writeInt(code, offset, highCase); offset += 4;
124 writeInt(code, offset, jumpOffsets[index]); offset += 4;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DOutput.java73 public void writeInt(int value); method in interface:Output
/external/guava/guava-gwt/src/com/google/common/collect/
H A DMultiset_CustomFieldSerializerBase.java61 writer.writeInt(entryCount);
64 writer.writeInt(entry.getCount());
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DSwitchData.java114 out.writeInt(firstCase);
129 out.writeInt(relTarget);
136 out.writeInt(cases.get(i));
141 out.writeInt(relTarget);
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Integer_info.java67 out.writeInt (m_value);
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataOutput.java37 @Override void writeInt(int v); method in interface:ByteArrayDataOutput

Completed in 787 milliseconds

123456