Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-utils.cc26 const int match_end = match_info->Capture(index + 1); in GenericCaptureGetter() local
27 if (match_start == -1 || match_end == -1) { in GenericCaptureGetter()
34 return isolate->factory()->NewSubString(last_subject, match_start, match_end); in GenericCaptureGetter()
/external/libtextclassifier/annotator/datetime/
Dextractor.cc209 const int match_end = matcher_.End(group_id, &status); in UpdateMatchSpan() local
216 if (span->second == kInvalidIndex || span->second < match_end) { in UpdateMatchSpan()
217 span->second = match_end; in UpdateMatchSpan()
/external/v8/src/runtime/
Druntime-regexp.cc960 const int match_end = match_info_->Capture(1); in GetSuffix() local
961 return isolate_->factory()->NewSubString(subject_, match_end, in GetSuffix()
1178 int match_end = 0; in SearchRegExpMultiple() local
1189 if (match_end < match_start) { in SearchRegExpMultiple()
1190 ReplacementStringBuilder::AddSubjectSlice(&builder, match_end, in SearchRegExpMultiple()
1193 match_end = current_match[1]; in SearchRegExpMultiple()
1200 match_end); in SearchRegExpMultiple()
1203 isolate->factory()->NewSubString(subject, match_start, match_end); in SearchRegExpMultiple()
1259 if (match_end < subject_length) { in SearchRegExpMultiple()
1260 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/v8/src/builtins/
Dbuiltins-regexp-gen.cc2896 TNode<Smi> const match_end = CAST(LoadFixedArrayElement( in ReplaceSimpleStringFastPath() local
2918 var_last_match_end.Bind(match_end); in ReplaceSimpleStringFastPath()
2922 GotoIf(SmiNotEqual(match_end, match_start), &loop); in ReplaceSimpleStringFastPath()
/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},