/external/webkit/Source/WebKit/mac/WebView/ |
WebDelegateImplementationCaching.mm | 152 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...] |
WebDelegateImplementationCaching.h | 107 id CallFormDelegate(WebView *self, SEL selector, id object1, id object2, id object3, id object4, id object5);
|
/external/llvm/test/Transforms/GlobalOpt/ |
invariant.ll | 34 @object3 = global i32 0 35 ; CHECK: @object3 = global i32 -1 37 store i32 -1, i32* @object3 38 %A = bitcast i32* @object3 to i8*
|
/external/valgrind/tsan/ |
suppressions_test.cc | 74 string o[] = {"object1", "object2", "object3"}; 81 string o[] = {"object2", "object1", "object3"}; 89 string o[] = {"object2", "object1", "object3", "o4"}; 97 string o[] = {"o0", "object2", "object1", "object3"}; 128 string o[] = {"object2", "object1", "object3"}; 135 string o[] = {"object2", "object1", "object3"}; 142 string o[] = {"object2", "objt1", "object3"}; 150 string o[] = {"object2", "objt1", "object3", "object4"}; 182 string o[] = {"object1", "object2", "object3", "object4"}; 189 string o[] = {"object1", "object2", "object3", "object4"} [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-using-decl.cpp | 47 Knot().Visit((struct Object3*) 0); // expected-error {{no matching member function for call}}
|
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/ |
tst_qscriptvalue.cpp | 494 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.property("foo").strictlyEquals(num), true) 808 QScriptValue object3 = otherEngine.evaluate("new Object()"); local [all...] |
/external/webkit/Source/JavaScriptCore/API/tests/ |
testapi.c | 789 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"); [all...] |
/external/v8/test/cctest/ |
test-api.cc | 7998 Local<Object> object3 = Local<Object>::Cast(value_obj3); local [all...] |