Home | History | Annotate | Download | only in include

Lines Matching defs:Array

67 class Array;
1565 * Returns StackTrace as a v8::Array that contains StackFrame objects.
1567 Local<Array> AsArray();
1868 * Accepts the array buffer corresponding to the one passed previously to
1990 * Returns true if this value is an array. Note that it will return false for
1991 * an Proxy for an array.
2239 * Attempts to convert a string to an array index.
2641 * Converts an object to a UTF-8-encoded character array. Useful if
3069 * Returns an array containing the names of the enumerable properties
3071 * array returned by this method contains the same values as would
3074 V8_DEPRECATE_SOON("Use maybe version", Local<Array> GetPropertyNames());
3075 V8_WARN_UNUSED_RESULT MaybeLocal<Array> GetPropertyNames(
3077 V8_WARN_UNUSED_RESULT MaybeLocal<Array> GetPropertyNames(
3083 * the returned array doesn't contain the names of properties from
3086 V8_DEPRECATE_SOON("Use maybe version", Local<Array> GetOwnPropertyNames());
3087 V8_WARN_UNUSED_RESULT MaybeLocal<Array> GetOwnPropertyNames(
3091 * Returns an array containing the names of the filtered properties
3093 * array returned by this method contains the same values as would
3096 V8_WARN_UNUSED_RESULT MaybeLocal<Array> GetOwnPropertyNames(
3344 * An instance of the built-in array constructor (ECMA-262, 15.4.2).
3346 class V8_EXPORT Array : public Object {
3361 * Creates a JavaScript array with the given length. If the length
3362 * is negative the returned array will have length 0.
3364 static Local<Array> New(Isolate* isolate, int length = 0);
3366 V8_INLINE static Array* Cast(Value* obj);
3368 Array();
3391 * Returns an array of length Size() * 2, where index N is the Nth key and
3394 Local<Array> AsArray() const;
3424 * Returns an array of the keys in this Set.
3426 Local<Array> AsArray() const;
4055 * The created array buffer is by default immediately in externalized state.
4175 * Number of elements in this typed array
4405 * array buffer is immediately in externalized state unless otherwise
4769 * Returns an array containing the names of the properties the named
4773 const PropertyCallbackInfo<Array>& info);
4893 * Returns an array containing the names of the properties the named
4897 const PropertyCallbackInfo<Array>& info);
4978 const PropertyCallbackInfo<Array>& info);
6426 * Specifies an optional nullptr-terminated array of raw addresses in the
6428 * deserialization. This array and its content must stay valid for the
7413 * The caller acquires ownership of the data array in the return value.
7422 * The caller acquires ownership of the data array in the return value.
7751 * \param external_references a null-terminated array of external references
7795 * caller acquires ownership of the data array in the return value.
9456 Array* Array::Cast(v8::Value* value) {
9460 return static_cast<Array*>(value);