Lines Matching refs:spaceNeeded

1068         int32_t  spaceNeeded;  in TestRegexCAPI()  local
1098 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1102 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1129 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1133 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1136 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1140 for (sz=0; sz < spaceNeeded+1; sz++) { in TestRegexCAPI()
1145 if (sz >= spaceNeeded) { in TestRegexCAPI()
1155 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1174 int32_t spaceNeeded; in TestRegexCAPI() local
1201spaceNeeded = (int32_t)strlen("first .tag-a. second.tag-b. third."); /* "." at NUL positions */ in TestRegexCAPI()
1202 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1220spaceNeeded = (int32_t)strlen("first . second<tag-b> third."); /* "." at NUL positions */ in TestRegexCAPI()
1221 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1239spaceNeeded = (int32_t)strlen("first .tag-a. second<tag-b> third."); /* "." at NUL positions */ in TestRegexCAPI()
1240 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1260spaceNeeded = (int32_t)strlen("first .tag-a. second.tag-b. third."); /* "." at NUL positions */ in TestRegexCAPI()
1261 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1288spaceNeeded = (int32_t)strlen("first .tag-a. second.tag-b.."); /* "." at NUL positions */ in TestRegexCAPI()
1289 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()