Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 1369) sorted by relevance

12345678910>>...55

/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/
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 …]
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 …]
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/flutter/skia/third_party/externals/dawn/src/tests/unittests/validation/
DCopyCommandsValidationTests.cpp154 dawn::Buffer destination = CreateBuffer(16, dawn::BufferUsageBit::CopyDst); in TEST_F() local
159 encoder.CopyBufferToBuffer(source, 0, destination, 0, 16); in TEST_F()
160 encoder.CopyBufferToBuffer(source, 8, destination, 0, 8); in TEST_F()
161 encoder.CopyBufferToBuffer(source, 0, destination, 8, 8); in TEST_F()
168 encoder.CopyBufferToBuffer(source, 0, destination, 0, 0); in TEST_F()
169 encoder.CopyBufferToBuffer(source, 0, destination, 16, 0); in TEST_F()
170 encoder.CopyBufferToBuffer(source, 16, destination, 0, 0); in TEST_F()
178 dawn::Buffer destination = CreateBuffer(16, dawn::BufferUsageBit::CopyDst); in TEST_F() local
183 encoder.CopyBufferToBuffer(source, 8, destination, 0, 12); in TEST_F()
190 encoder.CopyBufferToBuffer(source, 0, destination, 8, 12); in TEST_F()
[all …]
/third_party/iptables/extensions/
Dlibipt_DNAT.t3 -j DNAT --to-destination 1.1.1.1;=;OK
4 -j DNAT --to-destination 1.1.1.1-1.1.1.10;=;OK
5 -j DNAT --to-destination 1.1.1.1:1025-65535;;FAIL
6 -j DNAT --to-destination 1.1.1.1 --to-destination 2.2.2.2;;FAIL
7 -p tcp -j DNAT --to-destination 1.1.1.1:1025-65535;=;OK
8 -p tcp -j DNAT --to-destination 1.1.1.1-1.1.1.10:1025-65535;=;OK
9 -p tcp -j DNAT --to-destination 1.1.1.1-1.1.1.10:1025-65536;;FAIL
10 -p tcp -j DNAT --to-destination 1.1.1.1-1.1.1.10:1025-65535 --to-destination 2.2.2.2-2.2.2.20:1025-…
11 -p tcp -j DNAT --to-destination 1.1.1.1:1000-2000/1000;=;OK
12 -p tcp -j DNAT --to-destination 1.1.1.1:1000-2000/3000;=;OK
[all …]
Dlibip6t_DNAT.t3 -j DNAT --to-destination dead::beef;=;OK
4 -j DNAT --to-destination dead::beef-dead::fee7;=;OK
5 -j DNAT --to-destination [dead::beef]:1025-65535;;FAIL
6 -j DNAT --to-destination [dead::beef] --to-destination [dead::fee7];;FAIL
7 -p tcp -j DNAT --to-destination [dead::beef]:1025-65535;=;OK
8 -p tcp -j DNAT --to-destination [dead::beef-dead::fee7]:1025-65535;=;OK
9 -p tcp -j DNAT --to-destination [dead::beef-dead::fee7]:1025-65536;;FAIL
10 -p tcp -j DNAT --to-destination [dead::beef-dead::fee7]:1025-65535 --to-destination [dead::beef-dea…
11 -p tcp -j DNAT --to-destination [dead::beef-dead::fee7]:1000-2000/1000;=;OK
12 -p tcp -j DNAT --to-destination [dead::beef-dead::fee7]:1000-2000/3000;=;OK
[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()
270 wgpu::Buffer destination = CreateResolveBuffer(kQueryCount * sizeof(uint64_t)); in TEST_P() local
273 queue.WriteBuffer(destination, 0, &kSentinelValue, sizeof(kSentinelValue)); in TEST_P()
[all …]
/third_party/gettext/libtextstyle/gnulib-local/lib/
Dhtml-ostream.oo.c37 ostream_t destination;
58 ostream_t destination = stream->destination; in write_attribute_value() local
68 ostream_write_mem (destination, p, q - p); in write_attribute_value()
74 ostream_write_str (destination, "<"); in write_attribute_value()
77 ostream_write_str (destination, ">"); in write_attribute_value()
80 ostream_write_str (destination, "&"); in write_attribute_value()
83 ostream_write_str (destination, """); in write_attribute_value()
86 ostream_write_str (destination, "'"); in write_attribute_value()
137 ostream_write_str (stream->destination, "<span class=\""); in emit_pending_spans()
138 ostream_write_str (stream->destination, classname); in emit_pending_spans()
[all …]
Dhtml-styled-ostream.oo.c47 ostream_t destination;
73 ostream_write_str (stream->destination, "</body>\n"); in free()
74 ostream_write_str (stream->destination, "</html>\n"); in free()
127 html_styled_ostream_create (ostream_t destination, const char *css_filename) in html_styled_ostream_create() argument
133 stream->destination = destination; in html_styled_ostream_create()
134 stream->html_destination = html_ostream_create (destination); in html_styled_ostream_create()
137 ostream_write_str (stream->destination, "<?xml version=\"1.0\"?>\n"); in html_styled_ostream_create()
148 ostream_write_str (stream->destination, in html_styled_ostream_create()
150 ostream_write_str (stream->destination, "<html>\n"); in html_styled_ostream_create()
151 ostream_write_str (stream->destination, "<head>\n"); in html_styled_ostream_create()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandEncoder.cpp380 const BufferBase* destination, in ValidateQuerySetResolve() argument
394 destination, destinationOffset); in ValidateQuerySetResolve()
396 uint64_t bufferSize = destination->GetSize(); 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
658 DAWN_TRY(GetDevice()->ValidateObject(destination)); in APICopyBufferToBuffer()
660 DAWN_INVALID_IF(source == destination, in APICopyBufferToBuffer()
666 ValidateCopySizeFitsInBuffer(destination, destinationOffset, size), in APICopyBufferToBuffer()
[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/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/boost/boost/geometry/algorithms/detail/overlay/
Dconvert_ring.hpp50 static inline void apply(Destination& destination, Source const& source, in apply()
55 geometry::convert(source, destination); in apply()
58 boost::reverse(destination); in apply()
69 static inline void apply(Destination& destination, Source const& source, in apply()
74 geometry::convert(source, exterior_ring(destination)); in apply()
77 boost::reverse(exterior_ring(destination)); in apply()
92 interior_rings(destination).resize( in apply()
93 interior_rings(destination).size() + 1); in apply()
94 geometry::convert(source, interior_rings(destination).back()); in apply()
97 boost::reverse(interior_rings(destination).back()); in apply()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dimage_rtl_test.dart73 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
74 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
75 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
76 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
77 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
78 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
79 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
109 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
110 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
111 …..drawImageRect(source: const Rect.fromLTRB(0.0, 0.0, 16.0, 9.0), destination: const Rect.fromLTRB…
[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/flutter/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()
141 Object destination(std::move(source)); in TEST() local
144 ASSERT_EQ(destination.Get(), &refcount); in TEST()
147 destination = Object(); in TEST()
[all …]
DRefCountedTests.cpp141 Ref<RCTest> destination(source); in TEST() local
145 ASSERT_EQ(destination.Get(), original); in TEST()
149 destination = nullptr; in TEST()
161 Ref<RCTest> destination; in TEST() local
162 destination = source; in TEST()
165 ASSERT_EQ(destination.Get(), original); in TEST()
171 destination = nullptr; in TEST()
181 Ref<RCTest> destination(std::move(source)); in TEST() local
185 ASSERT_EQ(destination.Get(), original); in TEST()
188 destination = nullptr; in TEST()
[all …]
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dcards_demo.dart73 const TravelDestinationItem({ Key key, @required this.destination, this.shape })
74 : assert(destination != null),
79 final TravelDestination destination;
98 child: TravelDestinationContent(destination: destination),
109 const TappableTravelDestinationItem({ Key key, @required this.destination, this.shape })
110 : assert(destination != null),
115 final TravelDestination destination;
142 child: TravelDestinationContent(destination: destination),
154 const SelectableTravelDestinationItem({ Key key, @required this.destination, this.shape })
155 : assert(destination != null),
[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/flutter/skia/third_party/externals/dawn/src/dawn_native/
DCommandEncoder.cpp740 BufferBase* destination, in CopyBufferToBuffer() argument
751 if (ConsumedError(GetDevice()->ValidateObject(destination))) { in CopyBufferToBuffer()
759 copy->destination = destination; in CopyBufferToBuffer()
765 const TextureCopyView* destination, in CopyBufferToTexture() argument
775 if (ConsumedError(GetDevice()->ValidateObject(destination->texture))) { in CopyBufferToTexture()
783 copy->destination.texture = destination->texture; in CopyBufferToTexture()
784 copy->destination.origin = destination->origin; in CopyBufferToTexture()
786 copy->destination.mipLevel = destination->mipLevel; in CopyBufferToTexture()
787 copy->destination.arrayLayer = destination->arrayLayer; in CopyBufferToTexture()
790 ComputeDefaultRowPitch(destination->texture->GetFormat(), copySize->width); in CopyBufferToTexture()
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DStreamExtensionsTest.cs55 Stream destination = new MemoryStream((int)source.Length); in CopyToTest()
56 source.CopyTo(destination); in CopyToTest()
57 destination.Seek(0, SeekOrigin.Begin); in CopyToTest()
59 Assert.AreEqual(0x31, destination.ReadByte()); in CopyToTest()
60 Assert.AreEqual(0x08, destination.ReadByte()); in CopyToTest()
61 Assert.AreEqual(0xFF, destination.ReadByte()); in CopyToTest()
62 Assert.AreEqual(0x00, destination.ReadByte()); in CopyToTest()
63 Assert.AreEqual(-1, destination.ReadByte()); in CopyToTest()
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs231 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()
253 IMessage destination, in Merge() argument
256 if (source.Descriptor != destination.Descriptor) in Merge()
281 var destinationField = field.Accessor.GetValue(destination); in Merge()
294 field.Accessor.SetValue(destination, destinationField); in Merge()
306 field.Accessor.Clear(destination); in Merge()
310 var destinationField = (IList)field.Accessor.GetValue(destination); in Merge()
325 field.Accessor.Clear(destination); in Merge()
[all …]
/third_party/flutter/skia/site/user/api/
DSkBlendMode_Reference.md60 Replaces destination with <a href='SkColor_Reference#Alpha'>Alpha</a> and <a href='SkColor_Referenc…
69 Replaces destination with source. Destination <a href='SkColor_Reference#Alpha'>alpha</a> and <a hr…
78 Preserves destination, ignoring source. Drawing with <a href='SkPaint_Reference#Paint'>Paint</a> se…
87 Replaces destination with source blended with destination. If source is opaque,
88 replaces destination with source. Used as the default <a href='#Blend_Mode'>Blend_Mode</a> for <a h…
96 Replaces destination with destination blended with source. If destination is opaque,
105 Replaces destination with source using destination opacity.
113 Scales destination opacity by source opacity.
121 Replaces destination with source using the inverse of destination opacity,
122 drawing source fully where destination opacity is zero.
[all …]

12345678910>>...55