Lines Matching refs:i

38 int i;  variable
42 command[i].str = "foobarbaz";
43 command[i].substr = "barbaz";
44 i++;
46 command[i].str = "foofoofoo";
47 command[i].substr = "foo";
48 i++;
50 command[i].str = "boofoofoo";
51 command[i].substr = "foo";
52 i++;
54 command[i].str = "foobarbaz";
55 command[i].substr = "barbazzy";
56 i++;
58 command[i].str = "foobar";
59 command[i].substr = "foobar";
60 i++;
62 command[i].str = "foobar";
63 command[i].substr = "foobarbaz";
64 i++;
66 command[i].str = "";
67 command[i].substr = "foobar";
68 i++;
70 command[i].str = "foobar";
71 command[i].substr = "";
72 i++;
74 command[i].str = "";
75 command[i].substr = "";
76 i++;
78 command[i].str = "foo";
79 command[i].substr = "";
80 i++;
87 /j < i && end == 0/
89 command[i + k].str = command[j].str;
90 command[i + k].substr = command[j].substr;
91 command[i + k].haspos = 1;
92 command[i + k].position = -400;
95 command[i + k].str = command[j].str;
96 command[i + k].substr = command[j].substr;
97 command[i + k].haspos = 1;
98 command[i + k].position = -1;
101 command[i + k].str = command[j].str;
102 command[i + k].substr = command[j].substr;
103 command[i + k].haspos = 1;
104 command[i + k].position = 0;
107 command[i + k].str = command[j].str;
108 command[i + k].substr = command[j].substr;
109 command[i + k].haspos = 1;
110 command[i + k].position = strlen(command[j].str) / 2;
113 command[i + k].str = command[j].str;
114 command[i + k].substr = command[j].substr;
115 command[i + k].haspos = 1;
116 command[i + k].position = strlen(command[j].str);
119 command[i + k].str = command[j].str;
120 command[i + k].substr = command[j].substr;
121 command[i + k].haspos = 1;
122 command[i + k].position = strlen(command[j].str) + 1;
125 command[i + k].str = command[j].str;
126 command[i + k].substr = command[j].substr;
127 command[i + k].haspos = 1;
128 command[i + k].position = strlen(command[j].str) + 2;
131 command[i + k].str = command[j].str;
132 command[i + k].substr = command[j].substr;
133 command[i + k].haspos = 1;
134 command[i + k].position = 400;
141 /j == i && end == 0/
144 i = 0;
148 /end != 0 && i < end && !command[i].haspos/
150 this->result = index(command[i].str, command[i].substr);
153 command[i].str, command[i].substr, this->result);
155 command[i].str, command[i].substr);
157 command[i].str, command[i].substr);
159 command[i].str, command[i].substr);
166 /end != 0 && i < end && !command[i].haspos/
168 this->result = rindex(command[i].str, command[i].substr);
171 command[i].str, command[i].substr, this->result);
173 command[i].str, command[i].substr);
175 command[i].str, command[i].substr);
177 command[i].str, command[i].substr);
184 /end != 0 && i < end && command[i].haspos/
186 this->result = index(command[i].str,
187 command[i].substr, command[i].position);
189 printf("\tif (index(\"%s\", \"%s\", %d) != %d) {\n", command[i].str,
190 command[i].substr, command[i].position, this->result);
192 command[i].str, command[i].substr, command[i].position);
194 command[i].str, command[i].substr, command[i].position);
196 command[i].str, command[i].substr, command[i].position);
203 /end != 0 && i < end && command[i].haspos/
205 this->result = rindex(command[i].str,
206 command[i].substr, command[i].position);
208 printf("\tif (rindex(\"%s\", \"%s\", %d) != %d) {\n", command[i].str,
209 command[i].substr, command[i].position, this->result);
211 command[i].str, command[i].substr, command[i].position);
213 command[i].str, command[i].substr, command[i].position);
215 command[i].str, command[i].substr, command[i].position);
222 /end != 0 && ++i == end/