Lines Matching refs:this
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
80 function MyObject() { this.self = eval('this'); }
101 function MyOtherObject() { this.self = e('this'); }
103 assertTrue(this === o.self);
106 var x = this;
155 eval("var eval = function(s) { return this; }");
158 assertEquals(this, result);
161 var obj = { f: function(eval) { return eval("this"); } };
167 var obj = { f: function(eval) { arguments; return eval("this"); } };
186 var eval = function (x) { return this; };
189 assertEquals(this, result);