Lines Matching refs:move

34     Derived move(std::move(*this));  in notation()  local
36 move.fMacros.notation = notation; in notation()
37 return move; in notation()
51 Derived move(std::move(*this)); in unit() local
53 move.fMacros.unit = unit; in unit()
54 return move; in unit()
65 copy.fMacros.unit = std::move(*unit); in adoptUnit()
73 Derived move(std::move(*this)); in adoptUnit() local
77 move.fMacros.unit = std::move(*unit); in adoptUnit()
80 return move; in adoptUnit()
93 Derived move(std::move(*this)); in perUnit() local
95 move.fMacros.perUnit = perUnit; in perUnit()
96 return move; in perUnit()
105 copy.fMacros.perUnit = std::move(*perUnit); in adoptPerUnit()
113 Derived move(std::move(*this)); in adoptPerUnit() local
117 move.fMacros.perUnit = std::move(*perUnit); in adoptPerUnit()
120 return move; in adoptPerUnit()
133 Derived move(std::move(*this)); in precision() local
135 move.fMacros.precision = precision; in precision()
136 return move; in precision()
148 Derived move(std::move(*this)); in roundingMode() local
149 move.fMacros.roundingMode = roundingMode; in roundingMode()
150 return move; in roundingMode()
164 Derived move(std::move(*this)); in grouping() local
165 move.fMacros.grouper = Grouper::forStrategy(strategy); in grouping()
166 return move; in grouping()
178 Derived move(std::move(*this)); in integerWidth() local
179 move.fMacros.integerWidth = style; in integerWidth()
180 return move; in integerWidth()
192 Derived move(std::move(*this)); in symbols() local
193 move.fMacros.symbols.setTo(symbols); in symbols()
194 return move; in symbols()
206 Derived move(std::move(*this)); in adoptSymbols() local
207 move.fMacros.symbols.setTo(ns); in adoptSymbols()
208 return move; in adoptSymbols()
220 Derived move(std::move(*this)); in unitWidth() local
221 move.fMacros.unitWidth = width; in unitWidth()
222 return move; in unitWidth()
234 Derived move(std::move(*this)); in sign() local
235 move.fMacros.sign = style; in sign()
236 return move; in sign()
248 Derived move(std::move(*this)); in decimal() local
249 move.fMacros.decimal = style; in decimal()
250 return move; in decimal()
262 Derived move(std::move(*this)); in scale() local
263 move.fMacros.scale = scale; in scale()
264 return move; in scale()
276 Derived move(std::move(*this)); in padding() local
277 move.fMacros.padder = padder; in padding()
278 return move; in padding()
290 Derived move(std::move(*this)); in threshold() local
291 move.fMacros.threshold = threshold; in threshold()
292 return move; in threshold()
304 Derived move(std::move(*this)); in macros() local
305 move.fMacros = macros; in macros()
306 return move; in macros()
312 copy.fMacros = std::move(macros); in macros()
318 Derived move(std::move(*this)); in macros() local
319 move.fMacros = std::move(macros); in macros()
320 return move; in macros()
371 : NFS<UNF>(std::move(src)) { in UnlocalizedNumberFormatter()
400 : NFS<LNF>(std::move(src)) { in LocalizedNumberFormatter()
461 fMacros = std::move(macros); in LocalizedNumberFormatter()
470 return LocalizedNumberFormatter(std::move(fMacros), locale); in locale()
478 doMoveFrom(std::move(src)); in SymbolsWrapper()
495 doMoveFrom(std::move(src)); in operator =()