Lines Matching refs:fPtr
48 fPtr.dfs = new DecimalFormatSymbols(dfs); in setTo()
54 fPtr.ns = ns; in setTo()
65 if (other.fPtr.dfs != nullptr) { in doCopyFrom()
66 fPtr.dfs = new DecimalFormatSymbols(*other.fPtr.dfs); in doCopyFrom()
68 fPtr.dfs = nullptr; in doCopyFrom()
73 if (other.fPtr.ns != nullptr) { in doCopyFrom()
74 fPtr.ns = new NumberingSystem(*other.fPtr.ns); in doCopyFrom()
76 fPtr.ns = nullptr; in doCopyFrom()
89 fPtr.dfs = src.fPtr.dfs; in doMoveFrom()
90 src.fPtr.dfs = nullptr; in doMoveFrom()
93 fPtr.ns = src.fPtr.ns; in doMoveFrom()
94 src.fPtr.ns = nullptr; in doMoveFrom()
105 delete fPtr.dfs; in doCleanup()
108 delete fPtr.ns; in doCleanup()
123 return fPtr.dfs; in getDecimalFormatSymbols()
128 return fPtr.ns; in getNumberingSystem()