/third_party/boost/boost/gil/concepts/ |
D | image_view.hpp | 102 template <typename View> 107 gil_function_requires<Regular<View>>(); in constraints() 109 using value_type = typename View::value_type; in constraints() 110 using reference = typename View::reference; // result of dereferencing in constraints() 111 using pointer = typename View::pointer; in constraints() 112 …using difference_type = typename View::difference_type; // result of operator-(1d_iterator,1d_iter… in constraints() 113 using const_t = typename View::const_t; // same as this type, but over const values in constraints() 114 using point_t = typename View::point_t; // N-dimensional point in constraints() 115 using locator = typename View::locator; // N-dimensional locator in constraints() 116 using iterator = typename View::iterator; in constraints() [all …]
|
/third_party/boost/boost/gil/ |
D | image_view_factory.hpp | 44 template <typename View> 46 : dynamic_y_step_type<typename dynamic_x_step_type<View>::type> {}; 50 template <typename View> 52 : dynamic_xy_step_type<typename transposed_type<View>::type> {}; 80 template <typename View, bool IsMutable> struct channel_pointer_type_impl; 82 template <typename View> struct channel_pointer_type_impl<View, true> { 83 using type = typename channel_type<View>::type *; 85 template <typename View> struct channel_pointer_type_impl<View, false> { 86 using type = const typename channel_type<View>::type *; 89 template <typename View> struct channel_pointer_type [all …]
|
/third_party/boost/boost/gil/extension/io/tiff/detail/ |
D | write.hpp | 78 template< typename View > 80 : public is_write_supported< typename get_pixel_type< View >::type 113 template<typename View> 114 void apply( const View& view ) in apply() 121 template< typename View > 122 void write_view( const View& view ) in write_view() 124 using pixel_t = typename View::value_type; in write_view() 164 template<typename View> 165 void write_bit_aligned_view_to_dev( const View& view in write_bit_aligned_view_to_dev() 172 using x_it_t = typename View::x_iterator; in write_bit_aligned_view_to_dev() [all …]
|
D | is_allowed.hpp | 22 template <typename View, typename Channel, typename Enable = void> 26 template <typename View, typename Channel> 29 View, 35 typename get_pixel_type<View>::type 44 template <typename View, typename Channel> 47 View, 55 typename is_bit_aligned<typename get_pixel_type<View>::type>::type 66 template <typename View, typename Channel> 69 View, 77 typename is_bit_aligned<typename get_pixel_type<View>::type>::type [all …]
|
D | read.hpp | 52 template< typename View 57 void read_plane( const View& dst_view in read_plane() 63 using plane_t = typename kth_channel_view_type<K, View>::type; in read_plane() 75 template< typename View 80 void read_plane( const View& /* dst_view */ in read_plane() 139 template< typename View > 140 void apply( View& dst_view ) in apply() 183 io_error_if( !detail::is_allowed< View >( this->_info in apply() 191 plane_recursion< num_channels< View >::value - 1 >::read_plane( dst_view in apply() 210 template< typename View > [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | specializedInheritedConstructors1.types | 7 class View<TModel> { 8 >View : View<TModel> 20 class MyView extends View<Model> { } 22 >View : View<Model> 31 var aView = new View({ model: new Model() }); 32 >aView : View<Model> 33 >new View({ model: new Model() }) : View<Model> 34 >View : typeof View 40 var aView2 = new View(m); 41 >aView2 : View<Model> [all …]
|
D | specializedInheritedConstructors1.js | 6 class View<TModel> { class 12 class MyView extends View<Model> { } 15 var aView = new View({ model: new Model() }); 16 var aView2 = new View(m); 36 var View = /** @class */ (function () { 37 function View(options) { class in View 39 return View; 52 }(View)); 54 var aView = new View({ model: new Model() }); 55 var aView2 = new View(m);
|
D | specializedInheritedConstructors1.symbols | 11 class View<TModel> { 12 >View : Symbol(View, Decl(specializedInheritedConstructors1.ts, 2, 1)) 21 >model : Symbol(View.model, Decl(specializedInheritedConstructors1.ts, 5, 49)) 28 class MyView extends View<Model> { } 30 >View : Symbol(View, Decl(specializedInheritedConstructors1.ts, 2, 1)) 40 var aView = new View({ model: new Model() }); 42 >View : Symbol(View, Decl(specializedInheritedConstructors1.ts, 2, 1)) 46 var aView2 = new View(m); 48 >View : Symbol(View, Decl(specializedInheritedConstructors1.ts, 2, 1))
|
/third_party/boost/libs/gil/doc/html/_sources/design/ |
D | image_view.rst.txt | 1 Image View 21 concept RandomAccessNDImageViewConcept<Regular View> 26 …typename const_t; where RandomAccessNDImageViewConcept<View>; // same as View, but over immutable… 44 static type make(const View& v, const Deref& deref); 50 View::View(const locator&, const point_type&); 52 size_type View::size() const; // total number of elements 53 reference operator[](View, const difference_type&) const; // 1-dimensional reference 54 iterator View::begin() const; 55 iterator View::end() const; 56 reverse_iterator View::rbegin() const; [all …]
|
/third_party/boost/libs/gil/doc/design/ |
D | image_view.rst | 1 Image View 21 concept RandomAccessNDImageViewConcept<Regular View> 26 …typename const_t; where RandomAccessNDImageViewConcept<View>; // same as View, but over immutable… 44 static type make(const View& v, const Deref& deref); 50 View::View(const locator&, const point_type&); 52 size_type View::size() const; // total number of elements 53 reference operator[](View, const difference_type&) const; // 1-dimensional reference 54 iterator View::begin() const; 55 iterator View::end() const; 56 reverse_iterator View::rbegin() const; [all …]
|
/third_party/boost/boost/gil/extension/toolbox/metafunctions/ |
D | channel_view.hpp | 16 template <typename Channel, typename View> 21 typename color_space_type<View>::type, // color (Boost.MP11-compatible list) 26 template<typename Channel, typename View> 29 channel_type_to_index<Channel, View>::value, 30 View 36 View 39 using parent_t = kth_channel_view_type<index, View>; 42 static type make( const View& src ) in make() 49 template<typename Channel, typename View> 50 auto channel_view(View const& src) in channel_view() [all …]
|
/third_party/boost/boost/gil/io/ |
D | dynamic_io_new.hpp | 55 template <typename View> 56 void apply(View const& view, std::true_type) { _op->apply(view); } in apply() 58 template <typename View, typename Info> 59 … void apply(View const& view, Info const & info, const std::true_type) { _op->apply(view, info); } in apply() 61 template <typename View> 62 void apply(View const& /* view */, std::false_type) in apply() 67 template <typename View, typename Info > 68 void apply(View const& /* view */, Info const& /* info */, const std::false_type) in apply() 78 template <typename View> 79 void operator()(View const& view) in operator ()() [all …]
|
D | read_view.hpp | 29 template <typename Reader, typename View> 31 void read_view(Reader reader, View const& view, in read_view() 40 typename get_pixel_type<View>::type, in read_view() 56 template <typename Device, typename View, typename FormatTag> 60 View const& view, in read_view() 70 typename get_pixel_type<View>::type, in read_view() 88 template <typename Device, typename View, typename FormatTag> 90 void read_view(Device& file, View const& view, FormatTag const& tag, in read_view() 99 typename get_pixel_type<View>::type, in read_view() 116 template <typename String, typename View, typename FormatTag> [all …]
|
D | read_and_convert_view.hpp | 30 template <typename Reader, typename View> 32 void read_and_convert_view(Reader& reader, View const& view, in read_and_convert_view() 53 template <typename Device, typename View, typename ColorConverter, typename FormatTag> 57 View const& view, in read_and_convert_view() 82 template <typename String, typename View, typename ColorConverter, typename FormatTag> 86 View const& view, in read_and_convert_view() 111 template <typename String, typename View, typename ColorConverter, typename FormatTag> 115 View const& view, in read_and_convert_view() 140 template <typename Device, typename View, typename ColorConverter, typename FormatTag> 144 View const& view, in read_and_convert_view() [all …]
|
/third_party/boost/boost/gil/extension/io/pnm/detail/ |
D | write.hpp | 35 template< typename View > 37 : public is_write_supported< typename get_pixel_type< View >::type 69 template< typename View > 70 void apply( const View& view ) in apply() 72 using pixel_t = typename get_pixel_type<View>::type; in apply() 77 std::size_t chn = num_channels< View >::value; in apply() 80 unsigned int type = get_type< num_channels< View >::value >( is_bit_aligned< pixel_t >() ); in apply() 134 template< typename View > 135 void write_data( const View& src in write_data() 140 static_assert(std::is_same<View, typename gray1_image_t::view_t>::value, ""); in write_data() [all …]
|
/third_party/boost/boost/gil/extension/dynamic_image/ |
D | image_view_factory.hpp | 32 template <typename View> 33 auto operator()(View const& src) const -> result_type in operator ()() 44 template <typename View> 45 auto operator()(View const& src) const -> result_type in operator ()() 56 template <typename View> 57 auto operator()(View const& src) const -> result_type in operator ()() 68 template <typename View> 69 auto operator()(View const& src) const -> result_type in operator ()() 80 template <typename View> 81 auto operator()(View const& src) const -> result_type in operator ()() [all …]
|
D | algorithm.hpp | 45 template <typename ...Types, typename View> 46 bool equal_pixels(any_image_view<Types...> const& src, View const& dst) in equal_pixels() 56 template <typename View, typename ...Types> 57 bool equal_pixels(View const& src, any_image_view<Types...> const& dst) in equal_pixels() 90 template <typename ...Types, typename View> 91 void copy_pixels(any_image_view<Types...> const& src, View const& dst) in copy_pixels() 99 template <typename ...Types, typename View> 100 void copy_pixels(View const& src, any_image_view<Types...> const& dst) in copy_pixels() 121 template <typename ...Types, typename View, typename CC> 122 void copy_and_convert_pixels(any_image_view<Types...> const& src, View const& dst, CC cc) in copy_and_convert_pixels() [all …]
|
/third_party/boost/boost/gil/extension/io/png/detail/ |
D | write.hpp | 31 template< typename View > 33 : public is_write_supported< typename get_pixel_type< View >::type 66 template< typename View > 67 void apply( const View& view ) in apply() 76 , typename is_bit_aligned< typename View::value_type >::type() in apply() 82 template<typename View> 83 void write_view( const View& view in write_view() 87 using pixel_t = typename get_pixel_type<View>::type; in write_view() 100 std::vector< pixel< typename channel_type< View >::type in write_view() 101 , layout<typename color_space_type< View >::type > in write_view() [all …]
|
/third_party/boost/boost/gil/extension/io/targa/detail/ |
D | write.hpp | 35 template< typename View > 37 : public is_write_supported< typename get_pixel_type< View >::type 69 template<typename View> 70 void apply( const View& view ) in apply() 77 template< typename View > 78 void write( const View& view ) in write() 80 uint8_t bit_depth = static_cast<uint8_t>( num_channels<View>::value * 8 ); in write() 104 write_image< View in write() 105 , typename detail::get_targa_view_type< num_channels< View >::value >::type in write() 110 template< typename View [all …]
|
/third_party/boost/libs/gil/test/legacy/ |
D | recreate_image.cpp | 47 template< typename View > 48 std::size_t get_row_size_in_memunits( typename View::x_coord_t width) in get_row_size_in_memunits() 50 std::size_t size_in_memunits = width * memunit_step( typename View::x_iterator() ); in get_row_size_in_memunits() 56 template< typename View 59 std::size_t total_allocated_size_in_bytes( const typename View::point_t& dimensions ) in total_allocated_size_in_bytes() 62 using x_iterator = typename View::x_iterator; in total_allocated_size_in_bytes() 65 const std::size_t _channels_in_image = mp11::mp_eval_if< is_pixel< typename View::value_type > in total_allocated_size_in_bytes() 66 , num_channels< View > in total_allocated_size_in_bytes() 70 …std::size_t size_in_units = is_planar_impl( get_row_size_in_memunits< View >( dimensions.x ) * dim… in total_allocated_size_in_bytes() 76 std::size_t btm = byte_to_memunit< typename View::x_iterator >::value; in total_allocated_size_in_bytes()
|
/third_party/boost/boost/gil/extension/io/bmp/detail/ |
D | write.hpp | 31 template< typename View > 33 : public is_write_supported< typename get_pixel_type< View >::type 67 template<typename View> 68 void apply( const View& view ) in apply() 77 template< typename View > 78 void write( const View& view ) in write() 95 int bpp = num_channels< View >::value * 8; in write() 107 std::size_t spn = ( view.width() * num_channels< View >::value + 3 ) & ~3; in write() 134 write_image< View in write() 135 , typename detail::get_bgr_cs< num_channels< View >::value >::type in write() [all …]
|
/third_party/boost/boost/bimap/relation/detail/ |
D | mutant.hpp | 49 template< class View, class Type > 52 View& 57 ::boost::mpl::contains<BOOST_DEDUCED_TYPENAME Type::mutant_views,View> in mutate() 59 return *reinterpret_cast< View* >(boost::addressof(m)); in mutate() 62 template< class View, class Type > 65 const View& 70 ::boost::mpl::contains<BOOST_DEDUCED_TYPENAME Type::mutant_views,View> in mutate() 72 return *reinterpret_cast< const View* >(boost::addressof(m)); in mutate()
|
/third_party/boost/boost/gil/extension/io/jpeg/detail/ |
D | write.hpp | 33 template< typename View > 35 : public is_write_supported< typename get_pixel_type< View >::type 68 template<typename View> 69 void apply( const View& view ) in apply() 76 template<typename View> 77 void write_rows( const View& view ) in write_rows() 79 std::vector< pixel< typename channel_type< View >::type in write_rows() 80 , layout<typename color_space_type< View >::type > in write_rows() 90 using channel_t = typename channel_type<typename View::value_type>::type; in write_rows() 94 this->get()->input_components = num_channels<View>::value; in write_rows() [all …]
|
/third_party/cef/libcef/browser/views/ |
D | view_util.cc | 41 views::View* view = CefViewAdapter::GetFor(cef_view)->Get(); in Register() 50 static CefRefPtr<CefView> GetFor(const views::View* view) { in GetFor() 62 static std::unique_ptr<views::View> PassOwnership(CefRefPtr<CefView> cef_view) in PassOwnership() 67 std::unique_ptr<views::View> view = in PassOwnership() 87 views::View* view = adapter->Get(); in ResumeOwnership() 134 CefRefPtr<CefView> GetFor(const views::View* view, bool find_known_parent) { in GetFor() 142 const views::View* current_view = view; in GetFor() 153 views::View* GetFor(CefRefPtr<CefView> view) { in GetFor() 157 std::unique_ptr<views::View> PassOwnership(CefRefPtr<CefView> view) { in PassOwnership() 184 views::View* content_view = widget->widget_delegate()->GetContentsView(); in GetWindowFor() [all …]
|
/third_party/flutter/skia/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/helpers/ |
D | FullScreenHelper.java | 20 import android.view.View; 42 View.SYSTEM_UI_FLAG_LAYOUT_STABLE in setFullScreenOnWindowFocusChanged() 43 | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION in setFullScreenOnWindowFocusChanged() 44 | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN in setFullScreenOnWindowFocusChanged() 45 | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION in setFullScreenOnWindowFocusChanged() 46 | View.SYSTEM_UI_FLAG_FULLSCREEN in setFullScreenOnWindowFocusChanged() 47 | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY); in setFullScreenOnWindowFocusChanged()
|