Symbol: fFormatter
headers/os/locale/RelativeDateTimeFormat.h
39
U_ICU_NAMESPACE::RelativeDateTimeFormatter* fFormatter;
headers/os/locale/StringFormat.h
40
U_ICU_NAMESPACE::MessageFormat* fFormatter;
headers/os/locale/TimeUnitFormat.h
60
U_ICU_NAMESPACE::TimeUnitFormat* fFormatter;
src/kits/locale/RelativeDateTimeFormat.cpp
102
fFormatter(other.fFormatter != NULL
src/kits/locale/RelativeDateTimeFormat.cpp
103
? new RelativeDateTimeFormatter(*other.fFormatter) : NULL),
src/kits/locale/RelativeDateTimeFormat.cpp
107
if ((fFormatter == NULL && other.fFormatter != NULL)
src/kits/locale/RelativeDateTimeFormat.cpp
115
delete fFormatter;
src/kits/locale/RelativeDateTimeFormat.cpp
124
if (fFormatter == NULL)
src/kits/locale/RelativeDateTimeFormat.cpp
157
fFormatter->formatNumeric(delta, unit, unicodeResult, icuStatus);
src/kits/locale/RelativeDateTimeFormat.cpp
59
fFormatter = new RelativeDateTimeFormatter(icuLocale, icuStatus);
src/kits/locale/RelativeDateTimeFormat.cpp
60
if (fFormatter == NULL) {
src/kits/locale/RelativeDateTimeFormat.cpp
83
fFormatter = new RelativeDateTimeFormatter(icuLocale, icuStatus);
src/kits/locale/RelativeDateTimeFormat.cpp
84
if (fFormatter == NULL) {
src/kits/locale/StringFormat.cpp
41
delete fFormatter;
src/kits/locale/StringFormat.cpp
66
buffer = fFormatter->format(arguments, 1, buffer, pos, error);
src/kits/locale/StringFormat.cpp
85
fFormatter = new MessageFormat(pattern, *icuLocale, error);
src/kits/locale/StringFormat.cpp
87
if (fFormatter == NULL)
src/kits/locale/StringFormat.cpp
91
delete fFormatter;
src/kits/locale/StringFormat.cpp
93
fFormatter = NULL;
src/kits/locale/TimeUnitFormat.cpp
100
? new TimeUnitFormat(*other.fFormatter) : NULL)
src/kits/locale/TimeUnitFormat.cpp
102
if (fFormatter == NULL && other.fFormatter != NULL)
src/kits/locale/TimeUnitFormat.cpp
109
delete fFormatter;
src/kits/locale/TimeUnitFormat.cpp
120
if (fFormatter == NULL)
src/kits/locale/TimeUnitFormat.cpp
137
fFormatter->format(formattable, unicodeResult, pos, icuStatus);
src/kits/locale/TimeUnitFormat.cpp
54
fFormatter = NULL;
src/kits/locale/TimeUnitFormat.cpp
59
fFormatter = new TimeUnitFormat(icuLocale, kTimeUnitStyleToICU[style],
src/kits/locale/TimeUnitFormat.cpp
61
if (fFormatter == NULL) {
src/kits/locale/TimeUnitFormat.cpp
79
fFormatter = NULL;
src/kits/locale/TimeUnitFormat.cpp
84
fFormatter = new TimeUnitFormat(icuLocale, kTimeUnitStyleToICU[style],
src/kits/locale/TimeUnitFormat.cpp
86
if (fFormatter == NULL) {
src/kits/locale/TimeUnitFormat.cpp
99
fFormatter(other.fFormatter != NULL