Home | History | Annotate | Download | only in intltest

Lines Matching refs:ep

462             const char* ep = rp;
463 while (*ep && *ep != ':') ++ep;
466 UnicodeString keyword(rp, ep - rp, US_INV);
479 if (*ep) {
480 ++ep; // skip colon
481 while (*ep && *ep == ' ') ++ep; // and spaces
486 if (*ep != 'n') {
487 errln("expected values for keyword %s but got -1 (%s)", rp, ep);
490 } else if (*ep == 'n') {
491 errln("expected count of -1, got %d, for keyword %s (%s)", count, rp, ep);
502 if (*ep == 0 || *ep == ';') {
508 double expectedVal = strtod(ep, &xp);
509 if (xp == ep) {
515 ep = xp;
521 if (*ep == ',') ++ep;
525 if (!(*ep == 0 || *ep == ';')) {
526 errln("didn't get expected value: %s", ep);
531 while (*ep && *ep != ';') ++ep;
532 if (*ep == ';') ++ep;
533 rp = ep;