Searched refs:expression (Results 1 - 5 of 5) sorted by relevance
/bind-9.11.3/lib/isc/include/isc/ |
H A D | regex.h | 20 isc_regex_validate(const char *expression); 22 * Check a regular expression for syntactic correctness. 26 *\li the number of groups in the expression.
|
/bind-9.11.3/lib/isc/tests/ |
H A D | regex_test.c | 35 const char * expression; member in struct:__anon280 1080 r = regcomp(&preg, tests[i].expression, REG_EXTENDED); 1084 tests[i].expression, r != 0 ? "bad" : "good", 1090 tests[i].expression, 1103 r = isc_regex_validate(tests[i].expression); 1106 tests[i].expression, r, tests[i].expect);
|
/bind-9.11.3/unit/atf-src/atf-c/ |
H A D | macros.h | 130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \ 132 if (!(expression)) \ 136 #define ATF_CHECK_MSG(expression, fmt, ...) \ 138 if (!(expression)) \ 142 #define ATF_REQUIRE(expression) \ 144 if (!(expression)) \ 146 #expression " not met"); \ 149 #define ATF_CHECK(expression) \ 151 if (!(expression)) \ 153 #expression " no [all...] |
/bind-9.11.3/lib/isc/ |
H A D | error.c | 72 isc_error_runtimecheck(const char *file, int line, const char *expression) { argument 73 isc_error_fatal(file, line, "RUNTIME_CHECK(%s) %s", expression,
|
/bind-9.11.3/unit/atf-src/atf-c++/ |
H A D | macros.hpp | 98 #define ATF_REQUIRE(expression) \ 100 if (!(expression)) { \ 102 atfu_ss << "Line " << __LINE__ << ": " << #expression \
|
Completed in 18 milliseconds