Home | History | Annotate | Download | only in util

Lines Matching defs:UNSET

1272      * are two special values, UNSET and INTERNALLY_SET. Values from
1399 protected static final int UNSET = 0;
1404 * @see #UNSET
1413 * @see #UNSET
1956 fields[i] = stamp[i] = 0; // UNSET == 0
1990 * field is unset
1993 return (stamp[field] > UNSET) ? fields[field] : defaultValue;
2231 fields[i] = stamp[i] = 0; // UNSET == 0
2246 stamp[field] = UNSET;
2256 return areFieldsVirtuallySet || (stamp[field] != UNSET);
2260 * Fills in any unset fields in the time field list.
2266 computeFields(); // fills in unset fields
2937 // disambiguation algorithm changes) then we will have to unset
4870 stamp[i] = UNSET;
5119 * unset, then the line fails to match. Within a group, the line with
5131 * <p>If all lines of a group contain at least one unset field, then no
5141 int bestStamp = UNSET;
5145 int lineStamp = UNSET;
5149 // If any field is unset then don't use this line
5150 if (s == UNSET) {
5292 newestStamp(AM_PM, MILLISECOND, UNSET) <= stamp[MILLISECONDS_IN_DAY]) {
5510 if (bestStamp != UNSET) {
5519 millisInDay += 12 * internalGet(AM_PM); // Default works for unset AM_PM
5523 // We use the fact that unset == 0; we start with millisInDay
5556 if (bestStamp != UNSET) {
5565 millisInDay += 12 * internalGet(AM_PM); // Default works for unset AM_PM
5569 // We use the fact that unset == 0; we start with millisInDay
5702 int bestStamp = newestStamp(ERA, DAY_OF_WEEK_IN_MONTH, UNSET);