• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ICU-531.30/icuSources/i18n/

Lines Matching defs:field

169  * The field range check bias for each UDateFormatField.
838 // it is not used for every field) and then set fDateOverride to "d=hanidays"
839 // (as with std formats for zh@calendar=chinese) to use hanidays for d field.
965 // do not use the input calendar for field calculation.
1031 /* Map calendar field into calendar field level.
1032 * the larger the level, the smaller the field unit.
1051 /* Map calendar field LETTER into calendar field level.
1052 * the larger the level, the smaller the field unit.
1068 // Map index into pattern character string to Calendar field number.
1092 // Map index into pattern character string to DateFormat field number
1336 UCalendarDateFields field = fgPatternIndexToCalendarField[patternCharIndex];
1337 int32_t value = (patternCharIndex != UDAT_RELATED_YEAR_FIELD)? cal.get(field, status): cal.getRelatedYear(status);
1377 // the Calendar YEAR field runs 1 through 60 for cyclic years
1715 // if first field, check to see whether we need to and are able to titlecase it
1789 * times, represents a numeric field.
1798 // not at any field
1804 // not at any field
1815 // not after any field
1821 // not after any field
1858 // do not use the input calendar for field calculation.
1886 // Handle alphabetic field characters.
1890 // Count the length of this field specifier
1900 // Determine if there is an abutting numeric field.
1915 // 1/2/2. We only adjust the width of the leftmost field; the
1921 // shorten this field in each pass. If we can't shorten
1922 // this field any more, then the parse of this set of
1992 // Special hack for trailing "." after non-numeric field.
1994 // only do if the last field is not numeric
2194 UCalendarDateFields field,
2230 cal.set(field, bestMatch * 3);
2355 // we are after a non-numeric field: We skip the "."
2407 UCalendarDateFields field,
2416 if (field == UCAL_DAY_OF_WEEK) i = 1;
2462 if (!strcmp(cal.getType(),"hebrew") && field==UCAL_MONTH && bestMatch==13) {
2463 cal.set(field,6);
2466 if (field == UCAL_YEAR) {
2469 cal.set(field, bestMatch);
2573 UCalendarDateFields field = fgPatternIndexToCalendarField[patternCharIndex];
2670 if (bias >= 0 && (value > cal.getMaximum(field) + bias || value < cal.getMinimum(field) + bias)) {
2675 if (bias >= 0 && (value > cal.getMaximum(field) + bias)) {
2888 // fall through to set field
2996 // fall through to set field
3216 if (bias >= 0 && (value > cal.getMaximum(field) + bias || value < cal.getMinimum(field) + bias)) {
3221 if (bias >= 0 && (value > cal.getMaximum(field) + bias)) {
3263 cal.set(field, value);
3497 SimpleDateFormat::isFieldUnitIgnored(UCalendarDateFields field) const {
3498 return isFieldUnitIgnored(fPattern, field);
3504 UCalendarDateFields field) {
3505 int32_t fieldLevel = fgCalendarFieldToLevel[field];
3516 // the larger the level, the smaller the field unit.