Searched refs:SetPrototype (Results 1 - 15 of 15) sorted by relevance

/external/v8/src/
H A Dhandles.h204 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value);
274 Handle<Object> SetPrototype(Handle<JSFunction> function,
H A Daccessors.cc468 { MaybeObject* maybe_result = function->SetPrototype(prototype);
491 { MaybeObject* maybe_prototype = function->SetPrototype(value);
795 return receiver->SetPrototype(value, skip_hidden_prototypes);
H A Dhandles.cc178 func->SetPrototype(*value));
221 Handle<Object> SetPrototype(Handle<JSFunction> function, function in namespace:v8::internal
311 Handle<Object> SetPrototype(Handle<JSObject> obj, Handle<Object> value) { function in namespace:v8::internal
314 obj->SetPrototype(*value, skip_hidden_prototypes), Object);
H A Djson-parser.h308 SetPrototype(json_object, value);
H A Dbootstrapper.cc486 SetPrototype(object_fun, prototype);
1476 SetPrototype(script_fun, prototype);
1605 SetPrototype(opaque_reference_fun, prototype);
1625 SetPrototype(array_function, prototype);
H A Dobjects.h1445 MUST_USE_RESULT MaybeObject* SetPrototype(Object* value,
5795 MUST_USE_RESULT MaybeObject* SetPrototype(Object* value);
H A Dapi.cc2872 bool v8::Object::SetPrototype(Handle<Value> value) { function in class:v8::v8::Object
2874 ON_BAILOUT(isolate, "v8::Object::SetPrototype()", return false);
2882 i::Handle<i::Object> result = i::SetPrototype(self, value_obj);
H A Dobjects.cc7478 MaybeObject* JSFunction::SetPrototype(Object* value) { function in class:v8::internal::JSFunction
8649 MaybeObject* JSReceiver::SetPrototype(Object* value, function in class:v8::internal::JSReceiver
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.cpp178 globalObject->SetPrototype(jsWorkerContext);
H A DV8DOMWrapper.cpp148 value->SetPrototype(objectPrototype);
H A DV8DOMWindowShell.cpp421 v8RealGlobal->SetPrototype(jsWindow);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLDocumentCustom.cpp72 shadow->SetPrototype(wrapper);
/external/v8/test/cctest/
H A Dtest-api.cc7717 THREADED_TEST(SetPrototype) {
7739 CHECK(o0->SetPrototype(o1));
7742 CHECK(o1->SetPrototype(o2));
7746 CHECK(o2->SetPrototype(o3));
7809 CHECK(o4->SetPrototype(o3));
7810 CHECK(o3->SetPrototype(o2));
7811 CHECK(o2->SetPrototype(o1));
7868 CHECK(o0->SetPrototype(o1));
7869 // If setting the prototype leads to the cycle, SetPrototype should
7872 CHECK(!o1->SetPrototype(o
[all...]
H A Dtest-heap.cc1591 baseObject->SetPrototype(*prototype, false)->ToObjectChecked();
/external/v8/include/
H A Dv8.h1529 V8EXPORT bool SetPrototype(Handle<Value> prototype);

Completed in 250 milliseconds