/external/v8/test/webkit/ |
D | dfg-convert-this-dom-window-expected.txt | 29 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 …]
|
D | function-apply-aliased-expected.txt | 29 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 …]
|
D | function-call-aliased-expected.txt | 29 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"]
|
D | function-call-aliased.js | 28 var myObject = { call: function() { return [myObject, "myObject.call"] } }; variable
|
D | dfg-convert-this-dom-window.js | 28 var myObject = { call: function() { return [myObject, "myObject.call"] } }; variable
|
D | function-apply-aliased.js | 28 var myObject = { apply: function() { return [myObject, "myObject.apply"] } }; variable
|
/external/clang/test/SemaObjCXX/ |
D | delay-parsing-func-tryblock.mm | 10 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 …]
|
D | delay-parsing-cplusfuncs.mm | 10 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);
|
D | delay-parsing-cfunctions.mm | 19 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/ |
D | delay-parsing-cfunctions.m | 14 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 …]
|
D | property-missing.m | 31 void foo(MyClass *myObject) { 32 …myObject.someOtherObject.someProperty = 0; // expected-error {{property 'someOtherObject' refers t…
|
/external/clang/test/CodeGenObjC/ |
D | dot-syntax-2.m | 22 MutableMyClass * myObject; 24 myObject.myDict = newDict; 25 myObject.myLang = newDict;
|
/external/clang/test/CodeGenObjCXX/ |
D | property-dot-copy.mm | 25 Object3D *myObject; 28 myObject.position = V3D; 31 myObject.length = V3D;
|
/external/clang/test/Analysis/ |
D | refcnt_naming.m | 28 id myObject; field 75 myObject = X; 80 myObject = X;
|
/external/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 231 MyClass myObject GUARDED_BY(mu); 235 myObject.init(); 239 myObject.cleanup(); 244 myObject.doSomething(); 246 myObject.doSomething(); // Warning, mu is not locked.
|