Home | History | Annotate | Download | only in cctest

Lines Matching refs:ab3

2951   Local<v8::ArrayBuffer> ab3 =
2953 CheckInternalFieldsAreZero(ab3);
2954 CHECK_EQ(100, static_cast<int>(ab3->ByteLength()));
2955 CHECK(ab3->IsExternal());
2957 env->Global()->Set(v8_str("ab3"), ab3);
2959 v8::Handle<v8::Value> result = CompileRun("ab3.byteLength");
2962 result = CompileRun("var u8_b = new Uint8Array(ab3);"