/third_party/pcre2/pcre2/src/ |
D | pcre2posix.c | 302 int re_nsub = 0; in pcre2_regcomp() local 338 PCRE2_INFO_CAPTURECOUNT, &re_nsub); in pcre2_regcomp() 339 preg->re_nsub = (size_t)re_nsub; in pcre2_regcomp() 340 preg->re_match_data = pcre2_match_data_create(re_nsub + 1, NULL); in pcre2_regcomp()
|
D | pcre2posix.h | 105 size_t re_nsub; member
|
/third_party/boost/boost/regex/v4/ |
D | cregex.hpp | 64 std::size_t re_nsub; /* number of parenthesized subexpressions */ member 66 size_t re_nsub; member 78 std::size_t re_nsub; /* number of parenthesized subexpressions */ member 80 size_t re_nsub; member
|
/third_party/boost/libs/regex/src/ |
D | posix_api.cpp | 129 expression->re_nsub = static_cast<c_regex_type*>(expression->guts)->mark_count(); in regcompA() 270 for(i = 0; (i < n) && (i < expression->re_nsub + 1); ++i) in regexecA() 276 for(i = expression->re_nsub + 1; i < n; ++i) in regexecA()
|
D | wide_posix_api.cpp | 139 expression->re_nsub = static_cast<wc_regex_type*>(expression->guts)->mark_count(); in regcompW() 285 for(i = 0; (i < n) && (i < expression->re_nsub + 1); ++i) in regexecW() 291 for(i = expression->re_nsub + 1; i < n; ++i) in regexecW()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Regex.cpp | 65 return preg->re_nsub; in getNumMatches() 72 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; in match()
|
D | regex_impl.h | 50 size_t re_nsub; /* number of parenthesized subexpressions */ member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Regex.cpp | 79 return preg->re_nsub; in getNumMatches() 92 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; in match()
|
D | regex_impl.h | 50 size_t re_nsub; /* number of parenthesized subexpressions */ member
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | regex.h | 16 size_t re_nsub; member
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | regex.h | 16 size_t re_nsub; member
|
/third_party/musl/include/ |
D | regex.h | 16 size_t re_nsub; member
|
/third_party/musl/ndk_musl_include/ |
D | regex.h | 16 size_t re_nsub; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | regex.h | 16 size_t re_nsub; member
|
/third_party/toybox/toys/pending/ |
D | expr.c | 115 if (pat.re_nsub>0) { in re() 122 if (pat.re_nsub>0) ret->s = ""; in re()
|
/third_party/boost/libs/regex/test/c_compiler_checks/ |
D | posix_api_check.cpp | 46 BOOST_CHECK(re.re_nsub == 0); in main()
|
D | posix_api_check.c | 45 assert(re.re_nsub == 0); in main()
|
D | wide_posix_api_check.c | 56 if(re.re_nsub != 0) in main()
|
D | wide_posix_api_check.cpp | 57 if(re.re_nsub != 0) in main()
|
/third_party/musl/libc-test/src/api/ |
D | regex.c | 11 F(size_t,re_nsub) in f()
|
/third_party/boost/libs/regex/example/timer/ |
D | regex_timer.cpp | 186 nsubs = r.re_nsub + 1; in main()
|
/third_party/boost/libs/regex/doc/ |
D | posix_api.qbk | 68 [[`unsigned int re_nsub`][This is filled in by `regcomp` and indicates the number of sub-expression…
|
/third_party/toybox/toys/posix/ |
D | sed.c | 543 } else if (cc > reg->re_nsub) error_exit("no s//\\%d/", cc); in sed_line()
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
D | regcomp.c | 2731 preg->re_nsub = parse_ctx.submatch_id - 1; in regcomp() 2739 if (parse_ctx.max_backref > (int)preg->re_nsub) in regcomp()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
D | regcomp.c | 2732 preg->re_nsub = parse_ctx.submatch_id - 1; in regcomp() 2740 if (parse_ctx.max_backref > (int)preg->re_nsub) in regcomp()
|