Lines Matching refs:ep
513 const char* ep = rp; in testGetAllKeywordValues()
514 while (*ep && *ep != ':') ++ep; in testGetAllKeywordValues()
517 UnicodeString keyword(rp, ep - rp, US_INV); in testGetAllKeywordValues()
530 if (*ep) { in testGetAllKeywordValues()
531 ++ep; // skip colon in testGetAllKeywordValues()
532 while (*ep && *ep == ' ') ++ep; // and spaces in testGetAllKeywordValues()
537 if (*ep != 'n') { in testGetAllKeywordValues()
538 errln("expected values for keyword %s but got -1 (%s)", rp, ep); in testGetAllKeywordValues()
541 } else if (*ep == 'n') { in testGetAllKeywordValues()
542 errln("expected count of -1, got %d, for keyword %s (%s)", count, rp, ep); in testGetAllKeywordValues()
553 if (*ep == 0 || *ep == ';') { in testGetAllKeywordValues()
559 double expectedVal = strtod(ep, &xp); in testGetAllKeywordValues()
560 if (xp == ep) { in testGetAllKeywordValues()
566 ep = xp; in testGetAllKeywordValues()
572 if (*ep == ',') ++ep; in testGetAllKeywordValues()
576 if (!(*ep == 0 || *ep == ';')) { in testGetAllKeywordValues()
577 … errln("file: %s, line %d, didn't get expected value: %s", __FILE__, __LINE__, ep); in testGetAllKeywordValues()
582 while (*ep && *ep != ';') ++ep; in testGetAllKeywordValues()
583 if (*ep == ';') ++ep; in testGetAllKeywordValues()
584 rp = ep; in testGetAllKeywordValues()