Lines Matching refs:NFS
194 template<typename T> using NFS = NumberRangeFormatterSettings<T>; typedef
199 : UNF(static_cast<const NFS<UNF>&>(other)) {} in UnlocalizedNumberRangeFormatter()
201 UnlocalizedNumberRangeFormatter::UnlocalizedNumberRangeFormatter(const NFS<UNF>& other) in UnlocalizedNumberRangeFormatter()
202 : NFS<UNF>(other) { in UnlocalizedNumberRangeFormatter()
208 : UNF(static_cast<NFS<UNF>&&>(src)) {} in UnlocalizedNumberRangeFormatter()
210 UnlocalizedNumberRangeFormatter::UnlocalizedNumberRangeFormatter(NFS<UNF>&& src) U_NOEXCEPT in UnlocalizedNumberRangeFormatter()
211 : NFS<UNF>(std::move(src)) { in UnlocalizedNumberRangeFormatter()
216 NFS<UNF>::operator=(static_cast<const NFS<UNF>&>(other)); in operator =()
222 NFS<UNF>::operator=(static_cast<NFS<UNF>&&>(src)); in operator =()
229 : LNF(static_cast<const NFS<LNF>&>(other)) {} in LocalizedNumberRangeFormatter()
231 LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(const NFS<LNF>& other) in LocalizedNumberRangeFormatter()
232 : NFS<LNF>(other) { in LocalizedNumberRangeFormatter()
237 : LNF(static_cast<NFS<LNF>&&>(src)) {} in LocalizedNumberRangeFormatter()
239 LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(NFS<LNF>&& src) U_NOEXCEPT in LocalizedNumberRangeFormatter()
240 : NFS<LNF>(std::move(src)) { in LocalizedNumberRangeFormatter()
249 NFS<LNF>::operator=(static_cast<const NFS<LNF>&>(other)); in operator =()
256 NFS<LNF>::operator=(static_cast<NFS<LNF>&&>(src)); in operator =()