Lines Matching refs:is_normal
771 is_normal = 2 * is_require, enumerator
772 is_throws = 2 * is_normal,
791 DT_WARN = is_normal | is_warn,
792 DT_CHECK = is_normal | is_check,
793 DT_REQUIRE = is_normal | is_require,
795 DT_WARN_FALSE = is_normal | is_false | is_warn,
796 DT_CHECK_FALSE = is_normal | is_false | is_check,
797 DT_REQUIRE_FALSE = is_normal | is_false | is_require,
819 DT_WARN_EQ = is_normal | is_eq | is_warn,
820 DT_CHECK_EQ = is_normal | is_eq | is_check,
821 DT_REQUIRE_EQ = is_normal | is_eq | is_require,
823 DT_WARN_NE = is_normal | is_ne | is_warn,
824 DT_CHECK_NE = is_normal | is_ne | is_check,
825 DT_REQUIRE_NE = is_normal | is_ne | is_require,
827 DT_WARN_GT = is_normal | is_gt | is_warn,
828 DT_CHECK_GT = is_normal | is_gt | is_check,
829 DT_REQUIRE_GT = is_normal | is_gt | is_require,
831 DT_WARN_LT = is_normal | is_lt | is_warn,
832 DT_CHECK_LT = is_normal | is_lt | is_check,
833 DT_REQUIRE_LT = is_normal | is_lt | is_require,
835 DT_WARN_GE = is_normal | is_ge | is_warn,
836 DT_CHECK_GE = is_normal | is_ge | is_check,
837 DT_REQUIRE_GE = is_normal | is_ge | is_require,
839 DT_WARN_LE = is_normal | is_le | is_warn,
840 DT_CHECK_LE = is_normal | is_le | is_check,
841 DT_REQUIRE_LE = is_normal | is_le | is_require,
843 DT_WARN_UNARY = is_normal | is_unary | is_warn,
844 DT_CHECK_UNARY = is_normal | is_unary | is_check,
845 DT_REQUIRE_UNARY = is_normal | is_unary | is_require,
847 DT_WARN_UNARY_FALSE = is_normal | is_false | is_unary | is_warn,
848 DT_CHECK_UNARY_FALSE = is_normal | is_false | is_unary | is_check,
849 DT_REQUIRE_UNARY_FALSE = is_normal | is_false | is_unary | is_require,
5671 if((rb.m_at & assertType::is_normal) && !rb.m_threw)