Home
last modified time | relevance | path

Searched refs:view1 (Results 1 – 23 of 23) sorted by relevance

/third_party/boost/libs/fusion/test/sequence/
Dsingle_view.cpp49 single_view<int> view1(3); in main() local
50 std::cout << view1 << std::endl; in main()
54 *begin(view1) += 4; in main()
56 std::cout << view1 << std::endl; in main()
57 BOOST_TEST(*begin(view1) == 3); in main()
58 BOOST_TEST(at<boost::mpl::int_<0> >(view1) == 3); in main()
59 BOOST_TEST(view1.val == 3); in main()
60 BOOST_TEST(3 == front(view1)); in main()
61 BOOST_TEST(3 == back(view1)); in main()
62 BOOST_TEST(!empty(view1)); in main()
[all …]
/third_party/boost/libs/log/test/run/
Dattr_attribute_value_set.cpp81 attr_values view1(set1, set2, set3); in BOOST_AUTO_TEST_CASE() local
82 view1.freeze(); in BOOST_AUTO_TEST_CASE()
84 BOOST_CHECK(!view1.empty()); in BOOST_AUTO_TEST_CASE()
85 BOOST_CHECK_EQUAL(view1.size(), 3UL); in BOOST_AUTO_TEST_CASE()
93 attr_values view1(set1, set2, set3); in BOOST_AUTO_TEST_CASE() local
94 view1.freeze(); in BOOST_AUTO_TEST_CASE()
96 BOOST_CHECK(!view1.empty()); in BOOST_AUTO_TEST_CASE()
97 BOOST_CHECK_EQUAL(view1.size(), 3UL); in BOOST_AUTO_TEST_CASE()
99 attr_values view2 = view1; in BOOST_AUTO_TEST_CASE()
123 attr_values view1(set1, set2, set3); in BOOST_AUTO_TEST_CASE() local
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Ddataview.js117 var view1 = new DataView (buffer); variable
119 assert (view1.buffer === buffer);
120 assert (view1.byteOffset === 0);
121 assert (view1.byteLength === buffer.byteLength);
202 view1 = new DataView (buffer); variable
206 view1.setUint8 (0, 255);
207 validateResult(view1, 0, false, [-1, 255, -256, 65280, -16777216, 4278190080, -1.7014118346046924e+…
208 validateResult(view1, 0, true, [-1, 255, 255, 255, 255, 255, 3.5733110840282835e-43, 1.26e-321]);
209 validateResult(view1, 2, false, [0, 0, 0, 0, 0, 0, 0, 0]);
210 validateResult(view1, 2, true, [0, 0, 0, 0, 0, 0, 0, 0]);
[all …]
/third_party/jerryscript/tests/unit-core/
Dtest-dataview.c37 jerry_value_t view1 = jerry_create_dataview (arraybuffer, 0, 16); in main() local
38 TEST_ASSERT (!jerry_value_is_error (view1)); in main()
39 TEST_ASSERT (jerry_value_is_dataview (view1)); in main()
43 jerry_value_t internal_buffer = jerry_get_dataview_buffer (view1, &byteOffset, &byteLength); in main()
50 TEST_ASSERT (!jerry_value_is_error (view1)); in main()
77 TEST_ASSERT (jerry_set_property (global_obj, view1_str, view1)); in main()
97 jerry_release_value (view1); in main()
/third_party/boost/libs/geometry/test/views/
Dreversible_closeable.cpp53 rview view1(range); in test_close_reverse() local
54 cview view2(view1); in test_close_reverse()
66 cview view1(range); in test_reverse_close() local
67 rview view2(view1); in test_reverse_close()
83 rview1 view1(range); in test_reverse_reverse() local
84 rview2 view2(view1); in test_reverse_reverse()
99 cview1 view1(range); in test_close_close() local
100 cview2 view2(view1); in test_close_close()
/third_party/gn/src/gn/
Dimmutable_vector_unittest.cc70 ImmutableVectorView<int> view1 = vec1; in TEST() local
71 ImmutableVectorView<int> view2(view1); in TEST()
73 EXPECT_EQ(vec1.size(), view1.size()); in TEST()
76 EXPECT_EQ(vec1.begin(), view1.begin()); in TEST()
77 EXPECT_EQ(vec1.end(), view1.end()); in TEST()
/third_party/boost/libs/gil/test/core/image_view/
Dcollection.cpp63 gil::gray8_image_t::view_t view1; in test_swap() local
67 view1 = gil::view(image); in test_swap()
68 view1.swap(view2); in test_swap()
70 BOOST_TEST(view1.empty()); in test_swap()
/third_party/node/test/fixtures/wpt/FileAPI/support/
DBlob.js55 const [view1, view2] = [array1, array2].map((array) => {
61 assert_equals(view1.byteLength, view2.byteLength,
64 const byteLength = view1.byteLength;
67 assert_equals(view1.getUint8(i), view2.getUint8(i),
/third_party/cef/tests/ceftests/views/
Dwindow_unittest.cc132 CefRefPtr<CefView> view1 = window->GetViewForID(kWPanel1ID); in RunWindowLayoutAndCoords() local
133 EXPECT_TRUE(view1.get()); in RunWindowLayoutAndCoords()
144 EXPECT_TRUE(view1->ConvertPointToScreen(point)); in RunWindowLayoutAndCoords()
155 EXPECT_TRUE(view1->ConvertPointFromScreen(point)); in RunWindowLayoutAndCoords()
164 EXPECT_TRUE(view1->ConvertPointToWindow(point)); in RunWindowLayoutAndCoords()
172 EXPECT_TRUE(view1->ConvertPointFromWindow(point)); in RunWindowLayoutAndCoords()
180 EXPECT_TRUE(view1->ConvertPointToView(view2, point)); in RunWindowLayoutAndCoords()
183 EXPECT_TRUE(view2->ConvertPointToView(view1, point)); in RunWindowLayoutAndCoords()
188 EXPECT_TRUE(view1->ConvertPointFromView(view2, point)); in RunWindowLayoutAndCoords()
191 EXPECT_TRUE(view2->ConvertPointFromView(view1, point)); in RunWindowLayoutAndCoords()
/third_party/boost/boost/gil/concepts/
Dimage_view.hpp288 i = view1.begin(); in constraints()
292 ci = view1.begin(); in constraints()
296 s = view1.size(); in constraints()
300 view1.empty(); in constraints()
302 view1.swap(view2); in constraints()
304 View view1; member
/third_party/node/test/fixtures/wpt/FileAPI/blob/
DBlob-constructor.any.js350 var view1 = new Uint16Array(view.buffer, 2);
351 return new Blob([view1, view.buffer, view1]);
/third_party/gstreamer/gstplugins_bad/ext/opencv/
Dgstdewarp.cpp667 cv::Mat view1, view2, panorama_image, concatenated; in gst_dewarp_transform_frame() local
675 view1 = in gst_dewarp_transform_frame()
680 cv::vconcat (view1, view2, concatenated); in gst_dewarp_transform_frame()
683 cv::Mat view1, view2, view3, view4, concat1, concat2, panorama_image, in gst_dewarp_transform_frame() local
695 view1 = panorama_image (cv::Rect (0, 0, view_width, view_height)); in gst_dewarp_transform_frame()
704 cv::vconcat (view1, view2, concat1); in gst_dewarp_transform_frame()
/third_party/boost/boost/gil/
Dalgorithm.hpp778 void uninitialized_copy_pixels(View1 const& view1, View2 const& view2) in uninitialized_copy_pixels() argument
781 BOOST_ASSERT(view1.dimensions() == view2.dimensions()); in uninitialized_copy_pixels()
783 if (view1.is_1d_traversable() && view2.is_1d_traversable()) in uninitialized_copy_pixels()
786 view1.begin().x(), view1.end().x(), view2.begin().x(), is_planar()); in uninitialized_copy_pixels()
793 for (y = 0; y < view1.height(); ++y) in uninitialized_copy_pixels()
795 view1.row_begin(y), view1.row_end(y), view2.row_begin(y), is_planar()); in uninitialized_copy_pixels()
/third_party/boost/boost/geometry/algorithms/detail/overlay/
Dget_turns.hpp323 view_type1 view1(cview1); in apply() local
326 range1_iterator begin_range_1 = boost::begin(view1); in apply()
327 range1_iterator end_range_1 = boost::end(view1); in apply()
339 get_start_point_iterator(sec1, view1, prev1, it1, end1, in apply()
Dintersection_insert.hpp888 detail::boundary_view<Geometry1 const> view1(geometry1); in apply() local
897 >::apply(view1, view2, robust_policy, oit, strategy); in apply()
/third_party/boost/libs/hana/include/boost/hana/experimental/
Dview.hpp444 static constexpr auto apply(View1 view1, View2 view2) { in apply()
445 return experimental::joined(view1, view2); in apply()
/third_party/boost/boost/hana/experimental/
Dview.hpp444 static constexpr auto apply(View1 view1, View2 view2) { in apply()
445 return experimental::joined(view1, view2); in apply()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DResourceUsageTrackingTests.cpp1311 wgpu::TextureView view1 = texture1.CreateView(); in TEST_F() local
1321 utils::ComboRenderPassDescriptor renderPass({view1}); in TEST_F()
1332 wgpu::BindGroup bg = utils::MakeBindGroup(device, bgl, {{0, view1}}); in TEST_F()
1358 wgpu::TextureView view1 = texture1.CreateView(); in TEST_F() local
1364 wgpu::BindGroup bg1 = utils::MakeBindGroup(device, bgl, {{0, view1}}); in TEST_F()
1400 wgpu::TextureView view1 = texture1.CreateView(); in TEST_F() local
1412 wgpu::BindGroup readBG1 = utils::MakeBindGroup(device, readBGL, {{0, view1}}); in TEST_F()
/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_state.c1393 struct pipe_sampler_view *view1);
1460 ARG_BIND_VIEW(struct pipe_sampler_view, view1)) in CSMT_ITEM_NO_WAIT() argument
1489 pipe_sampler_view_reference(&context->texture[stage].view[1], view1); in CSMT_ITEM_NO_WAIT()
1504 struct pipe_sampler_view *view0 = NULL, *view1 = NULL; in nine_context_set_texture() local
1518 view1 = NineBaseTexture9_GetSamplerView(tex, 1); in nine_context_set_texture()
1524 res, view0, view1); in nine_context_set_texture()
/third_party/boost/libs/gil/doc/html/
Dsearchindex.js1 …on:[10,14,15,23,24,29],vertic:[12,14,15,19,28],via:[6,10],video:[0,22,28],view1:10,view2:10,view:[…
/third_party/boost/libs/gil/doc/design/
Dimage_view.rst399 bool equal_pixels(const V1& view1, const V2& view2);
/third_party/boost/libs/gil/doc/html/_sources/design/
Dimage_view.rst.txt399 bool equal_pixels(const V1& view1, const V2& view2);
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch188174 - 6 "CREATE TABLE auxa.view1(a, b)" {{table view1 already exists}}
188175 + 6 "CREATE TABLE auxa.view1(a, b)" {{view view1 already exists}}