/external/skia/include/core/ |
D | SkWriteBuffer.h | 34 virtual void writeByteArray(const void* data, size_t size) = 0; 36 this->writeByteArray(data->data(), data->size()); in writeDataAsByteArray() 100 void writeByteArray(const void* data, size_t size) override;
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedOutputStream.java | 270 public abstract void writeByteArray(int fieldNumber, byte[] value) throws IOException; in writeByteArray() method in CodedOutputStream 274 public abstract void writeByteArray(int fieldNumber, byte[] value, int offset, int length) in writeByteArray() method in CodedOutputStream 1173 public final void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.ArrayEncoder 1174 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray() 1178 public final void writeByteArray( in writeByteArray() method in CodedOutputStream.ArrayEncoder 1543 public void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.NioEncoder 1544 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray() 1548 public void writeByteArray( in writeByteArray() method in CodedOutputStream.NioEncoder 2023 public void writeByteArray(final int fieldNumber, final byte[] value) throws IOException { in writeByteArray() method in CodedOutputStream.ByteOutputEncoder 2024 writeByteArray(fieldNumber, value, 0, value.length); in writeByteArray() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowSignature.java | 52 dest.writeByteArray(mSignature); in writeToParcel()
|
D | ShadowParcel.java | 375 public void writeByteArray(byte[] val) { in writeByteArray() method in ShadowParcel 657 writeByteArray((byte[]) v); in writeValue()
|
/external/skia/tools/debugger/ |
D | SkJsonWriteBuffer.h | 26 void writeByteArray(const void* data, size_t size) override;
|
D | SkJsonWriteBuffer.cpp | 18 void SkJsonWriteBuffer::writeByteArray(const void* data, size_t size) { in writeByteArray() function in SkJsonWriteBuffer
|
/external/protobuf/javanano/src/device/main/java/com/google/protobuf/nano/android/ |
D | ParcelableMessageNanoCreator.java | 95 out.writeByteArray(MessageNano.toByteArray(message)); in writeToParcel()
|
/external/skia/src/core/ |
D | SkTextBlob.cpp | 735 buffer.writeByteArray(it.glyphs(), it.glyphCount() * sizeof(uint16_t)); in flatten() 736 buffer.writeByteArray(it.pos(), in flatten() 739 buffer.writeByteArray(it.clusters(), sizeof(uint32_t) * it.glyphCount()); in flatten() 740 buffer.writeByteArray(it.text(), it.textSize()); in flatten()
|
D | SkImageInfo.cpp | 116 buffer.writeByteArray(nullptr, 0); in flatten()
|
D | SkPicture.cpp | 212 buffer.writeByteArray(&info.fMagic, sizeof(info.fMagic)); in flatten()
|
D | SkWriteBuffer.cpp | 37 void SkBinaryWriteBuffer::writeByteArray(const void* data, size_t size) { in writeByteArray() function in SkBinaryWriteBuffer
|
D | SkPictureData.cpp | 337 buffer.writeByteArray(fOpData->bytes(), fOpData->size()); in flatten()
|
D | SkBitmap.cpp | 645 buffer->writeByteArray(storage.get(), size); in write_raw_pixels()
|
/external/skia/src/effects/ |
D | SkTableMaskFilter.cpp | 74 wb.writeByteArray(fTable, 256); in flatten()
|
D | SkEmbossMaskFilter.cpp | 123 buffer.writeByteArray(&tmpLight, sizeof(tmpLight)); in flatten()
|
D | SkOverdrawColorFilter.cpp | 48 buffer.writeByteArray(fColors, kNumColors * sizeof(SkPMColor)); in flatten()
|
D | SkTableColorFilter.cpp | 189 buffer.writeByteArray(storage, size); in flatten()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | ParcelTest.java | 371 parcel.writeByteArray(bytes); in testReadWriteByteArray() 410 parcel.writeByteArray(bytes); in testWriteCreateByteArray()
|
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/ |
D | CodedOutputStreamMicro.java | 205 public void writeByteArray(final int fieldNumber, final byte[] value) in writeByteArray() method in CodedOutputStreamMicro
|
/external/skia/tests/ |
D | SerializationTest.cpp | 92 writer.writeByteArray(data, arraySize); in Write()
|