Lines Matching refs:fSymbols
367 delete fSymbols; in ~SimpleDateFormat()
384 fSymbols(NULL), in SimpleDateFormat()
400 fSymbols(NULL), in SimpleDateFormat()
409 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat()
421 fSymbols(NULL), in SimpleDateFormat()
430 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat()
455 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat()
478 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat()
493 fSymbols(symbolsToAdopt), in SimpleDateFormat()
515 fSymbols(new DateFormatSymbols(symbols)), in SimpleDateFormat()
538 fSymbols(NULL), in SimpleDateFormat()
561 fSymbols(NULL), in SimpleDateFormat()
569 fSymbols = DateFormatSymbols::createForLocale(fLocale, status); in SimpleDateFormat()
573 delete fSymbols; in SimpleDateFormat()
575 fSymbols = new DateFormatSymbols(status); in SimpleDateFormat()
577 if (fSymbols == 0) { in SimpleDateFormat()
597 fSymbols(NULL), in SimpleDateFormat()
617 delete fSymbols; in operator =()
618 fSymbols = NULL; in operator =()
620 if (other.fSymbols) in operator =()
621 fSymbols = new DateFormatSymbols(*other.fSymbols); in operator =()
681 fSymbols != NULL && // Check for pathological object in operator ==()
682 that->fSymbols != NULL && // Check for pathological object in operator ==()
683 *fSymbols == *that->fSymbols && in operator ==()
742 fSymbols = DateFormatSymbols::createForLocale(locale, status); in construct()
745 if (fSymbols == 0) { in construct()
1460 _appendSymbol(appendTo, value, fSymbols->fNarrowEras, fSymbols->fNarrowErasCount); in subFormat()
1463 _appendSymbol(appendTo, value, fSymbols->fEraNames, fSymbols->fEraNamesCount); in subFormat()
1466 _appendSymbol(appendTo, value, fSymbols->fEras, fSymbols->fErasCount); in subFormat()
1473 if (fSymbols->fShortYearNames != NULL && value <= fSymbols->fShortYearNamesCount) { in subFormat()
1475 … _appendSymbol(appendTo, value - 1, fSymbols->fShortYearNames, fSymbols->fShortYearNamesCount); in subFormat()
1514 …int32_t isLeapMonth = (fSymbols->fLeapMonthPatterns != NULL && fSymbols->fLeapMonthPatternsCount >… in subFormat()
1519 …_appendSymbolWithMonthPattern(appendTo, value, fSymbols->fNarrowMonths, fSymbols->fNarrowMonthsCou… in subFormat()
1520 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternFormatNarrow]… in subFormat()
1522 …_appendSymbolWithMonthPattern(appendTo, value, fSymbols->fStandaloneNarrowMonths, fSymbols->fStand… in subFormat()
1523 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternStandaloneNar… in subFormat()
1528 … _appendSymbolWithMonthPattern(appendTo, value, fSymbols->fMonths, fSymbols->fMonthsCount, in subFormat()
1529 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternFormatWide]):… in subFormat()
1532 …_appendSymbolWithMonthPattern(appendTo, value, fSymbols->fStandaloneMonths, fSymbols->fStandaloneM… in subFormat()
1533 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternStandaloneWid… in subFormat()
1538 …_appendSymbolWithMonthPattern(appendTo, value, fSymbols->fShortMonths, fSymbols->fShortMonthsCount, in subFormat()
1539 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternFormatAbbrev]… in subFormat()
1542 …_appendSymbolWithMonthPattern(appendTo, value, fSymbols->fStandaloneShortMonths, fSymbols->fStanda… in subFormat()
1543 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternStandaloneAbb… in subFormat()
1550 …(isLeapMonth!=0)? &(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternNumeric]): NU… in subFormat()
1602 _appendSymbol(appendTo, value, fSymbols->fNarrowWeekdays, in subFormat()
1603 fSymbols->fNarrowWeekdaysCount); in subFormat()
1606 _appendSymbol(appendTo, value, fSymbols->fWeekdays, in subFormat()
1607 fSymbols->fWeekdaysCount); in subFormat()
1610 _appendSymbol(appendTo, value, fSymbols->fShorterWeekdays, in subFormat()
1611 fSymbols->fShorterWeekdaysCount); in subFormat()
1614 _appendSymbol(appendTo, value, fSymbols->fShortWeekdays, in subFormat()
1615 fSymbols->fShortWeekdaysCount); in subFormat()
1636 _appendSymbol(appendTo, value, fSymbols->fStandaloneNarrowWeekdays, in subFormat()
1637 fSymbols->fStandaloneNarrowWeekdaysCount); in subFormat()
1640 _appendSymbol(appendTo, value, fSymbols->fStandaloneWeekdays, in subFormat()
1641 fSymbols->fStandaloneWeekdaysCount); in subFormat()
1644 _appendSymbol(appendTo, value, fSymbols->fStandaloneShorterWeekdays, in subFormat()
1645 fSymbols->fStandaloneShorterWeekdaysCount); in subFormat()
1648 _appendSymbol(appendTo, value, fSymbols->fStandaloneShortWeekdays, in subFormat()
1649 fSymbols->fStandaloneShortWeekdaysCount); in subFormat()
1657 _appendSymbol(appendTo, value, fSymbols->fAmPms, in subFormat()
1658 fSymbols->fAmPmsCount); in subFormat()
1660 _appendSymbol(appendTo, value, fSymbols->fNarrowAmPms, in subFormat()
1661 fSymbols->fNarrowAmPmsCount); in subFormat()
1670 appendTo += fSymbols->getTimeSeparatorString(separator); in subFormat()
1801 _appendSymbol(appendTo, value/3, fSymbols->fQuarters, in subFormat()
1802 fSymbols->fQuartersCount); in subFormat()
1804 _appendSymbol(appendTo, value/3, fSymbols->fShortQuarters, in subFormat()
1805 fSymbols->fShortQuartersCount); in subFormat()
1812 _appendSymbol(appendTo, value/3, fSymbols->fStandaloneQuarters, in subFormat()
1813 fSymbols->fStandaloneQuartersCount); in subFormat()
1815 _appendSymbol(appendTo, value/3, fSymbols->fStandaloneShortQuarters, in subFormat()
1816 fSymbols->fStandaloneShortQuartersCount); in subFormat()
1841 toAppend = &fSymbols->fAbbreviatedDayPeriods[value]; in subFormat()
1843 toAppend = &fSymbols->fWideDayPeriods[value]; in subFormat()
1845 toAppend = &fSymbols->fNarrowDayPeriods[value]; in subFormat()
1915 toAppend = &fSymbols->fAbbreviatedDayPeriods[index]; // i.e. short in subFormat()
1917 toAppend = &fSymbols->fWideDayPeriods[index]; in subFormat()
1919 toAppend = &fSymbols->fNarrowDayPeriods[index]; in subFormat()
1934 toAppend = &fSymbols->fAbbreviatedDayPeriods[index]; // i.e. short in subFormat()
1936 toAppend = &fSymbols->fWideDayPeriods[index]; in subFormat()
1938 toAppend = &fSymbols->fNarrowDayPeriods[index]; in subFormat()
1971 titlecase = fSymbols->fCapitalization[capContextUsageType][0]; in subFormat()
1974 titlecase = fSymbols->fCapitalization[capContextUsageType][1]; in subFormat()
2165 …if (fSymbols->fLeapMonthPatterns != NULL && fSymbols->fLeapMonthPatternsCount >= DateFormatSymbols… in parse()
2166 …numericLeapMonthFormatter = new MessageFormat(fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLea… in parse()
3030 …ps = matchString(text, start, UCAL_ERA, fSymbols->fNarrowEras, fSymbols->fNarrowErasCount, NULL, c… in subParse()
3032 … ps = matchString(text, start, UCAL_ERA, fSymbols->fEraNames, fSymbols->fEraNamesCount, NULL, cal); in subParse()
3034 … ps = matchString(text, start, UCAL_ERA, fSymbols->fEras, fSymbols->fErasCount, NULL, cal); in subParse()
3108 if (fSymbols->fShortYearNames != NULL) { in subParse()
3109 …int32_t newStart = matchString(text, start, UCAL_YEAR, fSymbols->fShortYearNames, fSymbols->fShort… in subParse()
3114 …if (gotNumber && (getBooleanAttribute(UDAT_PARSE_ALLOW_NUMERIC,status) || value > fSymbols->fShort… in subParse()
3152 …if (fSymbols->fLeapMonthPatterns != NULL && fSymbols->fLeapMonthPatternsCount >= DateFormatSymbols… in subParse()
3154 … wideMonthPat = &fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternFormatWide]; in subParse()
3155 … shortMonthPat = &fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternFormatAbbrev]; in subParse()
3157 … wideMonthPat = &fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternStandaloneWide]; in subParse()
3158 …shortMonthPat = &fSymbols->fLeapMonthPatterns[DateFormatSymbols::kLeapMonthPatternStandaloneAbbrev… in subParse()
3164 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fMonths, fSymbols->fMonthsCount, wideMon… in subParse()
3170 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fShortMonths, fSymbols->fShortMonthsCoun… in subParse()
3174 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fStandaloneMonths, fSymbols->fStandalone… in subParse()
3180 …newStart = matchString(text, start, UCAL_MONTH, fSymbols->fStandaloneShortMonths, fSymbols->fStand… in subParse()
3236 … fSymbols->fWeekdays, fSymbols->fWeekdaysCount, NULL, cal)) > 0) in subParse()
3242 … fSymbols->fShortWeekdays, fSymbols->fShortWeekdaysCount, NULL, cal)) > 0) in subParse()
3248 … fSymbols->fShorterWeekdays, fSymbols->fShorterWeekdaysCount, NULL, cal)) > 0) in subParse()
3254 … fSymbols->fNarrowWeekdays, fSymbols->fNarrowWeekdaysCount, NULL, cal)) > 0) in subParse()
3276 … fSymbols->fStandaloneWeekdays, fSymbols->fStandaloneWeekdaysCount, NULL, cal)) > 0) in subParse()
3281 … fSymbols->fStandaloneShortWeekdays, fSymbols->fStandaloneShortWeekdaysCount, NULL, cal)) > 0) in subParse()
3286 … fSymbols->fStandaloneShorterWeekdays, fSymbols->fStandaloneShorterWeekdaysCount, NULL, cal)) > 0) in subParse()
3301 …if ((newStart = matchString(text, start, UCAL_AM_PM, fSymbols->fAmPms, fSymbols->fAmPmsCount, NULL… in subParse()
3307 …if ((newStart = matchString(text, start, UCAL_AM_PM, fSymbols->fNarrowAmPms, fSymbols->fNarrowAmPm… in subParse()
3342 fSymbols->fQuarters, fSymbols->fQuartersCount, cal)) > 0) in subParse()
3347 … fSymbols->fShortQuarters, fSymbols->fShortQuartersCount, cal)) > 0) in subParse()
3374 … fSymbols->fStandaloneQuarters, fSymbols->fStandaloneQuartersCount, cal)) > 0) in subParse()
3379 … fSymbols->fStandaloneShortQuarters, fSymbols->fStandaloneShortQuartersCount, cal)) > 0) in subParse()
3519 fSymbols->getTimeSeparatorString(data[0]); in subParse()
3548 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fAbbreviatedDayPeriods, in subParse()
3554 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fNarrowDayPeriods, in subParse()
3561 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fWideDayPeriods, in subParse()
3577 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fAbbreviatedDayPeriods, in subParse()
3578 fSymbols->fAbbreviatedDayPeriodsCount, *dayPeriod)) > 0) { in subParse()
3583 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fNarrowDayPeriods, in subParse()
3584 fSymbols->fNarrowDayPeriodsCount, *dayPeriod)) > 0) { in subParse()
3589 if ((newStart = matchDayPeriodStrings(text, start, fSymbols->fWideDayPeriods, in subParse()
3590 fSymbols->fWideDayPeriodsCount, *dayPeriod)) > 0) { in subParse()
3791 fSymbols->fLocalPatternChars, status); in toLocalizedPattern()
3811 fSymbols->fLocalPatternChars, in applyLocalizedPattern()
3820 return fSymbols; in getDateFormatSymbols()
3828 delete fSymbols; in adoptDateFormatSymbols()
3829 fSymbols = newFormatSymbols; in adoptDateFormatSymbols()
3836 delete fSymbols; in setDateFormatSymbols()
3837 fSymbols = new DateFormatSymbols(newFormatSymbols); in setDateFormatSymbols()
3876 delete fSymbols; in adoptCalendar()
3877 fSymbols = newSymbols; in adoptCalendar()