Home
last modified time | relevance | path

Searched refs:match_info (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c61 struct match_info { struct
116 struct match_info Negate;
117 struct match_info Abs;
118 struct match_info File;
119 struct match_info Index;
120 struct match_info Swizzle;
249 struct match_info File;
250 struct match_info Index;
251 struct match_info WriteMask;
351 struct match_info Opcode;
[all …]
/external/v8/src/regexp/
Dregexp-utils.cc16 Isolate* isolate, Handle<RegExpMatchInfo> match_info, int capture, in GenericCaptureGetter() argument
19 if (index >= match_info->NumberOfCaptureRegisters()) { in GenericCaptureGetter()
24 const int match_start = match_info->Capture(index); in GenericCaptureGetter()
25 const int match_end = match_info->Capture(index + 1); in GenericCaptureGetter()
32 Handle<String> last_subject(match_info->LastSubject()); in GenericCaptureGetter()
Dregexp-utils.h20 Handle<RegExpMatchInfo> match_info,
/external/v8/src/builtins/
Dbuiltins-regexp.cc77 Node* const context, Node* const regexp, Node* const match_info, in ConstructNewResultFromMatchInfo() argument
82 match_info, RegExpMatchInfo::kNumberOfCapturesIndex)); in ConstructNewResultFromMatchInfo()
85 LoadFixedArrayElement(match_info, RegExpMatchInfo::kFirstCaptureIndex); in ConstructNewResultFromMatchInfo()
87 match_info, RegExpMatchInfo::kFirstCaptureIndex + 1); in ConstructNewResultFromMatchInfo()
120 Node* const start = LoadFixedArrayElement(match_info, from_cursor); in ConstructNewResultFromMatchInfo()
126 Node* const end = LoadFixedArrayElement(match_info, from_cursor_plus1); in ConstructNewResultFromMatchInfo()
1212 Handle<RegExpMatchInfo> match_info = isolate->regexp_last_match_info(); in BUILTIN() local
1213 const int length = match_info->NumberOfCaptureRegisters(); in BUILTIN()
1222 return *RegExpUtils::GenericCaptureGetter(isolate, match_info, last_capture); in BUILTIN()
1227 Handle<RegExpMatchInfo> match_info = isolate->regexp_last_match_info(); in BUILTIN() local
[all …]
Dbuiltins-regexp.h37 Node* const match_info,
/external/v8/src/objects/
Dregexp-match-info.h49 Handle<RegExpMatchInfo> match_info, int capture_count); in NON_EXPORTED_BASE()
/external/v8/src/runtime/
Druntime-regexp.cc845 Handle<RegExpMatchInfo> match_info) in MatchInfoBackedMatch() argument
846 : isolate_(isolate), match_info_(match_info) { in MatchInfoBackedMatch()
/external/syslinux/gpxe/src/drivers/net/
Dtlan.c111 struct match_info { struct
Dtulip.c173 struct match_info { struct
/external/v8/src/
Dobjects.cc9968 Handle<RegExpMatchInfo> match_info, int capture_count) { in ReserveCaptures() argument
9969 DCHECK_GE(match_info->length(), kLastMatchOverhead); in ReserveCaptures()
9972 EnsureSpaceInFixedArray(match_info, required_length); in ReserveCaptures()