Home
last modified time | relevance | path

Searched full:destination (Results 1 – 25 of 3685) sorted by relevance

12345678910>>...148

/third_party/mesa3d/src/gallium/drivers/crocus/ci/
Dcrocus-hsw-fails.txt258 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16/Destination: GL_R16I,Fail
259 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16/Destination: GL_RG8I,Fail
260 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_R16,Fail
261 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_R16I,Fail
262 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_R16UI,Fail
263 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_R16_SNORM,Fa…
264 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_RG8,Fail
265 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_RG8I,Fail
266 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_RG8UI,Fail
267 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R16I/Destination: GL_RG8_SNORM,Fa…
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/ci/
Dr600-rv770-fails.txt624 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8/Destination: GL_R8I,Fail
625 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8/Destination: GL_R8UI,Fail
626 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8I/Destination: GL_R8,Fail
627 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8I/Destination: GL_R8I,Fail
628 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8I/Destination: GL_R8UI,Fail
629 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8I/Destination: GL_R8_SNORM,Fail
630 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8UI/Destination: GL_R8,Fail
631 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8UI/Destination: GL_R8I,Fail
632 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8UI/Destination: GL_R8UI,Fail
633 spec@arb_copy_image@arb_copy_image-formats --samples=2@Source: GL_R8UI/Destination: GL_R8_SNORM,Fail
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DFieldMaskTreeTest.cs162 …private void Merge(FieldMaskTree tree, IMessage source, IMessage destination, FieldMask.MergeOptio… in Merge() argument
170 newDestination.MergeFrom(destination.ToByteString()); in Merge()
175 foreach (var fieldDescriptor in destination.Descriptor.Fields.InFieldNumberOrder()) in Merge()
177 fieldDescriptor.Accessor.Clear(destination); in Merge()
179 destination.MergeFrom(newDestination.ToByteString()); in Merge()
183 tree.Merge(source, destination, options); in Merge()
219 NestedTestAllTypes destination = new NestedTestAllTypes(); in Merge()
221 source, destination, options, useDynamicMessage); in Merge()
229 Assert.AreEqual(expected, destination); in Merge()
231 destination = new NestedTestAllTypes(); in Merge()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DCopyCommandsValidationTests.cpp203 wgpu::Texture destination = in TEST_F() local
208 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 0}, in TEST_F()
212 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 4}, in TEST_F()
216 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 1}, in TEST_F()
220 TestBothTBCopiesExactBufferSize(256, 3, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 0}, in TEST_F()
224 TestBothTBCopiesExactBufferSize(512, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 1}, in TEST_F()
235 wgpu::Buffer destination = CreateBuffer(16, wgpu::BufferUsage::CopyDst); in TEST_F() local
240 encoder.CopyBufferToBuffer(source, 0, destination, 0, 16); in TEST_F()
241 encoder.CopyBufferToBuffer(source, 8, destination, 0, 8); in TEST_F()
242 encoder.CopyBufferToBuffer(source, 0, destination, 8, 8); in TEST_F()
[all …]
DQueueWriteTextureValidationTests.cpp96 wgpu::Texture destination = Create2DTexture({16, 16, 4}, 5, wgpu::TextureFormat::RGBA8Unorm, in TEST_F() local
102 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {0, 0, 0}, {4, 4, 1}); in TEST_F()
104 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {12, 12, 0}, {4, 4, 1}); in TEST_F()
106 TestWriteTexture(dataSize, 0, 256, 4, destination, 2, {0, 0, 0}, {4, 4, 1}); in TEST_F()
108 TestWriteTexture(dataSize, dataSize - 4, 256, 1, destination, 0, {0, 0, 0}, {1, 1, 1}); in TEST_F()
109 TestWriteTexture(dataSize, dataSize - 4, 256, wgpu::kCopyStrideUndefined, destination, in TEST_F()
116 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {0, 0, 0}, {3, 4, 1}); in TEST_F()
118 TestWriteTexture(dataSize, 0, 256, 3, destination, 0, {5, 7, 0}, {2, 3, 1}); in TEST_F()
120 TestWriteTexture(dataSize, 31 * 4, 256, 3, destination, 0, {0, 0, 0}, {3, 3, 1}); in TEST_F()
126 TestWriteTexture(dataSize, 0, 0, 0, destination, 0, {0, 0, 0}, {0, 0, 1}); in TEST_F()
[all …]
DCopyTextureForBrowserTests.cpp75 wgpu::Texture destination = in TEST_F() local
82 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
86 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
90 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {8, 8, 0}, destination, 0, in TEST_F()
94 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 2, in TEST_F()
98 TestCopyTextureForBrowser(utils::Expectation::Success, source, 2, {0, 0, 0}, destination, 0, in TEST_F()
102 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
109 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
113 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
117 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DQueryTests.cpp152 wgpu::Buffer destination = CreateResolveBuffer(kQueryCount * sizeof(uint64_t)); in TestOcclusionQueryWithDepthStencilTest() local
155 queue.WriteBuffer(destination, 0, &kSentinelValue, sizeof(kSentinelValue)); in TestOcclusionQueryWithDepthStencilTest()
169 encoder.ResolveQuerySet(querySet, 0, kQueryCount, destination, 0); in TestOcclusionQueryWithDepthStencilTest()
173 EXPECT_BUFFER(destination, 0, sizeof(uint64_t), new OcclusionExpectation(expected)); in TestOcclusionQueryWithDepthStencilTest()
181 wgpu::Buffer destination = CreateResolveBuffer(kQueryCount * sizeof(uint64_t)); in TestOcclusionQueryWithScissorTest() local
184 queue.WriteBuffer(destination, 0, &kSentinelValue, sizeof(kSentinelValue)); in TestOcclusionQueryWithScissorTest()
198 encoder.ResolveQuerySet(querySet, 0, kQueryCount, destination, 0); in TestOcclusionQueryWithScissorTest()
202 EXPECT_BUFFER(destination, 0, sizeof(uint64_t), new OcclusionExpectation(expected)); in TestOcclusionQueryWithScissorTest()
251 // the destination buffer keep sentinel value in the second case, it cannot be reproduced with in TEST_P()
270 wgpu::Buffer destination = CreateResolveBuffer(kQueryCount * sizeof(uint64_t)); in TEST_P() local
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandEncoder.cpp54 "Source offset (%u) or destination offset (%u) is not a multiple of 4 bytes,", in ValidateB2BCopyAlignment()
380 const BufferBase* destination, in ValidateQuerySetResolve() argument
393 "The destination buffer %s offset (%u) is not a multiple of 256.", in ValidateQuerySetResolve()
394 destination, destinationOffset); in ValidateQuerySetResolve()
396 uint64_t bufferSize = destination->GetSize(); in ValidateQuerySetResolve()
397 // The destination buffer must have enough storage, from destination offset, to contain in ValidateQuerySetResolve()
405 querySet, static_cast<uint64_t>(queryCount) * sizeof(uint64_t), destination, in ValidateQuerySetResolve()
415 BufferBase* destination, in EncodeTimestampsToNanosecondsConversion() argument
451 encoder, destination, availabilityBuffer.Get(), paramsBuffer.Get()); in EncodeTimestampsToNanosecondsConversion()
650 BufferBase* destination, in APICopyBufferToBuffer() argument
[all …]
DQueue.cpp295 void QueueBase::APIWriteTexture(const ImageCopyTexture* destination, in APIWriteTexture() argument
301 WriteTextureInternal(destination, data, dataSize, *dataLayout, writeSize)); in APIWriteTexture()
304 MaybeError QueueBase::WriteTextureInternal(const ImageCopyTexture* destination, in WriteTextureInternal() argument
309 DAWN_TRY(ValidateWriteTexture(destination, dataSize, dataLayout, writeSize)); in WriteTextureInternal()
316 destination->texture->GetFormat().GetAspectInfo(destination->aspect).block; in WriteTextureInternal()
319 return WriteTextureImpl(*destination, data, layout, *writeSize); in WriteTextureInternal()
322 MaybeError QueueBase::WriteTextureImpl(const ImageCopyTexture& destination, in WriteTextureImpl() argument
326 const Format& format = destination.texture->GetFormat(); in WriteTextureImpl()
327 const TexelBlockInfo& blockInfo = format.GetAspectInfo(destination.aspect).block; in WriteTextureImpl()
354 textureCopy.texture = destination.texture; in WriteTextureImpl()
[all …]
/third_party/icu/icu4c/packaging/
Ddistrelease.ps143 Copy-Item -Path "$icuDir\lib64" -Destination $source -Recurse
44 Copy-Item -Path "$icuDir\bin64" -Destination $source -Recurse
48 Copy-Item -Path "$icuDir\lib" -Destination $source -Recurse
49 Copy-Item -Path "$icuDir\bin" -Destination $source -Recurse
53 Copy-Item -Path "$icuDir\libARM64" -Destination $source -Recurse
54 Copy-Item -Path "$icuDir\binARM64" -Destination $source -Recurse
64 Copy-Item -Path "$icuDir\include" -Destination $source -Recurse
65 Copy-Item -Path "$icuDir\APIChangeReport.html" -Destination $source -Recurse
66 Copy-Item -Path "$icuDir\icu4c.css" -Destination $source -Recurse
67 Copy-Item -Path "$icuDir\LICENSE" -Destination $source -Recurse
[all …]
/third_party/node/deps/v8/src/compiler/backend/
Dgap-resolver.cc29 const LocationOperand& dst_loc = LocationOperand::cast(move->destination()); in Split()
92 // Remove redundant moves, collect source kinds and destination kinds to in Resolve()
106 destination_kinds.Add(GetKind(move->destination())); in Resolve()
108 move->destination().IsFPRegister()) { in Resolve()
110 LocationOperand::cast(move->destination()).representation()); in Resolve()
118 assembler_->AssembleMove(&move->source(), &move->destination()); in Resolve()
131 if (!move->IsEliminated() && move->destination().IsFloatRegister()) in Resolve()
139 if (!move->IsEliminated() && move->destination().IsDoubleRegister()) in Resolve()
162 // Clear this move's destination to indicate a pending move. The actual in PerformMove()
163 // destination is saved on the side. in PerformMove()
[all …]
Dmove-optimizer.cc17 InstructionOperand destination; member
23 return a.destination.CompareCanonicalized(b.destination); in operator ()()
177 // destination operand. in RemoveClobberedDestinations()
192 if (outputs.ContainsOpOrAlias(move->destination()) && in RemoveClobberedDestinations()
193 !inputs.ContainsOpOrAlias(move->destination())) { in RemoveClobberedDestinations()
202 if (!inputs.ContainsOpOrAlias(move->destination())) { in RemoveClobberedDestinations()
241 src_cant_be.InsertOp(move->destination()); in MigrateMoves()
246 // destination operands are eligible for being moved down. in MigrateMoves()
249 if (!dst_cant_be.ContainsOpOrAlias(move->destination())) { in MigrateMoves()
250 MoveKey key = {move->source(), move->destination()}; in MigrateMoves()
[all …]
/third_party/node/deps/npm/node_modules/@npmcli/fs/lib/
Dmove-file.js13 const moveFile = async (source, destination, options = {}, root = true, symlinks = []) => { argument
14 if (!source || !destination) {
15 throw new TypeError('`source` and `destination` file required')
23 if (!options.overwrite && await pathExists(destination)) {
24 throw new Error(`The destination file exists: ${destination}`)
27 await fs.mkdir(dirname(destination), { recursive: true })
30 await fs.rename(source, destination)
37 moveFile(join(source, file), join(destination, file), options, false, symlinks)
40 symlinks.push({ source, destination }) field
42 await fs.copyFile(source, destination)
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DObjectBaseTests.cpp97 Object destination(source); in TEST() local
100 ASSERT_EQ(destination.Get(), &refcount); in TEST()
103 destination = Object(); in TEST()
112 Object destination; in TEST() local
113 destination = source; in TEST()
116 ASSERT_EQ(destination.Get(), &refcount); in TEST()
119 destination = Object(); in TEST()
128 Object destination; in TEST() local
130 destination = source; in TEST()
134 ASSERT_EQ(destination.Get(), &refcount); in TEST()
[all …]
DRefCountedTests.cpp140 Ref<RCTest> destination(source); in TEST() local
147 EXPECT_EQ(destination.Get(), original); in TEST()
153 destination = nullptr; in TEST()
165 Ref<RCTest> destination; in TEST() local
166 destination = source; in TEST()
169 EXPECT_EQ(destination.Get(), original); in TEST()
175 destination = nullptr; in TEST()
187 Ref<RCTest> destination(std::move(source)); in TEST() local
194 EXPECT_EQ(destination.Get(), original); in TEST()
197 destination = nullptr; in TEST()
[all …]
/third_party/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc339 RepeatedField<int> source, destination; in TEST() local
342 destination.Add(1); in TEST()
343 destination.Add(2); in TEST()
344 destination.Add(3); in TEST()
346 destination.MergeFrom(source); in TEST()
348 ASSERT_EQ(5, destination.size()); in TEST()
349 EXPECT_EQ(1, destination.Get(0)); in TEST()
350 EXPECT_EQ(2, destination.Get(1)); in TEST()
351 EXPECT_EQ(3, destination.Get(2)); in TEST()
352 EXPECT_EQ(4, destination.Get(3)); in TEST()
[all …]
/third_party/mesa3d/src/gallium/drivers/virgl/ci/
Dvirpipe-gl-fails.txt237 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RED_RGTC1/Destination: GL_COMPRESS…
238 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGBA_BPTC_UNORM/Destination: GL_CO…
239 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGBA_S3TC_DXT1_EXT/Destination: GL…
240 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGBA_S3TC_DXT3_EXT/Destination: GL…
241 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGBA_S3TC_DXT5_EXT/Destination: GL…
242 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT/Destination:…
243 …e@arb_copy_image-formats@Source: GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT/Destination: GL_COMPRESSED_…
244 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RGB_S3TC_DXT1_EXT/Destination: GL_…
245 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_RG_RGTC2/Destination: GL_COMPRESSE…
246 spec@arb_copy_image@arb_copy_image-formats@Source: GL_COMPRESSED_SIGNED_RED_RGTC1/Destination: GL_C…
[all …]
/third_party/cJSON/
DCMakeLists.txt160 install(FILES cJSON.h DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}/cjson")
161 install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/…
164 ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
165 LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
166 RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}"
167 INCLUDES DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}"
172 ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
173 INCLUDES DESTINATION "${CMAKE_INSTALL_FULL_INCLUDEDIR}"
178 install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/cmake/cJSON")
213 ARCHIVE DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}"
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs229 …s specified by this FieldMaskTree from <paramref name="source"/> to <paramref name="destination"/>.
231 public void Merge(IMessage source, IMessage destination, FieldMask.MergeOptions options) in Merge() argument
233 if (source.Descriptor != destination.Descriptor) in Merge()
243 Merge(root, "", source, destination, options); in Merge()
247 …ll fields specified by a sub-tree from <paramref name="source"/> to <paramref name="destination"/>.
253 IMessage destination, in Merge() argument
256 if (source.Descriptor != destination.Descriptor) in Merge()
258 …validProtocolBufferException($"source ({source.Descriptor}) and destination ({destination.Descript… in Merge()
281 var destinationField = field.Accessor.GetValue(destination); in Merge()
285 … // If the message field is not present in both source and destination, skip recursing in Merge()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DQueueGL.cpp55 MaybeError Queue::WriteTextureImpl(const ImageCopyTexture& destination, in WriteTextureImpl() argument
59 DAWN_INVALID_IF(destination.aspect == wgpu::TextureAspect::StencilOnly, in WriteTextureImpl()
63 textureCopy.texture = destination.texture; in WriteTextureImpl()
64 textureCopy.mipLevel = destination.mipLevel; in WriteTextureImpl()
65 textureCopy.origin = destination.origin; in WriteTextureImpl()
67 SelectFormatAspects(destination.texture->GetFormat(), destination.aspect); in WriteTextureImpl()
70 if (IsCompleteSubresourceCopiedTo(destination.texture, writeSizePixel, in WriteTextureImpl()
71 destination.mipLevel)) { in WriteTextureImpl()
72 destination.texture->SetIsSubresourceContentInitialized(true, range); in WriteTextureImpl()
74 ToBackend(destination.texture)->EnsureSubresourceContentInitialized(range); in WriteTextureImpl()
/third_party/bounds_checking_function/include/
Dsecurec.h61 /* The src buffer is not correct and destination buffer can not be reset */
71 /* The destination buffer is not long enough and destination buffer can not be reset */
128 * Parameter: dest - destination address
129 * Parameter: destMax - The maximum length of destination buffer
147 * Parameter: dest - destination address
148 * Parameter: destMax - The maximum length of destination buffer
160 * Parameter: dest - destination address
161 * Parameter: destMax - The maximum length of destination buffer
173 * Parameter: strDest - destination address
174 …* Parameter: destMax - The maximum length of destination buffer(including the terminating null cha…
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/mapped_types/
Dmapped_types_1.ts30 destination: string; property
37 destination: "earth",
44 Assert.equal(pt2.destination, undefined);
48 Assert.equal(pt2.destination, undefined);
52 Assert.equal(pt2.destination, undefined);
53 pt2 = { destination: "earth" };
56 Assert.equal(pt2.destination, "earth");
60 Assert.equal(pt2.destination, undefined);
61 pt2 = { name: "lwx", age: 27, destination: "nanj" };
64 Assert.equal(pt2.destination, "nanj");
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_blend_operation_advanced.adoc38 compute component-wise minimums or maximums of source and destination color
41 ename:VK_BLEND_OP_REVERSE_SUBTRACT modes multiply the source and destination
42 colors by source and destination factors and either add the two products
50 blending equations do not use source and destination factors specified by
53 source and destination colors.
69 blending source and destination colors with partial coverage have three
71 destination, from the portion covered only by the source, and from the
72 portion covered only by the destination.
75 can: be used to specify a correlation between source and destination pixel
77 If set to ename:VK_BLEND_OVERLAP_CONJOINT_EXT, the source and destination
[all …]
DVK_EXT_blend_operation_advanced.txt38 compute component-wise minimums or maximums of source and destination color
41 ename:VK_BLEND_OP_REVERSE_SUBTRACT modes multiply the source and destination
42 colors by source and destination factors and either add the two products
50 blending equations do not use source and destination factors specified by
53 source and destination colors.
69 blending source and destination colors with partial coverage have three
71 destination, from the portion covered only by the source, and from the
72 portion covered only by the destination.
75 can: be used to specify a correlation between source and destination pixel
77 If set to ename:VK_BLEND_OVERLAP_CONJOINT_EXT, the source and destination
[all …]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskTree.java238 * Merges all fields specified by this FieldMaskTree from {@code source} to {@code destination}.
240 void merge(Message source, Message.Builder destination, FieldMaskUtil.MergeOptions options) { in merge() argument
241 if (source.getDescriptorForType() != destination.getDescriptorForType()) { in merge()
247 merge(root, "", source, destination, options); in merge()
251 * Merges all fields specified by a sub-tree from {@code source} to {@code destination}.
257 Message.Builder destination, in merge() argument
259 if (source.getDescriptorForType() != destination.getDescriptorForType()) { in merge()
262 "source (%s) and destination (%s) descriptor must be equal", in merge()
263 source.getDescriptorForType(), destination.getDescriptorForType())); in merge()
286 if (!source.hasField(field) && !destination.hasField(field)) { in merge()
[all …]

12345678910>>...148