HomeSort by relevance Sort by last modified time
    Searched full:nmatch (Results 1 - 25 of 54) sorted by null

1 2 3

  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 42 int nmatch, regmatch_t pmatch[])
50 if (nmatch == 0) {
58 if (regexec(&re, str.string(), nmatch, pmatch, 0) == 0) {
SimpleScriptExec.h 47 * @param nmatch number of substring pattern match elements. It should be in POSIX
53 int nmatch = 0, regmatch_t pmatch[] = NULL);
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex12.c 38 int flags, nmatch; member in struct:__anon43983
70 if (! regexec (&re, tests[i].string, tests[i].nmatch,
71 tests[i].nmatch ? rm : NULL, 0))
bug-regex11.c 38 int flags, nmatch; member in struct:__anon43982
119 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
127 for (n = 0; n < tests[i].nmatch; ++n)
  /external/llvm/lib/Support/
Regex.cpp 60 unsigned nmatch = Matches ? preg->re_nsub+1 : 0; local
64 pm.resize(nmatch > 0 ? nmatch : 1);
68 int rc = llvm_regexec(preg, String.data(), nmatch, pm.data(), REG_STARTEND);
83 for (unsigned i = 0; i != nmatch; ++i) {
regexec.c 141 llvm_regexec(const llvm_regex_t *preg, const char *string, size_t nmatch,
159 return(smatcher(g, string, nmatch, pmatch, eflags));
161 return(lmatcher(g, string, nmatch, pmatch, eflags));
  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 49 const int nmatch = 3; local
50 regmatch_t pmatch[nmatch];
51 if (!SimpleScriptExec::checkIfPassed(resultStr, match, nmatch, pmatch)) {