/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | RecordList.java | 17 final ReadableFontData readData; field in RecordList 30 this.readData = data; in RecordList() 35 if (readData != null) { in RecordList() 41 this.readData = other.readData; in RecordList() 84 return getRecordAt(readData, sizeOfList(index)); in get() 120 return getRecordAt(readData, sizeOfList(current++)); in iterator()
|
D | OffsetRecordTable.java | 31 super(records.readData, records.base, false); in OffsetRecordTable() 253 ReadableFontData data = recordList.readData; in initFromData()
|
D | RecordsTable.java | 26 super(records.readData, records.base, false); in RecordsTable()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | RecordList.java | 17 final ReadableFontData readData; field in RecordList 30 this.readData = data; in RecordList() 35 if (readData != null) { in RecordList() 41 this.readData = other.readData; in RecordList() 84 return getRecordAt(readData, sizeOfList(index)); in get() 120 return getRecordAt(readData, sizeOfList(current++)); in iterator()
|
D | OffsetRecordTable.java | 31 super(records.readData, records.base, false); in OffsetRecordTable() 253 ReadableFontData data = recordList.readData; in initFromData()
|
D | RecordsTable.java | 26 super(records.readData, records.base, false); in RecordsTable()
|
/third_party/node/lib/internal/child_process/ |
D | serialization.js | 58 *parseChannelMessages(channel, readData) { argument 59 if (readData.length === 0) return; 61 let messageBuffer = Buffer.concat([channel[kMessageBuffer], readData]); 105 *parseChannelMessages(channel, readData) { argument 106 if (readData.length === 0) return; 111 StringPrototypeSplit(channel[kStringDecoder].write(readData), '\n');
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | BinaryStream_unittest.cpp | 73 std::vector<unsigned int> readData; in TEST() local 79 in.readIntVector<unsigned int>(&readData); in TEST() 81 ASSERT_EQ(writeData.size(), readData.size()); in TEST() 85 ASSERT_EQ(writeData[i], readData[i]); in TEST()
|
/third_party/flutter/skia/tests/ |
D | SRGBReadWritePixelsTest.cpp | 128 SkAutoTMalloc<uint32_t> readData(w * h); in read_and_check_pixels() local 129 memset(readData.get(), 0, sizeof(uint32_t) * w * h); in read_and_check_pixels() 131 if (!context->readPixels(dstInfo, readData.get(), 0, {0, 0})) { in read_and_check_pixels() 139 uint32_t read = readData[j * w + i]; in read_and_check_pixels()
|
D | Writer32Test.cpp | 298 auto d0(reader.readData()), in DEF_TEST() 299 d1(reader.readData()), in DEF_TEST() 300 d2(reader.readData()); in DEF_TEST()
|
/third_party/skia/third_party/externals/dawn/src/dawn_wire/server/ |
D | ServerBuffer.cpp | 247 const void* readData = nullptr; in OnBufferMapAsyncCallback() local 251 readData = in OnBufferMapAsyncCallback() 277 bufferData->readHandle->SerializeDataUpdate(readData, data->offset, data->size, in OnBufferMapAsyncCallback()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | UBiDiProps.java | 43 readData(bytes); in UBiDiProps() 46 private void readData(ByteBuffer bytes) throws IOException { in readData() method in UBiDiProps
|
D | UCaseProps.java | 47 readData(bytes); in UCaseProps() 50 private final void readData(ByteBuffer bytes) throws IOException { in readData() method in UCaseProps
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UBiDiProps.java | 39 readData(bytes); in UBiDiProps() 42 private void readData(ByteBuffer bytes) throws IOException { in readData() method in UBiDiProps
|
D | UCaseProps.java | 43 readData(bytes); in UCaseProps() 46 private final void readData(ByteBuffer bytes) throws IOException { in readData() method in UCaseProps
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/duration/impl/ |
D | XMLRecordReader.java | 149 String result = readData(); in string() 210 private String readData() { in readData() method in XMLRecordReader
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
D | XMLRecordReader.java | 145 String result = readData(); in string() 206 private String readData() { in readData() method in XMLRecordReader
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationNoneStageTests.cpp | 1452 for (const auto& readData : readableLayoutsData) in createNoneStageTests() local 1454 if (readData.aspect && writeData.aspect && in createNoneStageTests() 1455 (readData.aspect != writeData.aspect)) in createNoneStageTests() 1458 const std::string name = syncData.casePrefix + writeData.name + "_to_" + readData.name; in createNoneStageTests() 1464 readData.token, in createNoneStageTests() 1465 readData.aspect in createNoneStageTests()
|
/third_party/flutter/skia/src/core/ |
D | SkReader32.h | 139 sk_sp<SkData> readData() { in readData() function
|
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Source/ |
D | FlutterStandardCodec.mm | 384 - (NSData*)readData:(NSUInteger)length { 392 NSData* bytes = [self readData:[self readSize]]; 407 NSData* data = [self readData:elementCount * elementSize];
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/ |
D | Profile.cpp | 96 static Expected<Profile::Data> readData(DataExtractor &Extractor, in readData() function 303 auto DataOrError = readData(Extractor, Offset); in loadProfile()
|
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Headers/ |
D | FlutterCodecs.h | 115 - (NSData*)readData:(NSUInteger)length;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | SpoofChecker.java | 1878 readData(bytes); in SpoofData() 1907 private void readData(ByteBuffer bytes) throws java.io.IOException { in readData() method in SpoofChecker.Builder.ConfusabledataBuilder.SpoofData
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | SpoofChecker.java | 1809 readData(bytes); in SpoofData() 1838 private void readData(ByteBuffer bytes) throws java.io.IOException { in readData() method in SpoofChecker.Builder.ConfusabledataBuilder.SpoofData
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcPackedDepthStencilTests.cpp | 2423 std::vector<GLubyte> readData(TEX_SIZE * TEX_SIZE * 4, 0); in iterate() local 2424 gl.readPixels(0, 0, TEX_SIZE, TEX_SIZE, GL_RGBA, GL_UNSIGNED_BYTE, &readData[0]); in iterate() 2426 …verifyColorGradient(&readData[0], verifyClearBufferDepth + i, COLOR_CHECK_DEFAULT, TEX_SIZE, TEX_S… in iterate()
|