• Home
  • Raw
  • Download

Lines Matching full:move

44     Derived move(std::move(*this));  in notation()  local
46 move.fMacros.notation = notation; in notation()
47 return move; in notation()
61 Derived move(std::move(*this)); in unit() local
63 move.fMacros.unit = unit; in unit()
64 return move; in unit()
70 // Just move the unit into the MacroProps by value, and delete it since we have ownership. in adoptUnit()
75 copy.fMacros.unit = std::move(*unit); in adoptUnit()
83 Derived move(std::move(*this)); in adoptUnit() local
87 move.fMacros.unit = std::move(*unit); in adoptUnit()
90 return move; in adoptUnit()
103 Derived move(std::move(*this)); in perUnit() local
105 move.fMacros.perUnit = perUnit; in perUnit()
106 return move; in perUnit()
115 copy.fMacros.perUnit = std::move(*perUnit); in adoptPerUnit()
123 Derived move(std::move(*this)); in adoptPerUnit() local
127 move.fMacros.perUnit = std::move(*perUnit); in adoptPerUnit()
130 return move; in adoptPerUnit()
143 Derived move(std::move(*this)); in precision() local
145 move.fMacros.precision = precision; in precision()
146 return move; in precision()
158 Derived move(std::move(*this)); in roundingMode() local
159 move.fMacros.roundingMode = roundingMode; in roundingMode()
160 return move; in roundingMode()
174 Derived move(std::move(*this)); in grouping() local
175 move.fMacros.grouper = Grouper::forStrategy(strategy); in grouping()
176 return move; in grouping()
188 Derived move(std::move(*this)); in integerWidth() local
189 move.fMacros.integerWidth = style; in integerWidth()
190 return move; in integerWidth()
202 Derived move(std::move(*this)); in symbols() local
203 move.fMacros.symbols.setTo(symbols); in symbols()
204 return move; in symbols()
216 Derived move(std::move(*this)); in adoptSymbols() local
217 move.fMacros.symbols.setTo(ns); in adoptSymbols()
218 return move; in adoptSymbols()
230 Derived move(std::move(*this)); in unitWidth() local
231 move.fMacros.unitWidth = width; in unitWidth()
232 return move; in unitWidth()
244 Derived move(std::move(*this)); in sign() local
245 move.fMacros.sign = style; in sign()
246 return move; in sign()
258 Derived move(std::move(*this)); in decimal() local
259 move.fMacros.decimal = style; in decimal()
260 return move; in decimal()
272 Derived move(std::move(*this)); in scale() local
273 move.fMacros.scale = scale; in scale()
274 return move; in scale()
286 Derived move(std::move(*this)); in usage() local
287 move.fMacros.usage.set(usage); in usage()
288 return move; in usage()
307 Derived move(std::move(*this)); in displayOptions() local
310 move.fMacros.unitDisplayCase.set(nullptr); in displayOptions()
311 return move; in displayOptions()
314 move.fMacros.unitDisplayCase.set( in displayOptions()
316 return move; in displayOptions()
328 Derived move(std::move(*this)); in unitDisplayCase() local
329 move.fMacros.unitDisplayCase.set(unitDisplayCase); in unitDisplayCase()
330 return move; in unitDisplayCase()
342 Derived move(std::move(*this)); in padding() local
343 move.fMacros.padder = padder; in padding()
344 return move; in padding()
356 Derived move(std::move(*this)); in threshold() local
357 move.fMacros.threshold = threshold; in threshold()
358 return move; in threshold()
370 Derived move(std::move(*this)); in macros() local
371 move.fMacros = macros; in macros()
372 return move; in macros()
378 copy.fMacros = std::move(macros); in macros()
384 Derived move(std::move(*this)); in macros() local
385 move.fMacros = std::move(macros); in macros()
386 return move; in macros()
398 return LocalPointer<Derived>(new Derived(std::move(*this))); in clone()
446 : NFS<UNF>(std::move(src)) { in UnlocalizedNumberFormatter()
476 : NFS<LNF>(std::move(src)) { in LocalizedNumberFormatter()
477 lnfMoveHelper(std::move(static_cast<LNF&&>(src))); in LocalizedNumberFormatter()
490 lnfMoveHelper(std::move(src)); in operator =()
515 // Unconditionally move the warehouse in lnfMoveHelper()
562 fMacros = std::move(macros); in LocalizedNumberFormatter()
571 return LocalizedNumberFormatter(std::move(fMacros), locale); in locale()
744 MacroProps macros(std::move(fMacros)); in withoutLocale()
746 return UnlocalizedNumberFormatter(std::move(macros)); in withoutLocale()