Lines Matching refs:is_normal

571         is_normal      = 2 * is_require,
572 is_throws = 2 * is_normal,
591 DT_WARN = is_normal | is_warn,
592 DT_CHECK = is_normal | is_check,
593 DT_REQUIRE = is_normal | is_require,
595 DT_WARN_FALSE = is_normal | is_false | is_warn,
596 DT_CHECK_FALSE = is_normal | is_false | is_check,
597 DT_REQUIRE_FALSE = is_normal | is_false | is_require,
619 DT_WARN_EQ = is_normal | is_eq | is_warn,
620 DT_CHECK_EQ = is_normal | is_eq | is_check,
621 DT_REQUIRE_EQ = is_normal | is_eq | is_require,
623 DT_WARN_NE = is_normal | is_ne | is_warn,
624 DT_CHECK_NE = is_normal | is_ne | is_check,
625 DT_REQUIRE_NE = is_normal | is_ne | is_require,
627 DT_WARN_GT = is_normal | is_gt | is_warn,
628 DT_CHECK_GT = is_normal | is_gt | is_check,
629 DT_REQUIRE_GT = is_normal | is_gt | is_require,
631 DT_WARN_LT = is_normal | is_lt | is_warn,
632 DT_CHECK_LT = is_normal | is_lt | is_check,
633 DT_REQUIRE_LT = is_normal | is_lt | is_require,
635 DT_WARN_GE = is_normal | is_ge | is_warn,
636 DT_CHECK_GE = is_normal | is_ge | is_check,
637 DT_REQUIRE_GE = is_normal | is_ge | is_require,
639 DT_WARN_LE = is_normal | is_le | is_warn,
640 DT_CHECK_LE = is_normal | is_le | is_check,
641 DT_REQUIRE_LE = is_normal | is_le | is_require,
643 DT_WARN_UNARY = is_normal | is_unary | is_warn,
644 DT_CHECK_UNARY = is_normal | is_unary | is_check,
645 DT_REQUIRE_UNARY = is_normal | is_unary | is_require,
647 DT_WARN_UNARY_FALSE = is_normal | is_false | is_unary | is_warn,
648 DT_CHECK_UNARY_FALSE = is_normal | is_false | is_unary | is_check,
649 DT_REQUIRE_UNARY_FALSE = is_normal | is_false | is_unary | is_require,
5178 if((rb.m_at & assertType::is_normal) && !rb.m_threw)