Lines Matching refs:negated
75 bool negated; member
81 negated(p_negated), in status_check()
98 bool negated; member
104 negated(p_negated), in output_check()
264 bool negated = (arg.compare(0, 4, "not-") == 0); in parse_status_check_arg() local
266 const std::string action = negated ? action_str.substr(4) : action_str; in parse_status_check_arg()
275 if (negated) in parse_status_check_arg()
277 negated = false; in parse_status_check_arg()
286 if (negated) in parse_status_check_arg()
293 if (negated) in parse_status_check_arg()
295 negated = true; in parse_status_check_arg()
306 return status_check(type, negated, value); in parse_status_check_arg()
314 const bool negated = (arg.compare(0, 4, "not-") == 0); in parse_output_check_arg() local
316 const std::string action = negated ? action_str.substr(4) : action_str; in parse_output_check_arg()
324 if (negated) in parse_output_check_arg()
332 if (negated) in parse_output_check_arg()
338 return output_check(type, negated, arg.substr(delimiter + 1)); in parse_output_check_arg()
605 if (!sc.negated && sc.value != status) { in run_status_check()
610 } else if (sc.negated && sc.value == status) { in run_status_check()
629 if (!sc.negated && sc.value != status) { in run_status_check()
633 } else if (sc.negated && sc.value == status) { in run_status_check()
688 if (!oc.negated && !is_empty) { in run_output_check()
692 } else if (oc.negated && is_empty) { in run_output_check()
699 if (!oc.negated && !equals) { in run_output_check()
704 } else if (oc.negated && equals) { in run_output_check()
718 if (!oc.negated && !equals) { in run_output_check()
723 } else if (oc.negated && equals) { in run_output_check()
731 if (!oc.negated && !matches) { in run_output_check()
736 } else if (oc.negated && matches) { in run_output_check()
744 INV(!oc.negated); in run_output_check()