Lines Matching defs:value

391     UnicodeString prop, attr, value;
406 value.setTo(prop, eql + 1);
413 if (value.compare(ICAL_YEARLY, -1) == 0) {
420 until = parseDateTimeString(value, 0, status);
427 if (value.length() > 2) {
430 month = parseAsciiDigits(value, 0, value.length(), status) - 1;
440 int32_t length = value.length();
447 if (value.charAt(0) == PLUS) {
449 } else if (value.charAt(0) == MINUS) {
454 int32_t n = parseAsciiDigits(value, length - 3, 1, status);
459 value.remove(0, length - 2);
463 if (value.compare(ICAL_DOW_NAMES[wday], 2) == 0) {
476 // A value of BYMONTHDAY could be negative, for example, -1 means
483 dom_end = value.indexOf(COMMA, dom_start);
485 dom_end = value.length();
489 dom[dom_idx] = parseAsciiDigits(value, dom_start, dom_end - dom_start, status);
1387 UnicodeString value; // RFC2445 prop value
1408 value.setTo(*line, valueSep + 1);
1413 && value.compare(ICAL_VTIMEZONE, -1) == 0) {
1420 tzid = value;
1422 tzurl = value;
1425 // can be any value.
1426 lastmod = parseDateTimeString(value, 0, status);
1431 UBool isDST = (value.compare(ICAL_DAYLIGHT, -1) == 0);
1432 if (value.compare(ICAL_STANDARD, -1) == 0 || isDST) {
1458 dtstart = value;
1460 zonename = value;
1462 from = value;
1464 to = value;
1470 // RDATE value may contain multiple date delimited
1476 int32_t dend = value.indexOf(COMMA, dstart);
1478 dstr.adoptInsteadAndCheckErrorCode(new UnicodeString(value, dstart), status);
1481 dstr.adoptInsteadAndCheckErrorCode(new UnicodeString(value, dstart, dend - dstart), status);
1495 LocalPointer<UnicodeString> element(new UnicodeString(value), status);