Lines Matching defs:is
60 * returns +<previous id> if the token is not found. This value
61 * is used to help determine where in the record the problem
62 * occurred. The common failure case is that the parsing of
63 * token M is incorrect and the buffer pointer ends up pointing
90 /* here if token id is not in table */
342 DPRINT((dbfp, "text_token: l is %d\n%s\n", ctx->out.sf_textlen,
376 return (-1); /* other than IP type is not implemented */
752 * the sequence of strings is converted to a single string with
1174 int is; /* index of where we are in source string */
1180 for (is = 0, id = 0; is < ls; is++) {
1181 if (s[is] == '\0') {
1190 if (s[is] == '/')
1192 } else if (s[is] == '/') {
1199 if (s[is] == '.' && s[is+1] == '/') {
1200 is += 1;
1204 if (s[is] == '.' && s[is+1] == '\0') {
1210 if (s[is] == '.' && s[is+1] == '.' && s[is+2] == '\0') {
1211 is += 1;
1220 if (s[is] == '.' && s[is+1] == '.' && s[is+2] == '/') {
1221 is += 2;
1229 while (is < ls && (s[id++] = s[is++]) != '/')
1231 is--;
1262 * '/' added (if needed for paths). Another is added for '\0'
1264 * if offset is zero, new data overwrites old, if any. Otherwise
1265 * new data is appended to the end.