Lines Matching refs:Derived
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>
58 Derived NumberRangeFormatterSettings<Derived>::numberFormatterBoth(UnlocalizedNumberFormatter&& for… in numberFormatterBoth()
59 Derived move(std::move(*this)); in numberFormatterBoth()
66 template<typename Derived>
67 Derived NumberRangeFormatterSettings<Derived>::numberFormatterFirst(const UnlocalizedNumberFormatte… in numberFormatterFirst()
68 Derived copy(*this); in numberFormatterFirst()
75 template<typename Derived>
76 Derived NumberRangeFormatterSettings<Derived>::numberFormatterFirst(const UnlocalizedNumberFormatte… in numberFormatterFirst()
77 Derived move(std::move(*this)); in numberFormatterFirst()
84 template<typename Derived>
85 Derived NumberRangeFormatterSettings<Derived>::numberFormatterFirst(UnlocalizedNumberFormatter&& fo… in numberFormatterFirst()
86 Derived copy(*this); in numberFormatterFirst()
93 template<typename Derived>
94 Derived NumberRangeFormatterSettings<Derived>::numberFormatterFirst(UnlocalizedNumberFormatter&& fo… in numberFormatterFirst()
95 Derived move(std::move(*this)); in numberFormatterFirst()
102 template<typename Derived>
103 Derived NumberRangeFormatterSettings<Derived>::numberFormatterSecond(const UnlocalizedNumberFormatt… in numberFormatterSecond()
104 Derived copy(*this); in numberFormatterSecond()
111 template<typename Derived>
112 Derived NumberRangeFormatterSettings<Derived>::numberFormatterSecond(const UnlocalizedNumberFormatt… in numberFormatterSecond()
113 Derived move(std::move(*this)); in numberFormatterSecond()
120 template<typename Derived>
121 Derived NumberRangeFormatterSettings<Derived>::numberFormatterSecond(UnlocalizedNumberFormatter&& f… in numberFormatterSecond()
122 Derived copy(*this); in numberFormatterSecond()
129 template<typename Derived>
130 Derived NumberRangeFormatterSettings<Derived>::numberFormatterSecond(UnlocalizedNumberFormatter&& f… in numberFormatterSecond()
131 Derived move(std::move(*this)); in numberFormatterSecond()
138 template<typename Derived>
139 Derived NumberRangeFormatterSettings<Derived>::collapse(UNumberRangeCollapse collapse) const& { in collapse()
140 Derived copy(*this); in collapse()
145 template<typename Derived>
146 Derived NumberRangeFormatterSettings<Derived>::collapse(UNumberRangeCollapse collapse) && { in collapse()
147 Derived move(std::move(*this)); in collapse()
152 template<typename Derived>
153 Derived NumberRangeFormatterSettings<Derived>::identityFallback(UNumberRangeIdentityFallback identi… in identityFallback()
154 Derived copy(*this); in identityFallback()
159 template<typename Derived>
160 Derived NumberRangeFormatterSettings<Derived>::identityFallback(UNumberRangeIdentityFallback identi… in identityFallback()
161 Derived move(std::move(*this)); in identityFallback()
166 template<typename Derived>
167 LocalPointer<Derived> NumberRangeFormatterSettings<Derived>::clone() const & { in clone()
168 return LocalPointer<Derived>(new Derived(*this)); in clone()
171 template<typename Derived>
172 LocalPointer<Derived> NumberRangeFormatterSettings<Derived>::clone() && { in clone()
173 return LocalPointer<Derived>(new Derived(std::move(*this))); in clone()