Lines Matching refs:delimBuf
350 UChar delimBuf[sizeof(test)];
357 u_uastrcpy(delimBuf, " ");
359 ptr = u_strtok_r(temp, delimBuf, &state);
360 u_uastrcpy(delimBuf, " ,");
366 ptr = u_strtok_r(NULL, delimBuf, &state);
373 state = delimBuf; /* Give it an "invalid" saveState */
375 if (u_strtok_r(currTokenBuf, delimBuf, &state) != NULL) {
381 state = delimBuf; /* Give it an "invalid" saveState */
383 if (u_strtok_r(currTokenBuf, delimBuf, &state) != NULL) {
390 state = delimBuf; /* Give it an "invalid" saveState */
392 if (u_strtok_r(currTokenBuf, delimBuf, &state) == NULL) {
395 if (u_strtok_r(NULL, delimBuf, &state) != NULL) {
402 state = delimBuf; /* Give it an "invalid" saveState */
405 u_uastrcpy(delimBuf, "q"); /* Give it a delimiter that it can't find. */
406 ptr = u_strtok_r(currTokenBuf, delimBuf, &state);
410 if (u_strtok_r(NULL, delimBuf, &state) != NULL) {