Home
last modified time | relevance | path

Searched refs:index_obj (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/runtime/
Druntime-array.cc809 Handle<Object> index_obj = isolate->factory()->NewNumberFromInt64(index); in RUNTIME_FUNCTION() local
812 isolate, object, index_obj, &success); in RUNTIME_FUNCTION()
908 Handle<Object> index_obj = isolate->factory()->NewNumberFromInt64(index); in RUNTIME_FUNCTION() local
911 isolate, object, index_obj, &success); in RUNTIME_FUNCTION()
919 return *index_obj; in RUNTIME_FUNCTION()
/external/python/cpython3/Objects/
Dtypeobject.c6089 PyObject *index_obj; in slot_sq_ass_item() local
6091 index_obj = PyLong_FromSsize_t(index); in slot_sq_ass_item()
6092 if (index_obj == NULL) { in slot_sq_ass_item()
6096 stack[0] = index_obj; in slot_sq_ass_item()
6104 Py_DECREF(index_obj); in slot_sq_ass_item()
/external/v8/src/
Dobjects.cc7506 bool PropertyKeyToArrayIndex(Handle<Object> index_obj, uint32_t* output) { in PropertyKeyToArrayIndex() argument
7507 return PropertyKeyToArrayLength(index_obj, output) && *output != kMaxUInt32; in PropertyKeyToArrayIndex()