Lines Matching defs:other
198 UnlocalizedNumberRangeFormatter::UnlocalizedNumberRangeFormatter(const UNF& other)
199 : UNF(static_cast<const NFS<UNF>&>(other)) {}
201 UnlocalizedNumberRangeFormatter::UnlocalizedNumberRangeFormatter(const NFS<UNF>& other)
202 : NFS<UNF>(other) {
215 UnlocalizedNumberRangeFormatter& UnlocalizedNumberRangeFormatter::operator=(const UNF& other) {
216 NFS<UNF>::operator=(static_cast<const NFS<UNF>&>(other));
228 LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(const LNF& other)
229 : LNF(static_cast<const NFS<LNF>&>(other)) {}
231 LocalizedNumberRangeFormatter::LocalizedNumberRangeFormatter(const NFS<LNF>& other)
232 : NFS<LNF>(other) {
247 LocalizedNumberRangeFormatter& LocalizedNumberRangeFormatter::operator=(const LNF& other) {
248 if (this == &other) { return *this; } // self-assignment: no-op
249 NFS<LNF>::operator=(static_cast<const NFS<LNF>&>(other));