Lines Matching refs:NFS
421 template<typename T> using NFS = NumberFormatterSettings<T>; typedef
426 : UNF(static_cast<const NFS<UNF>&>(other)) {} in UnlocalizedNumberFormatter()
428 UnlocalizedNumberFormatter::UnlocalizedNumberFormatter(const NFS<UNF>& other) in UnlocalizedNumberFormatter()
429 : NFS<UNF>(other) { in UnlocalizedNumberFormatter()
435 : UNF(static_cast<NFS<UNF>&&>(src)) {} in UnlocalizedNumberFormatter()
437 UnlocalizedNumberFormatter::UnlocalizedNumberFormatter(NFS<UNF>&& src) noexcept in UnlocalizedNumberFormatter()
438 : NFS<UNF>(std::move(src)) { in UnlocalizedNumberFormatter()
443 NFS<UNF>::operator=(static_cast<const NFS<UNF>&>(other)); in operator =()
449 NFS<UNF>::operator=(static_cast<NFS<UNF>&&>(src)); in operator =()
456 : LNF(static_cast<const NFS<LNF>&>(other)) {} in LocalizedNumberFormatter()
458 LocalizedNumberFormatter::LocalizedNumberFormatter(const NFS<LNF>& other) in LocalizedNumberFormatter()
459 : NFS<LNF>(other) { in LocalizedNumberFormatter()
465 : LNF(static_cast<NFS<LNF>&&>(src)) {} in LocalizedNumberFormatter()
467 LocalizedNumberFormatter::LocalizedNumberFormatter(NFS<LNF>&& src) noexcept in LocalizedNumberFormatter()
468 : NFS<LNF>(std::move(src)) { in LocalizedNumberFormatter()
474 NFS<LNF>::operator=(static_cast<const NFS<LNF>&>(other)); in operator =()
481 NFS<LNF>::operator=(static_cast<NFS<LNF>&&>(src)); in operator =()