Searched refs:last_match_info (Results 1 – 2 of 2) sorted by relevance
/external/webkit/V8Binding/v8/src/ |
D | jsregexp.cc | 201 Handle<JSArray> last_match_info) { in Exec() argument 204 return AtomExec(regexp, subject, index, last_match_info); in Exec() 207 IrregexpExec(regexp, subject, index, last_match_info); in Exec() 249 Handle<JSArray> last_match_info) { in AtomExec() argument 256 ASSERT(last_match_info->HasFastElements()); in AtomExec() 260 FixedArray* array = FixedArray::cast(last_match_info->elements()); in AtomExec() 263 return last_match_info; in AtomExec() 394 Handle<JSArray> last_match_info) { in IrregexpExec() argument 415 last_match_info->EnsureSize(number_of_capture_registers + kLastMatchOverhead); in IrregexpExec() 450 array = Handle<FixedArray>(FixedArray::cast(last_match_info->elements())); in IrregexpExec() [all …]
|
D | runtime.cc | 1058 CONVERT_ARG_CHECKED(JSArray, last_match_info, 3); in Runtime_RegExpExec() 1059 RUNTIME_ASSERT(last_match_info->HasFastElements()); in Runtime_RegExpExec() 1065 last_match_info); in Runtime_RegExpExec() 1447 Handle<JSArray> last_match_info); 1663 Handle<JSArray> last_match_info) { in Apply() argument 1679 FixedArray* match_info = FixedArray::cast(last_match_info->elements()); in Apply() 1702 JSArray* last_match_info) { in StringReplaceRegExpWithString() argument 1712 Handle<JSArray> last_match_info_handle(last_match_info); in StringReplaceRegExpWithString() 1827 CONVERT_CHECKED(JSArray, last_match_info, args[3]); in Runtime_StringReplaceRegExpWithString() 1829 ASSERT(last_match_info->HasFastElements()); in Runtime_StringReplaceRegExpWithString() [all …]
|