Home | History | Annotate | Download | only in i18n

Lines Matching refs:fDates

44  fDatesLen(other.fDatesLen), fDates(NULL)
53 fDates = (URelativeString*) uprv_malloc(sizeof(fDates[0])*fDatesLen);
54 uprv_memcpy(fDates, other.fDates, sizeof(fDates[0])*fDatesLen);
61 fDateStyle(dateStyle), fLocale(locale), fDatesLen(0), fDates(NULL)
111 uprv_free(fDates);
212 if (fDates[n].string != NULL &&
213 text.compare(startIndex, fDates[n].len, fDates[n].string) == 0) {
220 cal.add(UCAL_DATE,fDates[n].offset, status);
226 pos.setIndex(startIndex + fDates[n].len);
244 if (fDates[n].string != NULL &&
245 (relativeStringOffset = modifiedText.indexOf(fDates[n].string, fDates[n].len, startIndex)) >= startIndex) {
252 tempCal->add(UCAL_DATE,fDates[n].offset, status);
262 origDateLen = fDates[n].len;
324 if(fDates[n].offset == day) {
325 len = fDates[n].len;
326 return fDates[n].string;
437 fDates = (URelativeString*) uprv_malloc(sizeof(fDates[0])*fDatesLen);
470 fDates[n].offset = offset;
471 fDates[n].string = aString;
472 fDates[n].len = aLen;
478 // the fDates[] array could be sorted here, for direct access.