Lines Matching defs:negated
70 bool negated;
76 negated(p_negated),
93 bool negated;
99 negated(p_negated),
232 bool negated = (arg.compare(0, 4, "not-") == 0);
234 const std::string action = negated ? action_str.substr(4) : action_str;
243 if (negated)
245 negated = false;
254 if (negated)
261 if (negated)
263 negated = true;
274 return status_check(type, negated, value);
282 const bool negated = (arg.compare(0, 4, "not-") == 0);
284 const std::string action = negated ? action_str.substr(4) : action_str;
292 if (negated)
300 if (negated)
306 return output_check(type, negated, arg.substr(delimiter + 1));
516 if (!sc.negated && sc.value != status) {
521 } else if (sc.negated && sc.value == status) {
540 if (!sc.negated && sc.value != status) {
544 } else if (sc.negated && sc.value == status) {
599 if (!oc.negated && !is_empty) {
603 } else if (oc.negated && is_empty) {
610 if (!oc.negated && !equals) {
615 } else if (oc.negated && equals) {
629 if (!oc.negated && !equals) {
634 } else if (oc.negated && equals) {
642 if (!oc.negated && !matches) {
647 } else if (oc.negated && matches) {
655 INV(!oc.negated);