Lines Matching defs:nInput
50 size_t nInput; /* size of the input */
84 * string to be tokenized is zInput[0..nInput-1]. A cursor
91 const char *zInput, int nInput, /* String to be tokenized */
103 if (nInput < 0)
104 c->nInput = strlen(zInput);
106 c->nInput = nInput;
695 while (c->iOffset < c->nInput) {
699 nInput && isDelim(z[c->iOffset])) {
705 while (c->iOffset < c->nInput && !isDelim(z[c->iOffset])) {