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

1 2

  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.c 77 regmatch_t pmatch[10]; local
79 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0)))
88 asprintf(&((*uri)->scheme), "%.*s",pmatch[2].rm_eo - pmatch[2].rm_so, &full_uri[pmatch[2].rm_so]);
89 asprintf(&((*uri)->host_and_port), "%.*s",pmatch[4].rm_eo - pmatch[4].rm_so, &full_uri[pmatch[4].rm_so]);
90 asprintf(&((*uri)->path), "%.*s",pmatch[5].rm_eo - pmatch[5].rm_so, &full_uri[pmatch[5].rm_so])
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 50 regmatch_t pmatch[nmatch]; local
51 if (!SimpleScriptExec::checkIfPassed(resultStr, match, nmatch, pmatch)) {
55 LOGV("pmatch 0: %d, %d 1:%d, %d 2:%d, %d",
56 pmatch[0].rm_so, pmatch[0].rm_eo,
57 pmatch[1].rm_so, pmatch[1].rm_eo,
58 pmatch[2].rm_so, pmatch[2].rm_eo);
60 if (pmatch[1].rm_so == -1)
    [all...]
  /external/llvm/lib/Support/
regengine.inc 74 llvm_regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
132 llvm_regmatch_t pmatch[],
149 start = string + pmatch[0].rm_so;
150 stop = string + pmatch[0].rm_eo;
171 m->pmatch = NULL;
187 free(m->pmatch);
209 if (m->pmatch == NULL)
210 m->pmatch = (llvm_regmatch_t *)malloc((m->g->nsub + 1) *
212 if (m->pmatch == NULL) {
217 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1
    [all...]
regexec.c 142 llvm_regmatch_t pmatch[], int eflags)
159 return(smatcher(g, string, nmatch, pmatch, eflags));
161 return(lmatcher(g, string, nmatch, pmatch, eflags));
Regex.cpp 62 // pmatch needs to have at least one element.
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 74 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */ member in struct:match
128 matcher(struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[],
145 start = string + pmatch[0].rm_so;
146 stop = string + pmatch[0].rm_eo;
167 m->pmatch = NULL;
183 free(m->pmatch);
205 if (m->pmatch == NULL)
206 m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
208 if (m->pmatch == NULL) {
213 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1
    [all...]
regexec.c 140 regmatch_t pmatch[], int eflags)
157 return(smatcher(g, (char *)string, nmatch, pmatch, eflags));
159 return(lmatcher(g, (char *)string, nmatch, pmatch, eflags));
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
fastgrep.c 205 grep_search(fastgrep_t *fg, const unsigned char *data, size_t len, regmatch_t *pmatch)
210 if (pmatch->rm_so == (ssize_t)len)
213 if (fg->bol && pmatch->rm_so != 0) {
214 pmatch->rm_so = len;
215 pmatch->rm_eo = len;
233 pmatch->rm_so = j;
234 pmatch->rm_eo = j + fg->len;
244 pmatch->rm_so = j - fg->len;
245 pmatch->rm_eo = j;
256 j = pmatch->rm_so
    [all...]
util.c 290 regmatch_t pmatch; local
297 pmatch.rm_so = st;
298 pmatch.rm_eo = l->len;
309 l->len, &pmatch);
311 st = pmatch.rm_eo;
314 &pmatch, eflags);
316 st = pmatch.rm_eo;
322 (pmatch.rm_so != 0 ||
323 (size_t)pmatch.rm_eo != l->len))
326 if (fg_pattern[i].word && pmatch.rm_so != 0)
    [all...]
  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.h 49 * @param pmatch pattern match elements
53 int nmatch = 0, regmatch_t pmatch[] = NULL);
SimpleScriptExec.cpp 42 int nmatch, regmatch_t pmatch[])
58 if (regexec(&re, str.string(), nmatch, pmatch, 0) == 0) {
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 110 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */ member in struct:match
129 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
173 == size_t nmatch, regmatch_t pmatch[], int eflags);
180 regmatch_t pmatch[],
196 /* pmatch checked below */
202 _DIAGASSERT(pmatch != NULL);
203 start = string + (size_t)pmatch[0].rm_so;
204 stop = string + (size_t)pmatch[0].rm_eo;
225 m->pmatch = NULL;
261 if (m->pmatch == NULL
    [all...]
regexec.c 207 regmatch_t pmatch[],
231 return(smatcher(g, s, nmatch, pmatch, eflags));
233 return(lmatcher(g, s, nmatch, pmatch, eflags));
  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 242 regmatch_t pmatch[nmatch]; local
253 while (regexec(&re, src, nmatch, pmatch, 0) == 0) {
254 matchStart = strStart + pmatch[1].rm_so;
255 matchEnd = strStart + pmatch[1].rm_eo;
256 translated.append(StringUtil::substr(orig, strStart, pmatch[1].rm_so - 1)); //-1 for $
268 src += pmatch[1].rm_eo;
269 strStart += pmatch[1].rm_eo;
  /external/pcre/dist/doc/
pcreposix.3 
  /external/libmicrohttpd/src/spdy2http/
proxy.c 240 regmatch_t pmatch[10]; local
242 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0)))
253 (int) (pmatch[2].rm_eo - pmatch[2].rm_so),
254 &full_uri[pmatch[2].rm_so]);
256 (int) (pmatch[4].rm_eo - pmatch[4].rm_so),
257 &full_uri[pmatch[4].rm_so]);
260 (int) (pmatch[5].rm_eo - pmatch[5].rm_so)
    [all...]
  /external/pcre/dist/
pcreposix.c 318 be set. When this is the case, the nmatch and pmatch arguments are ignored, and
323 regmatch_t pmatch[], int eflags)
343 if (nosub || pmatch == NULL) nmatch = 0;
367 so = pmatch[0].rm_so;
368 eo = pmatch[0].rm_eo;
390 pmatch[i].rm_so = ovector[i*2];
391 pmatch[i].rm_eo = ovector[i*2+1];
394 for (; i < nmatch; i++) pmatch[i].rm_so = pmatch[i].rm_eo = -1;
  /external/zlib/src/
zlib2ansi 60 my $pMatch = '(\b' . join('|', keys %pList) . '\b)\W*$' ;
84 my %tmp = map { /$pMatch/; $_ => $pList{$1} }
  /external/pcre/dist/doc/html/
pcreposix.html 36 <b> size_t <i>nmatch</i>, regmatch_t <i>pmatch</i>[], int <i>eflags</i>);</b>
123 <i>nmatch</i> and <i>pmatch</i> arguments are ignored, and no captured strings
225 The string is considered to start at <i>string</i> + <i>pmatch[0].rm_so</i> and
226 to have a terminating NUL located at <i>string</i> + <i>pmatch[0].rm_eo</i>
236 strings is returned. The <i>nmatch</i> and <i>pmatch</i> arguments of
240 If the value of <i>nmatch</i> is zero, or if the value <i>pmatch</i> is NULL,
245 substrings, are returned via the <i>pmatch</i> argument, which points to an
  /external/lz4/lib/
lz4.c 394 static unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit)
400 size_t diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn);
401 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; }
406 if (LZ4_64bits()) if ((pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMatch+=4; }
407 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; }
408 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++;
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
proto.h 60 extern int pmatch(fa *, const char *);
run.c 580 mf = pmatch;
    [all...]
b.c 488 int pmatch(fa *f, const char *p0) /* longest match, for sub */ function
535 overflo("out of space in pmatch");
  /external/toybox/toys/posix/
sed.c 216 regmatch_t pmatch[], int eflags)
230 rc = regexec(preg, s, nmatch, pmatch, eflags);
232 for (rc = 0; rc<nmatch && pmatch[rc].rm_so!=-1; rc++) {
233 pmatch[rc].rm_so += s-string;
234 pmatch[rc].rm_eo += s-string;
    [all...]
  /external/pdfium/xfa/src/fgas/src/font/
fx_stdfontmgr.cpp 348 FX_LPCFONTDESCRIPTOR pMatch = m_FontFaces.GetPtrAt(i);
349 if (*pMatch == *pDesc) {
350 return pMatch;
    [all...]

Completed in 1125 milliseconds

1 2