Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Dregexp-utils.cc25 const int match_end = match_info->Capture(index + 1); in GenericCaptureGetter() local
26 if (match_start == -1 || match_end == -1) { in GenericCaptureGetter()
33 return isolate->factory()->NewSubString(last_subject, match_start, match_end); in GenericCaptureGetter()
/external/v8/src/runtime/
Druntime-regexp.cc867 const int match_end = match_info_->Capture(1); in GetSuffix() local
868 return isolate_->factory()->NewSubString(subject_, match_end, in GetSuffix()
985 int match_end = 0; in SearchRegExpMultiple() local
996 if (match_end < match_start) { in SearchRegExpMultiple()
997 ReplacementStringBuilder::AddSubjectSlice(&builder, match_end, in SearchRegExpMultiple()
1000 match_end = current_match[1]; in SearchRegExpMultiple()
1007 match_end); in SearchRegExpMultiple()
1010 isolate->factory()->NewSubString(subject, match_start, match_end); in SearchRegExpMultiple()
1047 if (match_end < subject_length) { in SearchRegExpMultiple()
1048 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/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dlexer.py230 if self.match_end():
327 def match_end(self): member in Lexer
/external/v8/src/builtins/
Dbuiltins-regexp.cc2466 Node* const match_end = LoadFixedArrayElement( in ReplaceSimpleStringFastPath() local
2483 SubString(context, string, match_end, subject_end); in ReplaceSimpleStringFastPath()
2496 SubString(context, string, match_end, subject_end); in ReplaceSimpleStringFastPath()
/external/python/cpython2/Modules/
D_sre.c3483 match_end(MatchObject* self, PyObject* args) in match_end() function
3676 {"end", (PyCFunction) match_end, METH_VARARGS, match_end_doc},