| /external/dexmaker/src/dx/java/com/android/dx/util/ | 
| ByteOutput.java | 29     void writeByte(int i); 
 | 
| Output.java | 47     public void writeByte(int value); 
 | 
| Leb128Utils.java | 136             out.writeByte((byte) ((value & 0x7f) | 0x80)); 141         out.writeByte((byte) (value & 0x7f));
 157             out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
 
 | 
| /libcore/dex/src/main/java/com/android/dex/util/ | 
| ByteOutput.java | 29     void writeByte(int i); 
 | 
| /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ | 
| GrammarSerializerFoo.java | 64         out.writeByte(SerializedGrammar.FORMAT_VERSION); 79                 case ANTLRParser.LEXER_GRAMMAR : out.writeByte('l'); break;
 80                 case ANTLRParser.PARSER_GRAMMAR : out.writeByte('p'); break;
 81                 case ANTLRParser.TREE_GRAMMAR: out.writeByte('t'); break;
 82                 case ANTLRParser.COMBINED_GRAMMAR : out.writeByte('c'); break;
 95             out.writeByte('R');
 105             out.writeByte('.');
 114             out.writeByte('B');
 125             out.writeByte('A');
 139             out.writeByte(';');
 [all...]
 | 
| /external/javassist/src/main/javassist/convert/ | 
| TransformWriteField.java | 45                         iterator.writeByte(ACONST_NULL, pos); 46                         iterator.writeByte(DUP_X2, pos + 1);
 47                         iterator.writeByte(POP, pos + 2);
 53                         iterator.writeByte(ACONST_NULL, pos);
 54                         iterator.writeByte(SWAP, pos + 1);
 64                 iterator.writeByte(INVOKESTATIC, pos);
 
 | 
| TransformNew.java | 62                 iterator.writeByte(NOP, pos); 63                 iterator.writeByte(NOP, pos + 1);
 64                 iterator.writeByte(NOP, pos + 2);
 65                 iterator.writeByte(NOP, pos + 3);
 84                 iterator.writeByte(INVOKESTATIC, pos);
 
 | 
| TransformAfter.java | 39         iterator.writeByte(iterator.byteAt(pos), p); 41         iterator.writeByte(INVOKESTATIC, pos);
 
 | 
| /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ | 
| HpackDraft05Test.java | 71     out.writeByte(0x00); // Literal indexed 72     out.writeByte(0x0a); // Literal name (len = 10)
 75     out.writeByte(0x0d); // Literal value (len = 13)
 92     out.writeByte(0x00); // Literal indexed
 93     out.writeByte(0x0a); // Literal name (len = 10)
 96     out.writeByte(0x0d); // Literal value (len = 13)
 99     out.writeByte(0x00); // Literal indexed
 100     out.writeByte(0x0a); // Literal name (len = 10)
 103     out.writeByte(0x0d); // Literal value (len = 13)
 106     out.writeByte(0x00); // Literal indexe
 [all...]
 | 
| Http20Draft09Test.java | 40     frame.writeByte(99); // type 99 41     frame.writeByte(0); // no flags
 60       frame.writeByte(Http20Draft09.TYPE_HEADERS);
 61       frame.writeByte(Http20Draft09.FLAG_END_HEADERS | Http20Draft09.FLAG_END_STREAM);
 94       frame.writeByte(Http20Draft09.TYPE_HEADERS);
 95       frame.writeByte(Http20Draft09.FLAG_END_HEADERS | Http20Draft09.FLAG_PRIORITY);
 130       frame.writeByte(Http20Draft09.TYPE_HEADERS);
 131       frame.writeByte(0); // no flags
 138       frame.writeByte(Http20Draft09.TYPE_CONTINUATION);
 139       frame.writeByte(Http20Draft09.FLAG_END_HEADERS)
 [all...]
 | 
| /frameworks/base/wifi/java/android/net/wifi/p2p/ | 
| WifiP2pInfo.java | 68         dest.writeByte(groupFormed ? (byte)1 : (byte)0); 69         dest.writeByte(isGroupOwner ? (byte)1 : (byte)0);
 72             dest.writeByte((byte)1);
 75             dest.writeByte((byte)0);
 
 | 
| /libcore/dex/src/main/java/com/android/dex/ | 
| EncodedValueCodec.java | 51         out.writeByte(type | ((requiredBytes - 1) << 5)); 55             out.writeByte((byte) value);
 78         out.writeByte(type | ((requiredBytes - 1) << 5));
 82             out.writeByte((byte) value);
 108         out.writeByte(type | ((requiredBytes - 1) << 5));
 112             out.writeByte((byte) value);
 
 | 
| Leb128.java | 135             out.writeByte((byte) ((value & 0x7f) | 0x80)); 140         out.writeByte((byte) (value & 0x7f));
 156             out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
 
 | 
| /dalvik/dexgen/src/com/android/dexgen/util/ | 
| Output.java | 47     public void writeByte(int value); 
 | 
| /dalvik/dx/src/com/android/dx/util/ | 
| Output.java | 49     public void writeByte(int value); 
 | 
| /external/objenesis/main/src/org/objenesis/instantiator/basic/ | 
| ObjectInputStreamInstantiator.java | 69             dout.writeByte(ObjectStreamConstants.TC_OBJECT); 70             dout.writeByte(ObjectStreamConstants.TC_REFERENCE);
 97             dout.writeByte(ObjectStreamConstants.TC_OBJECT);
 98             dout.writeByte(ObjectStreamConstants.TC_CLASSDESC);
 101             dout.writeByte(ObjectStreamConstants.SC_SERIALIZABLE);
 103             dout.writeByte(ObjectStreamConstants.TC_ENDBLOCKDATA);
 104             dout.writeByte(ObjectStreamConstants.TC_NULL);
 
 | 
| /libcore/luni/src/main/java/java/io/ | 
| DataOutput.java | 90     public abstract void writeByte(int val) throws IOException; 
 | 
| /libcore/luni/src/test/java/libcore/java/io/ | 
| OldAndroidDataOutputStreamTest.java | 40             a.writeByte('B'); 
 | 
| DataOutputStreamTest.java | 36         os.writeByte(-1); 37         os.writeByte(0);
 38         os.writeByte(1);
 39         os.writeByte(129);
 40         // writeByte takes only the bottom byte from its int parameter.
 41         os.writeByte(0x1234);
 
 | 
| /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...]
 | 
| /external/okhttp/okio/src/test/java/okio/ | 
| RealBufferedSinkTest.java | 53     bufferedSink.writeByte(0); 76     bufferedSink.writeByte('a');
 115     bufferedSink.writeByte('a');
 124     bufferedSink.writeByte('a');
 137     bufferedSink.writeByte('a');
 151     bufferedSink.writeByte('a');
 164     bufferedSink.writeByte('a');
 169       bufferedSink.writeByte('a');
 
 | 
| /frameworks/base/core/java/android/net/ | 
| ScoredNetwork.java | 79             out.writeByte((byte) 1); 82             out.writeByte((byte) 0);
 
 | 
| /external/dexmaker/src/dx/java/com/android/dx/dex/file/ | 
| ValueEncoder.java | 182                 out.writeByte(type); 187                 out.writeByte(type);
 193                 out.writeByte(type);
 198                 out.writeByte(type | (value << 5));
 408         out.writeByte(type | ((requiredBytes - 1) << 5));
 412             out.writeByte((byte) value);
 439         out.writeByte(type | ((requiredBytes - 1) << 5));
 443             out.writeByte((byte) value);
 473         out.writeByte(type | ((requiredBytes - 1) << 5));
 477             out.writeByte((byte) value)
 [all...]
 | 
| /external/guava/guava/src/com/google/common/io/ | 
| ByteArrayDataOutput.java | 34   @Override void writeByte(int v); 
 | 
| /external/okhttp/okio/src/main/java/okio/ | 
| BufferedSink.java | 47   BufferedSink writeByte(int b) throws IOException; 
 |