HomeSort by relevance Sort by last modified time
    Searched refs:matchend (Results 1 - 3 of 3) sorted by null

  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
scanner.py 45 matchbegin, matchend = m.span()
46 if lastend == matchend:
51 if next_pos is not None and next_pos != matchend:
53 matchend = next_pos
54 match = self.scanner.scanner(string, matchend).match
55 yield rval, matchend
56 lastend = matchend
  /external/pcre/
pcrecpp.cc 404 int matchend = start + 1; // advance one character. local
410 if (matchend < static_cast<int>(str->length()) &&
411 (*str)[start] == '\r' && (*str)[matchend] == '\n' &&
415 matchend++;
420 while (matchend < static_cast<int>(str->length()) &&
421 ((*str)[matchend] & 0xc0) == 0x80)
422 matchend++;
426 out.append(*str, start, matchend - start);
427 start = matchend;
436 int matchstart = vec[0], matchend = vec[1] local
    [all...]
  /external/icu4c/i18n/
usearch.cpp 589 int32_t matchend = *end; local
592 if (!ubrk_isBoundary(breakiterator, matchend)) {
593 *end = ubrk_following(breakiterator, matchend);
    [all...]

Completed in 248 milliseconds