Home
last modified time | relevance | path

Searched refs:length_obj (Results 1 – 6 of 6) sorted by relevance

/external/llvm/utils/
DlldbDataFormatters.py87 length_obj = self.valobj.GetChildMemberWithName('Length')
88 self.length = length_obj.GetValueAsUnsigned(0)
/external/v8/src/runtime/
Druntime-typedarray.cc148 Handle<Object> length_obj = isolate->factory()->NewNumberFromSize(length); in RUNTIME_FUNCTION() local
149 holder->set_length(*length_obj); in RUNTIME_FUNCTION()
187 CONVERT_NUMBER_ARG_HANDLE_CHECKED(length_obj, 3); in RUNTIME_FUNCTION()
204 length_obj = handle(JSTypedArray::cast(*source)->length(), isolate); in RUNTIME_FUNCTION()
207 CHECK(TryNumberToSize(isolate, *length_obj, &length)); in RUNTIME_FUNCTION()
250 holder->set_length(*length_obj); in RUNTIME_FUNCTION()
/external/v8/src/
Djson-stringifier.cc121 Handle<Object> length_obj; in InitializeReplacer() local
123 isolate_, length_obj, in InitializeReplacer()
126 if (!length_obj->ToUint32(&length)) length = kMaxUInt32; in InitializeReplacer()
Daccessors.cc174 Handle<Object> length_obj = Utils::OpenHandle(*val); in ArrayLengthSetter() local
177 if (!JSArray::AnythingToArrayLength(isolate, length_obj, &length)) { in ArrayLengthSetter()
Delements.cc509 Object* length_obj = Handle<JSArray>::cast(holder)->length(); in ValidateImpl() local
510 if (length_obj->IsSmi()) { in ValidateImpl()
511 length = Smi::cast(length_obj)->value(); in ValidateImpl()
1160 Handle<Object> length_obj = isolate->factory()->NewNumberFromUint(length); in SetLengthImpl() local
1161 array->set_length(*length_obj); in SetLengthImpl()
Dapi.cc6311 i::Handle<i::Object> length_obj = in New() local
6313 obj->set_length(*length_obj); in New()