Lines Matching refs:Array
112 class Array;
728 * Returns true if this value is an array.
772 * Attempts to convert a string to an array index.
1012 array. Useful if
1210 * Returns an array containing the names of the enumerable properties
1212 * array returned by this method contains the same values as would
1215 Local<Array> GetPropertyNames();
1359 * An instance of the built-in array constructor (ECMA-262, 15.4.2).
1361 class V8EXPORT Array : public Object {
1371 static Local<Array> New(int length = 0);
1372 static inline Array* Cast(Value* obj);
1374 Array();
1550 * Returns an array containing the names of the properties the named
1553 typedef Handle<Array> (*NamedPropertyEnumerator)(const AccessorInfo& info);
1589 * Returns an array containing the indices of the properties the
1592 typedef Handle<Array> (*IndexedPropertyEnumerator)(const AccessorInfo& info);
3237 Array* Array::Cast(v8::Value* value) {
3241 return static_cast<Array*>(value);