Lines Matching refs:fDateFormat
42 DateFormat(other), fDateFormat(NULL), fTimeFormat(NULL), fCombinedFormat(NULL),
47 if(other.fDateFormat != NULL) {
48 fDateFormat = (DateFormat*)other.fDateFormat->clone();
50 fDateFormat = NULL;
67 : DateFormat(), fDateFormat(NULL), fTimeFormat(NULL), fCombinedFormat(NULL),
77 fDateFormat = createDateInstance(newStyle, locale);
93 delete fDateFormat;
137 } else if(fDateFormat != NULL) {
138 fDateFormat->format(cal,appendTo,pos);
141 if (dateString.length() == 0 && fDateFormat != NULL) {
142 fDateFormat->format(cal,dateString,pos);
184 // Can the fDateFormat parse it?
185 if(fDateFormat != NULL) {
187 fDateFormat->parse(text,cal,aPos);
264 if (fDateFormat != NULL) {
290 if ( fDateFormat ) {
291 SimpleDateFormat* sdtfmt = dynamic_cast<SimpleDateFormat*>(fDateFormat);
325 if (fDateFormat && (sdtfmt = dynamic_cast<SimpleDateFormat*>(fDateFormat)) == NULL) {
333 if ( fDateFormat ) {