Home | History | Annotate | Download | only in cctest

Lines Matching refs:Array

733       "var a = new Array();\n"
1208 v8::Local<v8::Array> array = v8::Array::New(env->GetIsolate());
1209 CHECK_EQ(0u, array->Length());
1210 // Force array's buffer allocation.
1211 array->Set(env.local(), 2, v8_num(7)).FromJust();
1220 // They are the array and its buffer.
1226 array->Set(env.local(), i, v8_num(i)).FromJust();
2312 // The first value in the literals array should be the boilerplate,
2334 v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(array_val);
2335 // Verify the array is "a" in the code above.
2336 CHECK_EQ(3u, array->Length());
2339 array->Get(env.local(), v8::Integer::New(isolate, 0))
2344 array->Get(env.local(), v8::Integer::New(isolate, 1))
2349 array->Get(env.local(), v8::Integer::New(isolate, 2))