Home
last modified time | relevance | path

Searched refs:last_index_obj (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/regexp/
Dregexp-utils.cc174 Handle<Object> last_index_obj; in SetAdvancedStringIndex() local
176 isolate, last_index_obj, in SetAdvancedStringIndex()
180 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj, in SetAdvancedStringIndex()
181 Object::ToLength(isolate, last_index_obj), Object); in SetAdvancedStringIndex()
182 const int last_index = PositiveNumberToUint32(*last_index_obj); in SetAdvancedStringIndex()
/external/v8/src/runtime/
Druntime-regexp.cc1097 Handle<Object> last_index_obj(regexp->LastIndex(), isolate); in StringReplaceNonGlobalRegExpWithFunction() local
1098 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj, in StringReplaceNonGlobalRegExpWithFunction()
1099 Object::ToLength(isolate, last_index_obj), in StringReplaceNonGlobalRegExpWithFunction()
1101 last_index = PositiveNumberToUint32(*last_index_obj); in StringReplaceNonGlobalRegExpWithFunction()
1188 Handle<Object> last_index_obj(regexp->LastIndex(), isolate); in RegExpReplace() local
1189 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj, in RegExpReplace()
1190 Object::ToLength(isolate, last_index_obj), in RegExpReplace()
1192 last_index = PositiveNumberToUint32(*last_index_obj); in RegExpReplace()
1465 Handle<Object> last_index_obj; in RUNTIME_FUNCTION() local
1467 isolate, last_index_obj, RegExpUtils::GetLastIndex(isolate, splitter)); in RUNTIME_FUNCTION()
[all …]