Home
last modified time | relevance | path

Searched refs:match_end (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/regexp/experimental/
Dexperimental-interpreter.cc183 const int match_end = registers[1]; in FindMatches() local
184 DCHECK_LE(match_begin, match_end); in FindMatches()
185 const int match_length = match_end - match_begin; in FindMatches()
187 SetInputIndex(match_end); in FindMatches()
188 } else if (match_end == input_.length()) { in FindMatches()
190 SetInputIndex(match_end); in FindMatches()
195 SetInputIndex(match_end + 1); in FindMatches()
/external/v8/src/regexp/
Dregexp-utils.cc27 const int match_end = match_info->Capture(index + 1); in GenericCaptureGetter() local
28 if (match_start == -1 || match_end == -1) { in GenericCaptureGetter()
35 return isolate->factory()->NewSubString(last_subject, match_start, match_end); in GenericCaptureGetter()
/external/libtextclassifier/native/annotator/datetime/
Dextractor.cc251 const int match_end = matcher_.End(group_id, &status); in UpdateMatchSpan() local
258 if (span->second == kInvalidIndex || span->second < match_end) { in UpdateMatchSpan()
259 span->second = match_end; in UpdateMatchSpan()
/external/pcre/dist2/src/
Dpcre2_jit_test.c1776 int match_start, int match_end, PCRE2_SIZE *ovector) in check_invalid_utf_result() argument
1797 if (ovector[1] != (PCRE2_SIZE)match_end) { in check_invalid_utf_result()
1799 pattern_index, type, (int)ovector[1], match_end); in check_invalid_utf_result()
1821 int match_end; member
2006 …id_utf_result(pattern_index, "match", result, current->match_start, current->match_end, ovector)) { in run_invalid_utf8_test()
2016 …esult(pattern_index, "partial match", result, current->match_start, current->match_end, ovector)) { in run_invalid_utf8_test()
2096 int match_end; member
2214 …id_utf_result(pattern_index, "match", result, current->match_start, current->match_end, ovector)) { in run_invalid_utf16_test()
2224 …esult(pattern_index, "partial match", result, current->match_start, current->match_end, ovector)) { in run_invalid_utf16_test()
2304 int match_end; member
[all …]
/external/v8/src/runtime/
Druntime-regexp.cc928 const int match_end = match_info_->Capture(1); in GetSuffix() local
929 return isolate_->factory()->NewSubString(subject_, match_end, in GetSuffix()
1150 int match_end = 0; in SearchRegExpMultiple() local
1161 if (match_end < match_start) { in SearchRegExpMultiple()
1162 ReplacementStringBuilder::AddSubjectSlice(&builder, match_end, in SearchRegExpMultiple()
1165 match_end = current_match[1]; in SearchRegExpMultiple()
1172 match_end); in SearchRegExpMultiple()
1175 isolate->factory()->NewSubString(subject, match_start, match_end); in SearchRegExpMultiple()
1231 if (match_end < subject_length) { in SearchRegExpMultiple()
1232 ReplacementStringBuilder::AddSubjectSlice(&builder, match_end, in SearchRegExpMultiple()
/external/elfutils/libcpu/
Di386_disasm.c373 const uint8_t *const match_end = match_data + sizeof (match_data); in i386_disasm() local
386 while (curr < match_end) in i386_disasm()
394 assert (curr + clen + 2 * (len - clen) <= match_end); in i386_disasm()
/external/cpuinfo/src/arm/linux/
Dchipset.c509 const char* start, const char* end, bool match_end, in match_mt() argument
556 if (match_end) { in match_mt()
/external/python/cpython2/Modules/
D_sre.c3497 match_end(MatchObject* self, PyObject* args) in match_end() function
3690 {"end", (PyCFunction) match_end, METH_VARARGS, match_end_doc},