/external/sonic/ |
D | wave.c | 29 static void writeBytes( in writeBytes() function 52 writeBytes(file, string, strlen(string)); in writeString() 67 writeBytes(file, bytes, 4); in writeInt() 82 writeBytes(file, bytes, 2); in writeShort() 362 writeBytes(file, bytes, bytePos); in writeToWaveFile() 370 writeBytes(file, bytes, bytePos); in writeToWaveFile()
|
/external/proguard/src/proguard/classfile/io/ |
D | RuntimeDataOutput.java | 109 public void writeBytes(String s) in writeBytes() method in RuntimeDataOutput 113 dataOutput.writeBytes(s); in writeBytes()
|
/external/guava/guava/src/com/google/common/io/ |
D | LittleEndianDataOutputStream.java | 74 @Override public void writeBytes(String s) throws IOException { in writeBytes() method in LittleEndianDataOutputStream 75 ((DataOutputStream) out).writeBytes(s); in writeBytes()
|
D | ByteArrayDataOutput.java | 48 @Deprecated @Override void writeBytes(String s); in writeBytes() method
|
D | ByteStreams.java | 562 @Override public void writeBytes(String s) { in writeBytes() method in ByteStreams.ByteArrayDataOutputStream 564 output.writeBytes(s); in writeBytes()
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSOutgoing.java | 49 void writeBytes(String str, int off, int len) { in writeBytes() method in DNSOutgoing.MessageOutputStream 55 void writeBytes(byte data[]) { in writeBytes() method in DNSOutgoing.MessageOutputStream 57 writeBytes(data, 0, data.length); in writeBytes() 61 void writeBytes(byte data[], int off, int len) { in writeBytes() method in DNSOutgoing.MessageOutputStream
|
D | DNSRecord.java | 197 out.writeBytes(buffer, 0, length); in write() 242 out.writeBytes(buffer, 0, length); in write() 554 out.writeBytes(_text, 0, _text.length); in write()
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | LittleEndianDataOutputStreamTest.java | 87 out.writeBytes("r\u00C9sum\u00C9"); in testWriteBytes() 104 out.writeBytes("\uAAAA\uAABB\uAACC"); in testWriteBytes_discardHighOrderBytes()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | GCOVProfiling.cpp | 168 void writeBytes(const char *Bytes, int Size) { in writeBytes() function in __anon6b4605ac0211::GCOVRecord 173 writeBytes(reinterpret_cast<char*>(&i), 4); in write() 188 writeBytes(s.data(), s.size()); in writeGCOVString() 193 writeBytes("\0\0\0\0", 4 - (s.size() % 4)); in writeGCOVString() 265 writeBytes(LinesTag, 4); in writeOut() 367 writeBytes(FunctionTag, 4); in writeOut() 382 writeBytes(BlockTag, 4); in writeOut() 396 writeBytes(EdgeTag, 4); in writeOut()
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | DataOutputCompressor.java | 60 public void writeBytes(String s) throws IOException { in writeBytes() method in DataOutputCompressor 61 dataOutput.writeBytes(s); in writeBytes()
|
/external/aac/libFDK/src/ |
D | FDK_bitbuffer.cpp | 452 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuf, UCHAR *outBuf, UINT *writeBytes) in FDK_Fetch() argument 458 …UINT noOfBytes = fMin(bToWrite, *writeBytes); //(bToWrite < *writeBytes) ? bToWrite : *writeBytes ; in FDK_Fetch() 478 *writeBytes = bTotal ; in FDK_Fetch()
|
/external/aac/libFDK/include/ |
D | FDK_bitbuffer.h | 158 void FDK_Fetch (HANDLE_FDK_BITBUF hBitBuffer, UCHAR outBuf[], UINT *writeBytes);
|
D | FDK_bitstream.h | 611 …_INLINE void FDKfetchBuffer(HANDLE_FDK_BITSTREAM hBitStream, UCHAR *outputBuffer, UINT *writeBytes) in FDKfetchBuffer() argument 614 FDK_Fetch(&hBitStream->hBitBuf, outputBuffer, writeBytes); in FDKfetchBuffer()
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | GrammarSerializerFoo.java | 216 out.writeBytes(s); in writeString()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 261 public void writeBytes(final int fieldNumber, final ByteString value) in writeBytes() method in CodedOutputStream 367 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
|
D | UnknownFieldSet.java | 760 output.writeBytes(fieldNumber, value); in writeTo()
|
/external/okhttp/okio/okio/src/test/java/okio/ |
D | BufferedSinkTest.java | 88 @Test public void writeBytes() throws Exception {
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 198 public void writeBytes(final int fieldNumber, final ByteStringMicro value) in writeBytes() method in CodedOutputStreamMicro
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | WireFormatTest.java | 570 output.writeBytes(3, item.getMessage()); in testMergeMessageSetExtensionWithFlag()
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
D | CodedOutputByteBufferNano.java | 169 public void writeBytes(final int fieldNumber, final byte[] value) in writeBytes() method in CodedOutputByteBufferNano
|