Lines Matching defs:thisArg
579 inline CallbackWrapper(JSVM_Value thisArg, size_t args_length, void* data)
580 : _this(thisArg), _args_length(args_length), _data(data) {}
738 JSVM_Value thisArg = this->This();
741 result = setterCb(env, name, value, thisArg, innerData);
769 JSVM_Value thisArg = this->This();
772 result = getterCb(env, name, thisArg, innerData);
801 JSVM_Value thisArg = this->This();
804 result = deleterCb(env, name, thisArg, innerData);
834 JSVM_Value thisArg = this->This();
837 result = enumeratorCb(env, thisArg, innerData);
869 JSVM_Value thisArg = this->This();
872 result = indexSetterCb(env, index, value, thisArg, innerData);
901 JSVM_Value thisArg = this->This();
904 result = indexGetterCb(env, index, thisArg, innerData);
933 JSVM_Value thisArg = this->This();
936 result = indexDeleterCb(env, index, thisArg, innerData);
966 JSVM_Value thisArg = this->This();
969 result = enumeratorCb(env, thisArg, innerData);
3274 JSVM_Value* thisArg, // [out] Receives the JS 'this' arg for the call
3289 if (thisArg != nullptr) {
3290 *thisArg = info->This();