HomeSort by relevance Sort by last modified time
    Searched refs:writeByte (Results 51 - 75 of 540) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format3rms.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
Format21c.java 29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) insn.vregA);
Format22c.java 29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) (insn.vregA | (insn.vregB << 4)));
Format3rc.java 29 file.writeByte((byte) insn.info.value);
30 file.writeByte((byte) insn.vregA);
Format51l.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
  /external/javassist/src/main/javassist/convert/
TransformAfter.java 39 iterator.writeByte(iterator.byteAt(pos), p);
41 iterator.writeByte(INVOKESTATIC, pos);
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
ProxyingInstantiator.java 107 in.writeByte(CONSTANT_Class);
111 in.writeByte(CONSTANT_Class);
115 in.writeByte(CONSTANT_Utf8);
119 in.writeByte(CONSTANT_Utf8);
123 in.writeByte(CONSTANT_Utf8);
127 in.writeByte(CONSTANT_Utf8);
131 in.writeByte(CONSTANT_Utf8);
135 in.writeByte(CONSTANT_Utf8);
ObjectInputStreamInstantiator.java 72 dout.writeByte(ObjectStreamConstants.TC_OBJECT);
73 dout.writeByte(ObjectStreamConstants.TC_REFERENCE);
100 dout.writeByte(ObjectStreamConstants.TC_OBJECT);
101 dout.writeByte(ObjectStreamConstants.TC_CLASSDESC);
104 dout.writeByte(ObjectStreamConstants.SC_SERIALIZABLE);
106 dout.writeByte(ObjectStreamConstants.TC_ENDBLOCKDATA);
107 dout.writeByte(ObjectStreamConstants.TC_NULL);
  /libcore/ojluni/src/test/java/time/tck/java/time/serial/
TCKYearMonthSerialization.java 95 dos.writeByte(12); // java.time.temporal.Ser.YEAR_MONTH_TYPE
97 dos.writeByte(9);
  /dalvik/dexgen/src/com/android/dexgen/util/
Output.java 47 public void writeByte(int value);
  /dalvik/dx/src/com/android/dx/util/
Output.java 50 public void writeByte(int value);
  /dalvik/dx/src/com/android/dex/
Leb128.java 108 out.writeByte((byte) ((value & 0x7f) | 0x80));
113 out.writeByte((byte) (value & 0x7f));
129 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionDataWriter.java 71 out.writeByte(BLOCK_HEADER);
88 out.writeByte(BLOCK_SESSIONINFO);
100 out.writeByte(BLOCK_EXECUTIONDATA);
  /libcore/luni/src/test/java/libcore/java/io/
DataOutputStreamTest.java 38 os.writeByte(-1);
39 os.writeByte(0);
40 os.writeByte(1);
41 os.writeByte(129);
42 // writeByte takes only the bottom byte from its int parameter.
43 os.writeByte(0x1234);
OldAndroidDataOutputStreamTest.java 40 a.writeByte('B');
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
SecondaryInfo.java 119 dest.writeByte((byte) (shouldShow() ? 1 : 0));
121 dest.writeByte((byte) (nameIsNumber() ? 1 : 0));
124 dest.writeByte((byte) (isConference() ? 1 : 0));
125 dest.writeByte((byte) (isVideoCall() ? 1 : 0));
126 dest.writeByte((byte) (isFullscreen() ? 1 : 0));
  /frameworks/base/core/java/android/service/notification/
NotificationStats.java 89 dest.writeByte((byte) (mSeen ? 1 : 0));
90 dest.writeByte((byte) (mExpanded ? 1 : 0));
91 dest.writeByte((byte) (mDirectReplied ? 1 : 0));
92 dest.writeByte((byte) (mSnoozed ? 1 : 0));
93 dest.writeByte((byte) (mViewedSettings ? 1 : 0));
94 dest.writeByte((byte) (mInteracted ? 1 : 0));
  /libcore/ojluni/src/main/java/java/time/zone/
Ser.java 145 out.writeByte(type);
224 out.writeByte(offsetByte);
253 out.writeByte((store >>> 16) & 255);
254 out.writeByte((store >>> 8) & 255);
255 out.writeByte(store & 255);
257 out.writeByte(255);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationItem.java 35 file.writeByte(visibility);
  /external/okhttp/okio/okio/src/main/java/okio/
GzipSink.java 117 buffer.writeByte(0x08); // 8 == Deflate compression method.
118 buffer.writeByte(0x00); // No flags.
120 buffer.writeByte(0x00); // No extra flags.
121 buffer.writeByte(0x00); // No OS.
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
Tile.java 113 dest.writeByte((byte) 1);
116 dest.writeByte((byte) 0);
119 dest.writeByte((byte) 1);
122 dest.writeByte((byte) 0);
  /libcore/ojluni/src/main/java/java/io/
DataOutput.java 120 * are ignored. (This means that <code>writeByte</code>
131 void writeByte(int v) throws IOException;
272 * of the <code>writeByte</code> method . The
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 45 void writeByte(int value) {
51 writeByte(str.charAt(off + i));
63 writeByte(data[off + i]);
68 writeByte(value >> 8);
69 writeByte(value);
93 writeByte(utflen);
98 writeByte(ch);
101 writeByte(0xE0 | ((ch >> 12) & 0x0F));
102 writeByte(0x80 | ((ch >> 6) & 0x3F));
103 writeByte(0x80 | ((ch >> 0) & 0x3F))
    [all...]
  /frameworks/base/core/java/android/os/
PowerSaveState.java 62 dest.writeByte((byte) (batterySaverEnabled ? 1 : 0));
63 dest.writeByte((byte) (globalBatterySaverEnabled ? 1 : 0));
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
WebSocketWriter.java 131 sink.writeByte(b0);
136 sink.writeByte(b1);
145 sink.writeByte(b1);
183 sink.writeByte(b0);
192 sink.writeByte(b1);
195 sink.writeByte(b1);
199 sink.writeByte(b1);

Completed in 1395 milliseconds

1 23 4 5 6 7 8 91011>>