/third_party/icu/icu4c/source/i18n/ |
D | number_fluent.cpp | 34 template<typename Derived> 35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation() 36 Derived copy(*this); in notation() 42 template<typename Derived> 43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation() 44 Derived move(std::move(*this)); in notation() 50 template<typename Derived> 51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit() 52 Derived copy(*this); in unit() 59 template<typename Derived> [all …]
|
D | numrange_fluent.cpp | 30 template<typename Derived> 31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 32 Derived copy(*this); in numberFormatterBoth() 39 template<typename Derived> 40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 41 Derived move(std::move(*this)); in numberFormatterBoth() 48 template<typename Derived> 49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth() 50 Derived copy(*this); in numberFormatterBoth() 57 template<typename Derived> [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | number_fluent.cpp | 34 template<typename Derived> 35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation() 36 Derived copy(*this); in notation() 42 template<typename Derived> 43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation() 44 Derived move(std::move(*this)); in notation() 50 template<typename Derived> 51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit() 52 Derived copy(*this); in unit() 59 template<typename Derived> [all …]
|
D | numrange_fluent.cpp | 30 template<typename Derived> 31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 32 Derived copy(*this); in numberFormatterBoth() 39 template<typename Derived> 40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 41 Derived move(std::move(*this)); in numberFormatterBoth() 48 template<typename Derived> 49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth() 50 Derived copy(*this); in numberFormatterBoth() 57 template<typename Derived> [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | number_fluent.cpp | 34 template<typename Derived> 35 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation() 36 Derived copy(*this); in notation() 42 template<typename Derived> 43 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation() 44 Derived move(std::move(*this)); in notation() 50 template<typename Derived> 51 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit() 52 Derived copy(*this); in unit() 59 template<typename Derived> [all …]
|
D | numrange_fluent.cpp | 30 template<typename Derived> 31 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 32 Derived copy(*this); in numberFormatterBoth() 39 template<typename Derived> 40 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(const UnlocalizedNumberFormatter… in numberFormatterBoth() 41 Derived move(std::move(*this)); in numberFormatterBoth() 48 template<typename Derived> 49 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth() 50 Derived copy(*this); in numberFormatterBoth() 57 template<typename Derived> [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | inheritedConstructorWithRestParams2.types | 42 class Derived extends Base { } 43 >Derived : Derived 47 new Derived("", ""); 48 >new Derived("", "") : Derived 49 >Derived : typeof Derived 53 new Derived("", 3); 54 >new Derived("", 3) : Derived 55 >Derived : typeof Derived 59 new Derived("", 3, 3); 60 >new Derived("", 3, 3) : Derived [all …]
|
D | inheritedConstructorWithRestParams.types | 9 class Derived extends Base { } 10 >Derived : Derived 14 new Derived("", ""); 15 >new Derived("", "") : Derived 16 >Derived : typeof Derived 20 new Derived(""); 21 >new Derived("") : Derived 22 >Derived : typeof Derived 25 new Derived(); 26 >new Derived() : Derived [all …]
|
D | genericCallWithConstraintsTypeArgumentInference.types | 8 class Derived extends Base { bar: string; } 9 >Derived : Derived 13 class Derived2 extends Derived { baz: string; } 15 >Derived : Derived 21 var d1: Derived; 22 >d1 : Derived 41 var r2 = foo(d1); // Derived 42 >r2 : Derived 43 >foo(d1) : Derived 45 >d1 : Derived [all …]
|
D | subtypingWithCallSignatures2.types | 8 class Derived extends Base { bar: string; } 9 >Derived : Derived 13 class Derived2 extends Derived { baz: string; } 15 >Derived : Derived 75 declare function foo6(a: (x: (arg: Base) => Derived) => Base): typeof a; 76 >foo6 : { (a: (x: (arg: Base) => Derived) => Base): typeof a; (a: any): any; } 77 >a : (x: (arg: Base) => Derived) => Base 78 >x : (arg: Base) => Derived 80 >a : (x: (arg: Base) => Derived) => Base 83 >foo6 : { (a: (x: (arg: Base) => Derived) => Base): (x: (arg: Base) => Derived) => Base; (a: any): … [all …]
|
D | genericCallWithObjectTypeArgsAndConstraints2.types | 11 class Derived extends Base { 12 >Derived : Derived 31 var r = f({ foo: new Base(), bar: new Derived() }); 33 >f({ foo: new Base(), bar: new Derived() }) : Base 35 >{ foo: new Base(), bar: new Derived() } : { foo: Base; bar: Derived; } 39 >bar : Derived 40 >new Derived() : Derived 41 >Derived : typeof Derived 43 var r2 = f({ foo: new Derived(), bar: new Derived() }); 44 >r2 : Derived [all …]
|
D | derivedClassIncludesInheritedMembers.types | 37 class Derived extends Base { 38 >Derived : Derived 42 var d: Derived = new Derived(1); 43 >d : Derived 44 >new Derived(1) : Derived 45 >Derived : typeof Derived 51 >d : Derived 58 >d : Derived 64 >d : Derived 70 >d : Derived [all …]
|
D | subtypingWithConstructSignatures2.types | 8 class Derived extends Base { bar: string; } 9 >Derived : Derived 13 class Derived2 extends Derived { baz: string; } 15 >Derived : Derived 75 declare function foo6(a: new (x: new (arg: Base) => Derived) => Base): typeof a; 76 >foo6 : { (a: new (x: new (arg: Base) => Derived) => Base): typeof a; (a: any): any; } 77 >a : new (x: new (arg: Base) => Derived) => Base 78 >x : new (arg: Base) => Derived 80 >a : new (x: new (arg: Base) => Derived) => Base 83 >foo6 : { (a: new (x: new (arg: Base) => Derived) => Base): new (x: new (arg: Base) => Derived) => … [all …]
|
D | inheritedConstructorWithRestParams2.js | 21 class Derived extends Base { } class 24 new Derived("", ""); 25 new Derived("", 3); 26 new Derived("", 3, 3); 27 new Derived("", 3, 3, 3); 28 new Derived("", 3, ""); 29 new Derived("", "", 3); 30 new Derived("", "", 3, 3); 33 new Derived(3); 34 new Derived("", 3, "", 3); [all …]
|
D | genericCallWithObjectTypeArgsAndConstraints3.types | 10 class Derived extends Base { 11 >Derived : Derived 38 var r1 = f({ x: new Derived(), y: new Derived2() }); // error because neither is supertype of the o… 39 >r1 : Derived 40 >f({ x: new Derived(), y: new Derived2() }) : Derived 42 >{ x: new Derived(), y: new Derived2() } : { x: Derived; y: Derived2; } 43 >x : Derived 44 >new Derived() : Derived 45 >Derived : typeof Derived 63 var r2 = f2({ x: new Derived(), y: new Derived2() }); // ok [all …]
|
D | subtypingWithObjectMembers3.types | 7 interface Derived extends Base { 19 bar: Derived; 20 >bar : Derived 24 foo: Derived; // ok 25 >foo : Derived 35 2.0: Derived; 36 >2.0 : Derived 40 1: Derived; // ok 41 >1 : Derived 51 '2.0': Derived; [all …]
|
/third_party/boost/boost/type_index/ |
D | type_index_facade.hpp | 61 template <class Derived, class TypeInfo> 65 BOOST_CXX14_CONSTEXPR const Derived & derived() const BOOST_NOEXCEPT { in derived() 66 return *static_cast<Derived const*>(this); in derived() 86 inline bool equal(const Derived& rhs) const BOOST_NOEXCEPT { in equal() 94 inline bool before(const Derived& rhs) const BOOST_NOEXCEPT { in before() 127 static Derived type_id() BOOST_NOEXCEPT; 137 static Derived type_id_with_cvr() BOOST_NOEXCEPT; 146 static Derived type_id_runtime(const T& variable) BOOST_NOEXCEPT; 153 template <class Derived, class TypeInfo> 154 …nline bool operator == (const type_index_facade<Derived, TypeInfo>& lhs, const type_index_facade<D… in operator ==() argument [all …]
|
/third_party/boost/boost/multi_index/detail/ |
D | iter_adaptor.hpp | 82 template<class Derived,class Base> 85 Derived, 99 friend bool operator==(const Derived& x,const Derived& y) in operator ==() 104 Derived& operator++() in operator ++() 111 Derived& final(){return *static_cast<Derived*>(this);} in final() 112 const Derived& final()const{return *static_cast<const Derived*>(this);} in final() 115 template<class Derived,class Base> 117 const forward_iter_adaptor_base<Derived,Base>& x, in operator ==() argument 118 const forward_iter_adaptor_base<Derived,Base>& y) in operator ==() 121 static_cast<const Derived&>(x),static_cast<const Derived&>(y)); in operator ==() [all …]
|
/third_party/skia/third_party/externals/dawn/src/common/ |
D | SerialStorage.h | 26 template <typename Derived> 29 using Serial = typename SerialStorageTraits<Derived>::Serial; 30 using Value = typename SerialStorageTraits<Derived>::Value; 31 using Storage = typename SerialStorageTraits<Derived>::Storage; 32 using StorageIterator = typename SerialStorageTraits<Derived>::StorageIterator; 33 using ConstStorageIterator = typename SerialStorageTraits<Derived>::ConstStorageIterator; 96 Derived::Enqueue(std::forward<Params>(args)..., serial); in Enqueue() 124 template <typename Derived> 125 bool SerialStorage<Derived>::Empty() const { in Empty() 129 template <typename Derived> [all …]
|
/third_party/flutter/skia/third_party/externals/dawn/src/common/ |
D | SerialStorage.h | 27 template <typename Derived> 30 using Value = typename SerialStorageTraits<Derived>::Value; 31 using Storage = typename SerialStorageTraits<Derived>::Storage; 32 using StorageIterator = typename SerialStorageTraits<Derived>::StorageIterator; 33 using ConstStorageIterator = typename SerialStorageTraits<Derived>::ConstStorageIterator; 96 Derived::Enqueue(std::forward<Params>(args)..., serial); in Enqueue() 124 template <typename Derived> 125 bool SerialStorage<Derived>::Empty() const { in Empty() 129 template <typename Derived> 130 typename SerialStorage<Derived>::ConstBeginEnd SerialStorage<Derived>::IterateAll() const { in IterateAll() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | number_fluent.cpp | 24 template<typename Derived> 25 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation) const& { in notation() 26 Derived copy(*this); in notation() 32 template<typename Derived> 33 Derived NumberFormatterSettings<Derived>::notation(const Notation& notation)&& { in notation() 34 Derived move(std::move(*this)); in notation() 40 template<typename Derived> 41 Derived NumberFormatterSettings<Derived>::unit(const icu::MeasureUnit& unit) const& { in unit() 42 Derived copy(*this); in unit() 49 template<typename Derived> [all …]
|
/third_party/boost/boost/numeric/odeint/external/eigen/ |
D | eigen_resize.hpp | 37 template< class Derived > 38 struct is_resizeable_sfinae< Derived , 39 …e boost::enable_if< typename boost::is_base_of< Eigen::MatrixBase< Derived > , Derived >::type >::… 46 template < class Derived > 47 struct is_resizeable_sfinae< Derived , 48 …me boost::enable_if< typename boost::is_base_of< Eigen::ArrayBase< Derived > , Derived >::type >::… 56 template< class Derived > 57 struct same_size_impl_sfinae< Derived , Derived , 58 …e boost::enable_if< typename boost::is_base_of< Eigen::MatrixBase< Derived > , Derived >::type >::… 60 …static bool same_size( const Eigen::MatrixBase< Derived > &m1 , const Eigen::MatrixBase< Derived >… in same_size() [all …]
|
/third_party/boost/boost/iterator/ |
D | iterator_archetypes.hpp | 38 template <class Derived, class Value, class AccessCategory, class TraversalCategory> 69 template <class Derived, class Base> 72 mpl::bitand_<Derived,Base> 145 template <class Derived,class Value> struct archetype; 152 template <class Derived, class Value, class TraversalCategory> 154 : traversal_archetype_impl<TraversalCategory>::template archetype<Derived,Value> 157 traversal_archetype_impl<TraversalCategory>::template archetype<Derived,Value> 170 template<class Derived, class Value> 178 Derived& operator++() { return (Derived&)static_object<Derived>::get(); } in operator ++() 179 Derived operator++(int) const { return (Derived&)static_object<Derived>::get(); } in operator ++() [all …]
|
/third_party/boost/boost/serialization/ |
D | void_cast.hpp | 154 template <class Derived, class Base> 159 const Derived * d = in downcast() 160 boost::serialization::smart_cast<const Derived *, const Base *>( in downcast() 167 boost::serialization::smart_cast<const Base *, const Derived *>( in upcast() 168 static_cast<const Derived *>(t) in upcast() 181 typename boost::aligned_storage<sizeof(Derived)>::type data; in base_offset() 185 reinterpret_cast<Derived*>(&data))); in base_offset() 189 template <class Derived, class Base> 190 void_caster_primitive<Derived, Base>::void_caster_primitive() : in void_caster_primitive() 192 & type_info_implementation<Derived>::type::get_const_instance(), in void_caster_primitive() [all …]
|
/third_party/boost/boost/xpressive/detail/utility/ |
D | tracking_ptr.hpp | 39 template<typename Derived> 46 template<typename Derived> 50 weak_iterator<Derived> 51 , shared_ptr<Derived> const 55 typedef std::set<weak_ptr<Derived> > set_type; 76 shared_ptr<Derived> const &dereference() const in dereference() 87 bool equal(weak_iterator<Derived> const &that) const in equal() 105 shared_ptr<Derived> cur_; 113 template<typename Derived> 116 typedef shared_ptr<Derived> argument_type; [all …]
|