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

12345678

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowParcel.java110 writeInt(-1);
112 writeInt(str.length());
138 public void writeInt(int i) { method in class:ShadowParcel
217 writeInt(-1);
220 writeInt(val.length);
251 writeInt(-1);
254 writeInt(val.length);
285 writeInt(-1);
288 writeInt(val.length);
309 writeInt(
[all...]
/external/emma/core/java12/com/vladium/jcd/lib/
H A DUDataOutputStream.java44 writeInt ((int) ulong); // this narrowing cast is Ok
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSpdy3.java339 sink.writeInt(0x80000000 | (VERSION & 0x7fff) << 16 | type & 0xffff);
340 sink.writeInt((flags & 0xff) << 24 | length & 0xffffff);
341 sink.writeInt(streamId & 0x7fffffff);
342 sink.writeInt(associatedStreamId & 0x7fffffff);
356 sink.writeInt(0x80000000 | (VERSION & 0x7fff) << 16 | type & 0xffff);
357 sink.writeInt((flags & 0xff) << 24 | length & 0xffffff);
358 sink.writeInt(streamId & 0x7fffffff);
371 sink.writeInt(0x80000000 | (VERSION & 0x7fff) << 16 | type & 0xffff);
372 sink.writeInt((flags & 0xff) << 24 | length & 0xffffff);
373 sink.writeInt(streamI
[all...]
/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);
/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
/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/prefixmapper/
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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttp20Draft09Test.java42 frame.writeInt(expectedStreamId);
43 frame.writeInt(111111111); // custom data
62 frame.writeInt(expectedStreamId & 0x7fffffff);
96 frame.writeInt(expectedStreamId & 0x7fffffff);
97 frame.writeInt(0); // Highest priority is 0.
132 frame.writeInt(expectedStreamId & 0x7fffffff);
140 frame.writeInt(expectedStreamId & 0x7fffffff);
181 frame.writeInt(expectedStreamId & 0x7fffffff);
182 frame.writeInt(expectedPromisedStreamId & 0x7fffffff);
219 frame.writeInt(expectedStreamI
[all...]
H A DSpdy3Test.java62 frame.writeInt(0x80000000 | (Spdy3.VERSION & 0x7fff) << 16 | Spdy3.TYPE_GOAWAY & 0xffff);
64 frame.writeInt(8); // no flags and length is 8.
65 frame.writeInt(expectedStreamId); // last good stream.
66 frame.writeInt(expectedError.spdyGoAwayCode);
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
H A DBrailleDisplayProperties.java107 out.writeInt(mNumTextCells);
108 out.writeInt(mNumStatusCells);
110 out.writeInt(mFriendlyKeyNames.size());
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTestParcelable.java32 dest.writeInt(contents);
/external/guava/guava-gwt/src/com/google/common/collect/
H A DMultiset_CustomFieldSerializerBase.java61 writer.writeInt(entryCount);
64 writer.writeInt(entry.getCount());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DDexWriter.java270 DexDataWriter.writeInt(output, (int)a32.getValue());
287 indexWriter.writeInt(offsetWriter.getPosition());
304 writer.writeInt(stringSection.getItemIndex(typeSection.getString(entry.getKey())));
318 writer.writeInt(stringSection.getItemIndex(protoSection.getShorty(key)));
319 writer.writeInt(typeSection.getItemIndex(protoSection.getReturnType(key)));
320 writer.writeInt(typeListSection.getNullableItemOffset(protoSection.getParameters(key)));
336 writer.writeInt(stringSection.getItemIndex(fieldSection.getName(key)));
352 writer.writeInt(stringSection.getItemIndex(methodSection.getName(key)));
410 indexWriter.writeInt(typeSection.getItemIndex(classSection.getType(key)));
411 indexWriter.writeInt(classSectio
[all...]
/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
/external/okhttp/okio/src/main/java/okio/
H A DBufferedSink.java56 BufferedSink writeInt(int i) throws IOException; method in interface:BufferedSink

Completed in 502 milliseconds

12345678