Lines Matching refs:i
116 for (int i = start; i < end; i++) { in matchesSimple() local
117 int pos = values[i].mField.getPosAtDepth(depth); in matchesSimple()
120 newStart = i; in matchesSimple()
122 newEnd = i + 1; in matchesSimple()
146 for (int i = start; i < end; i++) { in matchesSimple() local
147 int pos = values[i].mField.getPosAtDepth(depth); in matchesSimple()
151 end = i; in matchesSimple()
160 for (int i = start; i < end; i++) { in matchesSimple() local
161 if (values[i].mField.isLastPos(depth)) { in matchesSimple()
162 start = i; in matchesSimple()
176 for (int i = start; i < end; i++) { in matchesSimple() local
177 int newPos = values[i].mField.getPosAtDepth(depth); in matchesSimple()
179 ranges.push_back(std::make_pair(newStart, i)); in matchesSimple()
180 newStart = i; in matchesSimple()
219 for (int i = start; i < end; i++) { in matchesSimple() local
220 if ((values[i].mValue.getType() == INT && in matchesSimple()
221 (values[i].mValue.int_value != 0) == matcher.eq_bool()) || in matchesSimple()
222 (values[i].mValue.getType() == LONG && in matchesSimple()
223 (values[i].mValue.long_value != 0) == matcher.eq_bool())) { in matchesSimple()
230 for (int i = start; i < end; i++) { in matchesSimple() local
231 if (tryMatchString(uidMap, values[i], matcher.eq_string())) { in matchesSimple()
239 for (int i = start; i < end; i++) { in matchesSimple() local
242 if (tryMatchString(uidMap, values[i], str)) { in matchesSimple()
255 for (int i = start; i < end; i++) { in matchesSimple() local
257 if (tryMatchString(uidMap, values[i], str)) { in matchesSimple()
265 for (int i = start; i < end; i++) { in matchesSimple() local
266 if (values[i].mValue.getType() == INT && in matchesSimple()
267 (matcher.eq_int() == values[i].mValue.int_value)) { in matchesSimple()
271 if (values[i].mValue.getType() == LONG && in matchesSimple()
272 (matcher.eq_int() == values[i].mValue.long_value)) { in matchesSimple()
279 for (int i = start; i < end; i++) { in matchesSimple() local
280 if (values[i].mValue.getType() == INT && in matchesSimple()
281 (values[i].mValue.int_value < matcher.lt_int())) { in matchesSimple()
285 if (values[i].mValue.getType() == LONG && in matchesSimple()
286 (values[i].mValue.long_value < matcher.lt_int())) { in matchesSimple()
293 for (int i = start; i < end; i++) { in matchesSimple() local
294 if (values[i].mValue.getType() == INT && in matchesSimple()
295 (values[i].mValue.int_value > matcher.gt_int())) { in matchesSimple()
299 if (values[i].mValue.getType() == LONG && in matchesSimple()
300 (values[i].mValue.long_value > matcher.gt_int())) { in matchesSimple()
307 for (int i = start; i < end; i++) { in matchesSimple() local
308 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
309 (values[i].mValue.float_value < matcher.lt_float())) { in matchesSimple()
316 for (int i = start; i < end; i++) { in matchesSimple() local
317 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
318 (values[i].mValue.float_value > matcher.gt_float())) { in matchesSimple()
325 for (int i = start; i < end; i++) { in matchesSimple() local
326 if (values[i].mValue.getType() == INT && in matchesSimple()
327 (values[i].mValue.int_value <= matcher.lte_int())) { in matchesSimple()
331 if (values[i].mValue.getType() == LONG && in matchesSimple()
332 (values[i].mValue.long_value <= matcher.lte_int())) { in matchesSimple()
339 for (int i = start; i < end; i++) { in matchesSimple() local
340 if (values[i].mValue.getType() == INT && in matchesSimple()
341 (values[i].mValue.int_value >= matcher.gte_int())) { in matchesSimple()
345 if (values[i].mValue.getType() == LONG && in matchesSimple()
346 (values[i].mValue.long_value >= matcher.gte_int())) { in matchesSimple()