Home
last modified time | relevance | path

Searched refs:REQUIRE (Results 1 – 18 of 18) sorted by relevance

/third_party/boost/boost/test/tools/old/
Dinterface.hpp85 (P), BOOST_TEST_STRINGIZE( P ), REQUIRE, CHECK_PRED, _ )
91 #define BOOST_REQUIRE_MESSAGE( P, M ) BOOST_TEST_TOOL_IMPL( 2, (P), M, REQUIRE, CHECK_MSG, _ )
120 #define BOOST_REQUIRE_THROW( S, E ) BOOST_CHECK_THROW_IMPL( S, E, true, "", REQUIRE )
129 … ": validation on the raised exception through predicate \"" BOOST_STRINGIZE(P) "\"", REQUIRE )
148 #define BOOST_REQUIRE_NO_THROW( S ) BOOST_CHECK_NO_THROW_IMPL( S, REQUIRE )
157 ::boost::test_tools::tt_detail::equal_impl_frwd(), "", REQUIRE, CHECK_EQUAL, (L)(R) )
166 ::boost::test_tools::tt_detail::ne_impl(), "", REQUIRE, CHECK_NE, (L)(R) )
175 ::boost::test_tools::tt_detail::lt_impl(), "", REQUIRE, CHECK_LT, (L)(R) )
184 ::boost::test_tools::tt_detail::le_impl(), "", REQUIRE, CHECK_LE, (L)(R) )
193 ::boost::test_tools::tt_detail::gt_impl(), "", REQUIRE, CHECK_GT, (L)(R) )
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
Dregcomp.c135 #define REQUIRE(co, e) (void)((co) || SETERROR(e)) macro
136 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
137 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
138 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
278 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere()
324 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
380 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
428 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp()
455 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Dregcomp.c263 #define REQUIRE(co, e) (void)((co) || SETERROR(e)) macro
264 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
265 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
266 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
406 REQUIRE(HERE() != conc, REG_EMPTY); /* require nonempty */ in p_ere()
452 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
508 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
540 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
556 REQUIRE(!wascaret, REG_BADRPT); in p_ere_exp()
583 REQUIRE(count <= count2, REG_BADBR); in p_ere_exp()
[all …]
/third_party/boost/boost/test/tools/
Dinterface.hpp152 2, BOOST_TEST_TOOL_UNIV, BOOST_TEST_TOOL_UNIV_EX, REQUIRE, __VA_ARGS__ )\
223 BOOST_CHECK_THROW_IMPL(S, E const&, REQUIRE, \
241 BOOST_CHECK_THROW_IMPL(S, E const& ex, REQUIRE, \
259 BOOST_CHECK_THROW_IMPL(S, ..., REQUIRE, \
268 #define BOOST_REQUIRE_MESSAGE( P, M ) BOOST_TEST_TOOL_DIRECT_IMPL( P, REQUIRE, M )
/third_party/node/deps/cjs-module-lexer/
DREADME.md83 EXPORTS_SPREAD: `...` (IDENTIFIER | REQUIRE)
99 REQUIRE: `require` `(` STRING_LITERAL `)`
101 EXPORTS_ASSIGN: (`var` | `const` | `let`) IDENTIFIER `=` (`_interopRequireWildcard (`)? REQUIRE
103 MODULE_EXPORTS_ASSIGN: MODULE_EXPORTS `=` REQUIRE
105 EXPORT_STAR: (`__export` | `__exportStar`) `(` REQUIRE
131 …1. The `REQUIRE` matches of the last matched of either `MODULE_EXPORTS_ASSIGN` or `EXPORTS_LITERAL…
132 …2. All _top-level_ `EXPORT_STAR` `REQUIRE` matches and `EXPORTS_ASSIGN` matches whose `IDENTIFIER`…
/third_party/protobuf/php/tests/proto/
Dtest_reserved_enum_value_upper.proto57 REQUIRE = 51; enumerator
Dtest_reserved_message_upper.proto56 message REQUIRE {} message
Dtest_reserved_enum_upper.proto56 enum REQUIRE { ZERO52 = 0; } enum
/third_party/boost/boost/test/tools/detail/
Dfwd.hpp78 WARN, CHECK, REQUIRE, PASS enumerator
/third_party/boost/libs/test/doc/testing_tools/
Dassertions_severity_levels.qbk14 * `REQUIRE` which implements a *requirements* : this is a strong condition for the operations follo…
57 [REQUIRE]
/third_party/selinux/checkpolicy/
Dpolicy_scan.l170 require|REQUIRE { return(REQUIRE); }
Dpolicy_parse.y152 %token MODULE VERSION_IDENTIFIER REQUIRE OPTIONAL
951 require_block : REQUIRE '{' require_list '}'
/third_party/json/test/src/
Dunit-udt.cpp422 REQUIRE(optPerson);
537 REQUIRE(optPerson);
Dunit-constructor1.cpp267 REQUIRE(j.size() == 2);
287 REQUIRE(j.size() == 4);
/third_party/boost/boost/test/impl/
Dtest_tools.ipp355 case REQUIRE:
386 case REQUIRE:
/third_party/boost/libs/test/doc/test_output/
Dlog_format.qbk191 [ [On failed REQUIRE level test assertion]
/third_party/boost/libs/test/doc/runtime_configuration/
Druntime_config_reference.qbk419 …all the messages describing failed assertion on `REQUIRE` level (__BOOST_TEST_REQUIRE__ / `BOOST_R…
/third_party/json/test/thirdparty/doctest/
Ddoctest.h2478 #define REQUIRE DOCTEST_REQUIRE