Home
last modified time | relevance | path

Searched refs:myObject (Results 1 – 15 of 15) sorted by relevance

/external/v8/test/webkit/
Ddfg-convert-this-dom-window-expected.txt29 PASS myObject.call() is [myObject, "myObject.call"]
31 PASS myFunction.call(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
35 PASS myFunction.aliasedCall(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
39 PASS myFunctionWithCall.call(myObject, 'arg1') is [myFunctionWithCall, "myFunctionWithCall.call", m…
40 PASS myFunctionWithCall.aliasedCall(myObject, 'arg1') is [myObject, "myFunctionWithCall", "arg1"]
41 PASS myObject.call() is [myObject, "myObject.call"]
43 PASS myFunction.call(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
47 PASS myFunction.aliasedCall(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
51 PASS myFunctionWithCall.call(myObject, 'arg1') is [myFunctionWithCall, "myFunctionWithCall.call", m…
52 PASS myFunctionWithCall.aliasedCall(myObject, 'arg1') is [myObject, "myFunctionWithCall", "arg1"]
[all …]
Dfunction-apply-aliased-expected.txt29 PASS myObject.apply() is [myObject, "myObject.apply"]
30 PASS forwarder(myObject) is [myObject, "myObject.apply"]
33 PASS myFunction.apply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
34 PASS myFunction.apply(myObject, arg1Array) is [myObject, "myFunction", "arg1"]
35 PASS forwarder(myFunction, myObject, arg1Array) is [myObject, "myFunction", "arg1"]
39 PASS myFunction.aliasedApply(myObject, ['arg1']) is [myObject, "myFunction", "arg1"]
43 PASS myFunctionWithApply.apply(myObject, ['arg1']) is [myFunctionWithApply, "myFunctionWithApply.ap…
44 PASS myFunctionWithApply.aliasedApply(myObject, ['arg1']) is [myObject, "myFunctionWithApply", "arg…
45 PASS myFunctionWithApply.apply(myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithApply.a…
46 …ASS forwarder(myFunctionWithApply, myObject, arg1Array) is [myFunctionWithApply, "myFunctionWithAp…
[all …]
Dfunction-call-aliased-expected.txt29 PASS myObject.call() is [myObject, "myObject.call"]
31 PASS myFunction.call(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
35 PASS myFunction.aliasedCall(myObject, 'arg1') is [myObject, "myFunction", "arg1"]
39 PASS myFunctionWithCall.call(myObject, 'arg1') is [myFunctionWithCall, "myFunctionWithCall.call", m…
40 PASS myFunctionWithCall.aliasedCall(myObject, 'arg1') is [myObject, "myFunctionWithCall", "arg1"]
Dfunction-call-aliased.js28 var myObject = { call: function() { return [myObject, "myObject.call"] } }; variable
Ddfg-convert-this-dom-window.js28 var myObject = { call: function() { return [myObject, "myObject.call"] } }; variable
Dfunction-apply-aliased.js28 var myObject = { apply: function() { return [myObject, "myObject.apply"] } }; variable
/external/clang/test/SemaObjCXX/
Ddelay-parsing-func-tryblock.mm10 BadReturn(MyClass * myObject);
11 int bar(MyClass * myObject);
12 void MemFunc(MyClass * myObject);
22 int BadReturn::bar(MyClass * myObject) {
23 [myObject privateMethod];
27 BadReturn::BadReturn(MyClass * myObject) try : CObj(myObject) { category
30 [myObject privateMethod];
31 [myObject privateMethod1];
32 getMe = bar(myObject);
43 void BadReturn::MemFunc(MyClass * myObject) try {
[all …]
Ddelay-parsing-cplusfuncs.mm10 int bar(MyClass * myObject);
12 int gorfbar(MyClass * myObject);
27 int S::bar(MyClass * myObject) {
28 [myObject privateMethod];
29 return gorfbar(myObject);
33 int S::gorfbar(MyClass * myObject) {
34 [myObject privateMethod];
35 [myObject privateMethod1];
36 return getMe + bar(myObject);
Ddelay-parsing-cfunctions.mm19 int bar(MyClass * myObject) {
20 [myObject privateMethod];
21 return gorfbar(myObject);
25 int gorfbar(MyClass * myObject) {
26 [myObject privateMethod];
27 [myObject privateMethod1];
28 return getMe + bar(myObject);
/external/clang/test/SemaObjC/
Ddelay-parsing-cfunctions.m14 int bar(MyClass * myObject) {
15 [myObject privateMethod];
16 return gorfbar(myObject);
20 int gorfbar(MyClass * myObject) {
21 [myObject privateMethod];
22 [myObject privateMethod1];
23 return getMe + bar(myObject);
26 int KR(myObject) category
27 MyClass * myObject;
29 [myObject privateMethod];
[all …]
Dproperty-missing.m31 void foo(MyClass *myObject) {
32myObject.someOtherObject.someProperty = 0; // expected-error {{property 'someOtherObject' refers t…
/external/clang/test/CodeGenObjC/
Ddot-syntax-2.m22 MutableMyClass * myObject;
24 myObject.myDict = newDict;
25 myObject.myLang = newDict;
/external/clang/test/CodeGenObjCXX/
Dproperty-dot-copy.mm25 Object3D *myObject;
28 myObject.position = V3D;
31 myObject.length = V3D;
/external/clang/test/Analysis/
Drefcnt_naming.m28 id myObject; field
75 myObject = X;
80 myObject = X;
/external/clang/docs/
DThreadSafetyAnalysis.rst231 MyClass myObject GUARDED_BY(mu);
235 myObject.init();
239 myObject.cleanup();
244 myObject.doSomething();
246 myObject.doSomething(); // Warning, mu is not locked.