Home | History | Annotate | Download | only in include

Lines Matching defs:Array

87 class Array;
1287 * Returns StackTrace as a v8::Array that contains StackFrame objects.
1289 Local<Array> AsArray();
1435 * Returns true if this value is an array.
1594 * Attempts to convert a string to an array index.
1963 * Converts an object to a UTF-8-encoded character array. Useful if
2264 * Returns an array containing the names of the enumerable properties
2266 * array returned by this method contains the same values as would
2269 Local<Array> GetPropertyNames();
2273 * the returned array doesn't contain the names of properties from
2276 Local<Array> GetOwnPropertyNames();
2473 * An instance of the built-in array constructor (ECMA-262, 15.4.2).
2475 class V8_EXPORT Array : public Object {
2486 * Creates a JavaScript array with the given length. If the length
2487 * is negative the returned array will have length 0.
2489 static Local<Array> New(Isolate* isolate, int length = 0);
2490 V8_DEPRECATED("Will be removed", static Local<Array> New(int length = 0));
2492 V8_INLINE static Array* Cast(Value* obj);
2494 Array();
2759 * The created array buffer is immediately in externalized state.
2849 * Number of elements in this typed array
3333 * Returns an array containing the names of the properties the named
3337 const PropertyCallbackInfo<Array>& info);
3379 * Returns an array containing the indices of the properties the
3383 const PropertyCallbackInfo<Array>& info);
6458 Array* Array::Cast(v8::Value* value) {
6462 return static_cast<Array*>(value);