Home | History | Annotate | Download | only in include

Lines Matching defs:Array

64 class Array;
1337 * Returns StackTrace as a v8::Array that contains StackFrame objects.
1339 Local<Array> AsArray();
1488 * Returns true if this value is an array.
1681 * Attempts to convert a string to an array index.
2030 * Converts an object to a UTF-8-encoded character array. Useful if
2354 * Returns an array containing the names of the enumerable properties
2356 * array returned by this method contains the same values as would
2359 Local<Array> GetPropertyNames();
2363 * the returned array doesn't contain the names of properties from
2366 Local<Array> GetOwnPropertyNames();
2568 * An instance of the built-in array constructor (ECMA-262, 15.4.2).
2570 class V8_EXPORT Array : public Object {
2581 * Creates a JavaScript array with the given length. If the length
2582 * is negative the returned array will have length 0.
2584 static Local<Array> New(Isolate* isolate, int length = 0);
2586 V8_INLINE static Array* Cast(Value* obj);
2588 Array();
2909 * The created array buffer is immediately in externalized state.
2997 * Number of elements in this typed array
3451 * Returns an array containing the names of the properties the named
3455 const PropertyCallbackInfo<Array>& info);
3497 * Returns an array containing the indices of the properties the
3501 const PropertyCallbackInfo<Array>& info);
6638 Array* Array::Cast(v8::Value* value) {
6642 return static_cast<Array*>(value);