Lines Matching refs:idx
45 int idx, indent, count;
51 for (line = *pline, idx = count = 0; isspace(line[idx]); idx++) {
52 if (line[idx]=='\t') count += 8-(count&7);
53 else if (line[idx]==' ') count++;
55 indent = idx;
58 if (idx==len) {
70 while (idx<len) {
71 char *word = line+idx;
74 while (idx<len && !isspace(line[idx])) idx++;
75 line[idx++] = 0;
86 while (isspace(line[idx])) idx++;