Lines Matching refs:mValue

87         int uid = fieldValue.mValue.int_value;  in tryMatchString()
94 } else if (fieldValue.mValue.getType() == STRING) { in tryMatchString()
95 return fieldValue.mValue.str_value == str_match; in tryMatchString()
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()
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()
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()
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()
308 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
309 (values[i].mValue.float_value < matcher.lt_float())) { in matchesSimple()
317 if (values[i].mValue.getType() == FLOAT && in matchesSimple()
318 (values[i].mValue.float_value > matcher.gt_float())) { in matchesSimple()
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()
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()