Searched refs:object3 (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/mac/WebView/
H A DWebDelegateImplementationCaching.mm152 static inline id CallDelegate(WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
157 return objc_msgSend(delegate, selector, self, object1, object2, object3);
159 return objc_msgSend(delegate, selector, self, object1, object2, object3);
306 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3)
311 return implementation(delegate, selector, self, object1, object2, object3);
313 return implementation(delegate, selector, self, object1, object2, object3);
320 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, id object3, id object4)
325 return implementation(delegate, selector, self, object1, object2, object3, object4);
327 return implementation(delegate, selector, self, object1, object2, object3, object4);
376 static inline id CallDelegate(IMP implementation, WebView *self, id delegate, SEL selector, id object1, id object2, NSInteger integer, id object3)
[all...]
H A DWebDelegateImplementationCaching.h107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
H A Dtst_qscriptvalue.cpp494 QScriptValue object3 = eng.newObject(); local
495 object3.setProperty("foo", num);
496 QCOMPARE(object3.property("foo").strictlyEquals(num), true);
497 object3.setProperty("bar", str);
498 QCOMPARE(object3.property("bar").strictlyEquals(str), true);
499 object3.setProperty("foo", QScriptValue());
500 QCOMPARE(object3.property("foo").isValid(), false);
501 QCOMPARE(object3.property("bar").strictlyEquals(str), true);
502 object3.setProperty("foo", num);
503 QCOMPARE(object3
808 QScriptValue object3 = otherEngine.evaluate("new Object()"); local
[all...]
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c789 JSObjectRef object3 = JSObjectMake(context, /* jsClass */ 0, /* data */ 0); local
804 // object1 -> object2 -> object3 -> object1
805 JSObjectSetPrototype(context, object2, object3);
806 ASSERT(JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object2), object3));
809 JSObjectSetPrototype(context, object3, object1);
810 result &= assertTrue(!JSValueIsStrictEqual(context, JSObjectGetPrototype(context, object3), object1), "It is possible to close a prototype chain cycle");
/external/v8/test/cctest/
H A Dtest-api.cc7998 Local<Object> object3 = Local<Object>::Cast(value_obj3); local
7999 value = object3->Get(v8_str("a"));

Completed in 811 milliseconds