• Home
  • History
  • Annotate
  • Raw
  • Download

Lines Matching refs:i

145     for (int i = start; i < end; i++) {  in getTransformedEvent()  local
147 const FieldValue& fieldValue = eventRef.getValues()[i]; in getTransformedEvent()
160 (*transformedEvent->getMutableValues())[i].mValue.str_value = str; in getTransformedEvent()
172 for (int i = start; i < end; i++) { in getStartEndAtDepth() local
173 int pos = values[i].mField.getPosAtDepth(depth); in getStartEndAtDepth()
176 newStart = i; in getStartEndAtDepth()
178 newEnd = i + 1; in getStartEndAtDepth()
216 for (int i = start; i < end; i++) { in computeRanges() local
217 int pos = values[i].mField.getPosAtDepth(depth); in computeRanges()
221 end = i; in computeRanges()
230 for (int i = start; i < end; i++) { in computeRanges() local
231 if (values[i].mField.isLastPos(depth)) { in computeRanges()
232 start = i; in computeRanges()
263 for (int i = start; i < end; i++) { in computeRanges() local
264 int newPos = values[i].mField.getPosAtDepth(depth); in computeRanges()
266 ranges.push_back(std::make_pair(start, i)); in computeRanges()
267 start = i; in computeRanges()
341 for (int i = start; i < end; i++) { in matchesSimple() local
342 if ((values[i].mValue.getType() == INT && in matchesSimple()
343 (values[i].mValue.int_value != 0) == matcher.eq_bool()) || in matchesSimple()
344 (values[i].mValue.getType() == LONG && in matchesSimple()
345 (values[i].mValue.long_value != 0) == matcher.eq_bool())) { in matchesSimple()
352 for (int i = start; i < end; i++) { in matchesSimple() local
353 if (tryMatchString(uidMap, values[i], matcher.eq_string())) { in matchesSimple()
361 for (int i = start; i < end; i++) { in matchesSimple() local
364 if (tryMatchString(uidMap, values[i], str)) { in matchesSimple()
377 for (int i = start; i < end; i++) { in matchesSimple() local
379 if (tryMatchString(uidMap, values[i], str)) { in matchesSimple()
387 for (int i = start; i < end; i++) { in matchesSimple() local
388 if (tryMatchWildcardString(uidMap, values[i], matcher.eq_wildcard_string())) { in matchesSimple()
396 for (int i = start; i < end; i++) { in matchesSimple() local
398 if (tryMatchWildcardString(uidMap, values[i], str)) { in matchesSimple()
407 for (int i = start; i < end; i++) { in matchesSimple() local
410 if (tryMatchWildcardString(uidMap, values[i], str)) { in matchesSimple()
422 for (int i = start; i < end; i++) { in matchesSimple() local
423 if (values[i].mValue.getType() == INT && in matchesSimple()
424 (matcher.eq_int() == values[i].mValue.int_value)) { in matchesSimple()
428 if (values[i].mValue.getType() == LONG && in matchesSimple()
429 (matcher.eq_int() == values[i].mValue.long_value)) { in matchesSimple()
437 for (int i = start; i < end; i++) { in matchesSimple() local
439 if (values[i].mValue.getType() == INT && in matchesSimple()
440 (int_value == values[i].mValue.int_value)) { in matchesSimple()
444 if (values[i].mValue.getType() == LONG && in matchesSimple()
445 (int_value == values[i].mValue.long_value)) { in matchesSimple()
454 for (int i = start; i < end; i++) { in matchesSimple() local
457 if (values[i].mValue.getType() == INT && in matchesSimple()
458 (int_value == values[i].mValue.int_value)) { in matchesSimple()
463 if (values[i].mValue.getType() == LONG && in matchesSimple()
464 (int_value == values[i].mValue.long_value)) { in matchesSimple()
476 for (int i = start; i < end; i++) { in matchesSimple() local
477 if (values[i].mValue.getType() == INT && in matchesSimple()
478 (values[i].mValue.int_value < matcher.lt_int())) { in matchesSimple()
482 if (values[i].mValue.getType() == LONG && in matchesSimple()
483 (values[i].mValue.long_value < matcher.lt_int())) { in matchesSimple()
490 for (int i = start; i < end; i++) { in matchesSimple() local
491 if (values[i].mValue.getType() == INT && in matchesSimple()
492 (values[i].mValue.int_value > matcher.gt_int())) { in matchesSimple()
496 if (values[i].mValue.getType() == LONG && in matchesSimple()
497 (values[i].mValue.long_value > matcher.gt_int())) { in matchesSimple()
504 for (int i = start; i < end; i++) { in matchesSimple() local
505 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
506 (values[i].mValue.float_value < matcher.lt_float())) { in matchesSimple()
513 for (int i = start; i < end; i++) { in matchesSimple() local
514 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
515 (values[i].mValue.float_value > matcher.gt_float())) { in matchesSimple()
522 for (int i = start; i < end; i++) { in matchesSimple() local
523 if (values[i].mValue.getType() == INT && in matchesSimple()
524 (values[i].mValue.int_value <= matcher.lte_int())) { in matchesSimple()
528 if (values[i].mValue.getType() == LONG && in matchesSimple()
529 (values[i].mValue.long_value <= matcher.lte_int())) { in matchesSimple()
536 for (int i = start; i < end; i++) { in matchesSimple() local
537 if (values[i].mValue.getType() == INT && in matchesSimple()
538 (values[i].mValue.int_value >= matcher.gte_int())) { in matchesSimple()
542 if (values[i].mValue.getType() == LONG && in matchesSimple()
543 (values[i].mValue.long_value >= matcher.gte_int())) { in matchesSimple()