Lines Matching refs:fDates
45 fDatesLen(other.fDatesLen), fDates(NULL)
54 fDates = (URelativeString*) uprv_malloc(sizeof(fDates[0])*fDatesLen);
55 uprv_memcpy(fDates, other.fDates, sizeof(fDates[0])*fDatesLen);
62 fDateStyle(dateStyle), fLocale(locale), fDatesLen(0), fDates(NULL)
112 uprv_free(fDates);
213 if (fDates[n].string != NULL &&
214 text.compare(startIndex, fDates[n].len, fDates[n].string) == 0) {
221 cal.add(UCAL_DATE,fDates[n].offset, status);
227 pos.setIndex(startIndex + fDates[n].len);
245 if (fDates[n].string != NULL &&
246 (relativeStringOffset = modifiedText.indexOf(fDates[n].string, fDates[n].len, startIndex)) >= startIndex) {
253 tempCal->add(UCAL_DATE,fDates[n].offset, status);
263 origDateLen = fDates[n].len;
325 if(fDates[n].offset == day) {
326 len = fDates[n].len;
327 return fDates[n].string;
443 fDates = (URelativeString*) uprv_malloc(sizeof(fDates[0])*fDatesLen);
476 fDates[n].offset = offset;
477 fDates[n].string = aString;
478 fDates[n].len = aLen;
485 // the fDates[] array could be sorted here, for direct access.