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

/external/v8/src/regexp/
H A Dregexp-utils.cc176 Handle<Object> last_index_obj; local
178 isolate, last_index_obj,
182 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj,
183 Object::ToLength(isolate, last_index_obj), Object);
184 const int last_index = PositiveNumberToUint32(*last_index_obj);
/external/v8/src/runtime/
H A Druntime-regexp.cc1097 Handle<Object> last_index_obj(regexp->LastIndex(), isolate);
1098 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj,
1099 Object::ToLength(isolate, last_index_obj),
1101 last_index = PositiveNumberToUint32(*last_index_obj);
1194 Handle<Object> last_index_obj(regexp->LastIndex(), isolate);
1195 ASSIGN_RETURN_ON_EXCEPTION(isolate, last_index_obj,
1196 Object::ToLength(isolate, last_index_obj),
1198 last_index = PositiveNumberToUint32(*last_index_obj);
1466 Handle<Object> last_index_obj;
1468 isolate, last_index_obj, RegExpUtil
[all...]

Completed in 100 milliseconds