Home
last modified time | relevance | path

Searched refs:returnThis (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/mjsunit/harmony/
Dreflect-apply.js21 function returnThis() { return this; } function
24 assertSame(this, Reflect.apply(returnThis, void 0, []));
25 assertSame(this, Reflect.apply(returnThis, null, []));
26 assertSame(this, Reflect.apply(returnThis, this, []));
27 assertSame(receiver, Reflect.apply(returnThis, receiver, []));
31 Object.getPrototypeOf(Reflect.apply(returnThis, "str", [])));
33 Object.getPrototypeOf(Reflect.apply(returnThis, 123, [])));
35 Object.getPrototypeOf(Reflect.apply(returnThis, true, [])));
38 Reflect.apply(returnThis, Symbol("test"), [])));
43 function returnThis() { 'use strict'; return this; } function
[all …]
Dsimd.js559 function returnThis() { return this; } function in TestReflectApply
567 Reflect.apply(returnThis, instance, [])));
/external/v8/test/mjsunit/es6/
Dspread-call.js10 function returnThis() { return this; } function
11 assertEquals(void 0, returnThis(..."test"));
81 returnThis: returnThis, property
87 returnThis: returnThis, property
95 assertEquals(O, O.returnThis(..."test"));
97 assertEquals(O.nested, O.nested.returnThis(..."test"));
156 function returnThis() { return this; } function
157 assertEquals(this, returnThis(..."test"));
233 returnThis: returnThis, property
239 returnThis: returnThis, property
[all …]
/external/junit/src/junit/framework/
DJUnit4TestAdapterCache.java73 List<Test> returnThis = new ArrayList<Test>(); in asTestList() local
75 returnThis.add(asTest(child)); in asTestList()
77 return returnThis; in asTestList()