Lines Matching defs:array
250 // array on memory allocated by this allocator, you will observe that elements
670 Local<FixedArray> array = options.As<FixedArray>();
671 if (array->Length() != kHostDefinedOptionsLength) return false;
673 if (!array->Get(context, 0).As<Value>()->Uint32Value(context).To(&magic)) {
677 return array->Get(context, 1).As<String>()->StrictEquals(resource_name);
1969 // Create a Local<PrimitiveArray> from the exports array.
2459 isolate->ThrowError("'arguments' must be an array");
2463 Local<Array> array = arguments.As<Array>();
2464 for (uint32_t i = 0; i < array->Length(); ++i) {
2468 MaybeLocal<Value> maybe_argument = array->Get(context, i);
3329 Local<Array> array = Array::New(isolate, size);
3334 array->Set(context, index, arg).FromJust();
3338 context->Global()->Set(context, name, array).FromJust();
3376 // Ensure space in the array.
5041 "Transfer array elements must be an ArrayBuffer");
5050 "ArrayBuffer occurs in the transfer array more than once");