HomeSort by relevance Sort by last modified time
    Searched defs:writeInt (Results 1 - 25 of 71) sorted by null

1 2 3

  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 51 public void writeInt(int value);
ShortArrayCodeOutput.java 99 public void writeInt(int value) {
146 writeInt(i);
  /external/emma/core/java12/com/vladium/jcd/lib/
UDataOutputStream.java 44 writeInt ((int) ulong); // this narrowing cast is Ok
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 61 public void writeInt(int value);
  /dalvik/dx/src/com/android/dx/util/
Output.java 64 public void writeInt(int value);
  /external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java 113 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;
TableSwitchInstruction.java 116 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;
Instruction.java 1085 protected static void writeInt(byte[] code, int offset, int value)
1100 case 4: writeInt( code, offset, value); break;
1133 case 4: writeInt( code, offset, value); break;
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataOutput.java 37 @Override void writeInt(int v);
LittleEndianDataOutputStream.java 120 writeInt(Float.floatToIntBits(v));
125 * {@link DataOutputStream#writeInt(int)}, except using little-endian byte
130 @Override public void writeInt(int v) throws IOException {
  /external/okhttp/okio/okio/src/main/java/okio/
BufferedSink.java 85 BufferedSink writeInt(int i) throws IOException;
RealBufferedSink.java 137 @Override public BufferedSink writeInt(int i) throws IOException {
139 buffer.writeInt(i);
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
IcmpMessage.java 60 stream.writeInt((int) quench);
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
BufferedSink.java 87 BufferedSink writeInt(int i) throws IOException;
  /external/proguard/src/proguard/classfile/io/
RuntimeDataOutput.java 174 public void writeInt(int v)
178 dataOutput.writeInt(v);
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteGiftTest.java 29 import static com.android.cts.externalstorageapp.CommonExternalStorageTest.writeInt;
48 writeInt(none, 100);
58 writeInt(read, 101);
68 writeInt(write, 102);
84 writeInt(none, 100);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 115 out.writeInt(initLength);
137 out.writeInt(((CstLiteral32) cst).getIntBits());
  /dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java 117 out.writeInt(initLength);
139 out.writeInt(((CstLiteral32) cst).getIntBits());
  /external/cldr/tools/java/org/unicode/cldr/util/
CompactStringByteConverter.java 46 bytePosition = writeInt(delta, output, bytePosition);
67 bytePosition = writeInt(delta, output, bytePosition);
115 public static int writeInt(int source, byte[] output, int bytePosition) {
  /external/skia/tools/debugger/
SkJsonWriteBuffer.cpp 56 void SkJsonWriteBuffer::writeInt(int32_t value) {
  /external/skqp/tools/debugger/
SkJsonWriteBuffer.cpp 56 void SkJsonWriteBuffer::writeInt(int32_t value) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 91 writeInt((int)value);
92 writeInt((int)(value >> 32));
95 public static void writeInt(OutputStream out, int value) throws IOException {
102 public void writeInt(int value) throws IOException {
103 writeInt(this, value);
  /external/sonic/
wave.c 56 static void writeInt(
175 writeInt(file, 36 /* + dataLength */); /* 04 - how big is the rest of this file? */
178 writeInt(file, 16); /* 16 - size of this chunk */
181 writeInt(file, sampleRate); /* 24 - samples per second (numbers per second) */
182 writeInt(file, sampleRate * 2); /* 28 - bytes per second */
186 writeInt(file, 0); /* 40 - how big is this data chunk */
302 writeInt(file, file->bytesWritten - 8);
312 writeInt(file, file->bytesWritten - 48);
  /cts/hostsidetests/appsecurity/test-apps/MultiUserStorageApp/src/com/android/cts/multiuserstorageapp/
MultiUserStorageTest.java 23 import static com.android.cts.externalstorageapp.CommonExternalStorageTest.writeInt;
71 writeInt(buildApiPath(FILE_SINGLETON), uid);
72 writeInt(buildApiPath(FILE_MY_UID), uid);
80 writeInt(new File(path, FILE_SINGLETON), uid);
114 writeInt(buildApiObbPath(FILE_OBB_API_SINGLETON), OBB_API_VALUE);
115 writeInt(buildEnvObbPath(FILE_OBB_SINGLETON), OBB_VALUE);
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
Node.java 243 dest.writeInt( mIsTaskNode ? 1 : 0);
245 dest.writeInt(mTaskId);
250 dest.writeInt(0);
252 dest.writeInt(1);
255 dest.writeInt(mOptionFlags);
256 dest.writeInt(mIntent == null ? 0 : 1);

Completed in 511 milliseconds

1 2 3