Home
last modified time | relevance | path

Searched refs:this_obj (Results 1 – 2 of 2) sorted by relevance

/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/
Dtestharness.js776 Test.prototype.step = function(func, this_obj) argument
794 this_obj = this;
798 return func.apply(this_obj, Array.prototype.slice.call(arguments, 2));
817 Test.prototype.step_func = function(func, this_obj) argument
822 this_obj = test_this;
827 return test_this.step.apply(test_this, [func, this_obj].concat(
832 Test.prototype.step_func_done = function(func, this_obj) argument
837 this_obj = test_this;
843 test_this.step.apply(test_this, [func, this_obj].concat(
869 var this_obj = this;
[all …]
/external/v8/test/cctest/
Dtest-api.cc8709 Local<Object> this_obj = Local<Object>::Cast(info.This()); in YSetter() local
8711 if (this_obj->Has(context, name).FromJust()) in YSetter()
8712 this_obj->Delete(context, name).FromJust(); in YSetter()
8713 CHECK(this_obj->Set(context, name, value).FromJust()); in YSetter()