Lines Matching refs:reject
115 JSHandle<JSTaggedValue> reject(thread, resolvingFunctions->GetRejectFunction());
117 EcmaInterpreter::NewRuntimeCallInfo(thread, reject, undefined, undefined, 1);
136 JSHandle<JSPromiseReactionsFunction> reject(GetCallArg(argv, 1)); // 1 : reject method
143 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
168 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
178 return DynamicImport::ExecuteNativeOrJsonModule(thread, requestPath, moduleType, resolve, reject);
184 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
190 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
206 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, CatchException(thread, reject));
210 thread, entryPoint, ModuleTypes::JSON_MODULE, resolve, reject, jsPandaFile.get());
220 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, CatchException(thread, reject));
226 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
236 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
245 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, CatchException(thread, reject));
254 JSTaggedValue BuiltinsPromiseJob::CatchException(JSThread *thread, JSHandle<JSPromiseReactionsFunction> reject)
261 JSHandle<JSTaggedValue> rejectfun(reject);