Searched refs:last_index_obj (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/regexp/ |
D | regexp-utils.cc | 190 Handle<Object> last_index_obj; in SetAdvancedStringIndex() local 192 isolate, last_index_obj, in SetAdvancedStringIndex() 197 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj, in SetAdvancedStringIndex() 198 Object::ToLength(isolate, last_index_obj), Object); in SetAdvancedStringIndex() 199 const uint64_t last_index = PositiveNumberToUint64(*last_index_obj); in SetAdvancedStringIndex()
|
/external/v8/src/runtime/ |
D | runtime-regexp.cc | 1321 Handle<Object> last_index_obj(regexp->last_index(), isolate); in RegExpReplace() local 1322 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj, in RegExpReplace() 1323 Object::ToLength(isolate, last_index_obj), in RegExpReplace() 1325 last_index = PositiveNumberToUint32(*last_index_obj); in RegExpReplace() 1446 Handle<Object> last_index_obj(regexp->last_index(), isolate); in RUNTIME_FUNCTION() local 1448 isolate, last_index_obj, Object::ToLength(isolate, last_index_obj)); in RUNTIME_FUNCTION() 1449 last_index = PositiveNumberToUint32(*last_index_obj); in RUNTIME_FUNCTION() 1666 Handle<Object> last_index_obj; in RUNTIME_FUNCTION() local 1668 isolate, last_index_obj, RegExpUtils::GetLastIndex(isolate, splitter)); in RUNTIME_FUNCTION() 1671 isolate, last_index_obj, Object::ToLength(isolate, last_index_obj)); in RUNTIME_FUNCTION() [all …]
|