Searched defs:writeByte (Results 1 - 25 of 35) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteOutput.java29 void writeByte(int i); method in interface:ByteOutput
H A DOutput.java47 public void writeByte(int value); method in interface:Output
H A DByteArrayAnnotatedOutput.java157 public void writeByte(int value) { method in class:ByteArrayAnnotatedOutput
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
H A DBitstreamWriter.java102 * @see ua.org.jplayer.javcodec.h264.H264BitOutputStream#writeByte(int)
104 public void writeByte(int b) throws IOException { method in class:BitstreamWriter
/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataOutput.java34 @Override void writeByte(int v); method in interface:ByteArrayDataOutput
H A DLittleEndianDataOutputStream.java64 @Override public void writeByte(int v) throws IOException { method in class:LittleEndianDataOutputStream
65 ((DataOutputStream) out).writeByte(v);
H A DByteStreams.java484 @Override public void writeByte(int v) { method in class:ByteStreams.ByteArrayDataOutputStream
486 output.writeByte(v);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAbstractInterceptFieldCallback.java25 public byte writeByte(Object obj, String name, byte oldValue, byte newValue) { return newValue; } method in class:AbstractInterceptFieldCallback
H A DInterceptFieldCallback.java25 byte writeByte(Object obj, String name, byte oldValue, byte newValue); method in interface:InterceptFieldCallback
/external/okhttp/okio/src/main/java/okio/
H A DBufferedSink.java47 BufferedSink writeByte(int b) throws IOException; method in interface:BufferedSink
H A DRealBufferedSink.java71 @Override public BufferedSink writeByte(int b) throws IOException { method in class:RealBufferedSink
73 buffer.writeByte(b);
124 buffer.writeByte((byte) b);
H A DOkBuffer.java66 writeByte((byte) b);
437 @Override public OkBuffer writeByte(int b) { method in class:OkBuffer
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataOutput.java96 public void writeByte(int v) method in class:RuntimeDataOutput
100 dataOutput.writeByte(v);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DEncodedValueWriter.java91 public void writeByte(byte value) throws IOException { method in class:EncodedValueWriter
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dpixel.c285 GLubyte writeByte; local
318 writeByte = 0;
334 writeByte |= (sourceImage[0] >> bitOffset);
336 (writeByte & writeMask);
337 writeByte = (sourceImage[0] << (8 - bitOffset));
361 if (writeByte) {
370 currentByte = (currentByte & ~writeMask) | (writeByte & writeMask);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSOutgoing.java45 void writeByte(int value) { method in class:DNSOutgoing.MessageOutputStream
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(
[all...]
/external/mesa3d/src/glx/
H A Dpixel.c285 GLubyte writeByte; local
318 writeByte = 0;
334 writeByte |= (sourceImage[0] >> bitOffset);
336 (writeByte & writeMask);
337 writeByte = (sourceImage[0] << (8 - bitOffset));
361 if (writeByte) {
370 currentByte = (currentByte & ~writeMask) | (writeByte & writeMask);
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java847 protected static void writeByte(byte[] code, int offset, int value) method in class:Instruction
881 case 1: writeByte( code, offset, value); break;
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java117 public void writeByte(int value, int index) { method in class:CodeIterator
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowParcel.java195 public void writeByte(byte b) { method in class:ShadowParcel
382 writeByte(f);
679 writeByte((Byte) v);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/DataEntryWriterFactory.class DataEntryWriterFactory.java package proguard public ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 579 milliseconds

12