Lines Matching full:copy
32 Derived copy(*this); in numberFormatterBoth() local
33 copy.fMacros.formatter1 = formatter; in numberFormatterBoth()
34 copy.fMacros.singleFormatter = true; in numberFormatterBoth()
35 touchRangeLocales(copy.fMacros); in numberFormatterBoth()
36 return copy; in numberFormatterBoth()
50 Derived copy(*this); in numberFormatterBoth() local
51 copy.fMacros.formatter1 = std::move(formatter); in numberFormatterBoth()
52 copy.fMacros.singleFormatter = true; in numberFormatterBoth()
53 touchRangeLocales(copy.fMacros); in numberFormatterBoth()
54 return copy; in numberFormatterBoth()
68 Derived copy(*this); in numberFormatterFirst() local
69 copy.fMacros.formatter1 = formatter; in numberFormatterFirst()
70 copy.fMacros.singleFormatter = false; in numberFormatterFirst()
71 touchRangeLocales(copy.fMacros); in numberFormatterFirst()
72 return copy; in numberFormatterFirst()
86 Derived copy(*this); in numberFormatterFirst() local
87 copy.fMacros.formatter1 = std::move(formatter); in numberFormatterFirst()
88 copy.fMacros.singleFormatter = false; in numberFormatterFirst()
89 touchRangeLocales(copy.fMacros); in numberFormatterFirst()
90 return copy; in numberFormatterFirst()
104 Derived copy(*this); in numberFormatterSecond() local
105 copy.fMacros.formatter2 = formatter; in numberFormatterSecond()
106 copy.fMacros.singleFormatter = false; in numberFormatterSecond()
107 touchRangeLocales(copy.fMacros); in numberFormatterSecond()
108 return copy; in numberFormatterSecond()
122 Derived copy(*this); in numberFormatterSecond() local
123 copy.fMacros.formatter2 = std::move(formatter); in numberFormatterSecond()
124 copy.fMacros.singleFormatter = false; in numberFormatterSecond()
125 touchRangeLocales(copy.fMacros); in numberFormatterSecond()
126 return copy; in numberFormatterSecond()
140 Derived copy(*this); in collapse() local
141 copy.fMacros.collapse = collapse; in collapse()
142 return copy; in collapse()
154 Derived copy(*this); in identityFallback() local
155 copy.fMacros.identityFallback = identityFallback; in identityFallback()
156 return copy; in identityFallback()
206 // Make default copy constructor call the NumberRangeFormatterSettings copy constructor.
227 // Make default copy constructor call the NumberRangeFormatterSettings copy constructor.
374 // Our copy of the formatter got stored in the atomic in getFormatter()