Lines Matching refs:Throws

67     enum class Throws { No, Yes };  enum
72 template<Throws t, ChangesContext c = ChangesContext::No, Pure p = Pure::No,
76 static constexpr bool throws = t == Throws::Yes;
81 using PureMethod = Method<Throws::No, ChangesContext::No, Pure::Yes>;
82 using IteratorMethod = Method<Throws::Yes, ChangesContext::No, Pure::No,
86 struct Q_QML_PRIVATE_EXPORT CallGlobalLookup : Method<Throws::Yes>
90 struct Q_QML_PRIVATE_EXPORT CallQmlContextPropertyLookup : Method<Throws::Yes>
94 struct Q_QML_PRIVATE_EXPORT CallName : Method<Throws::Yes>
98 struct Q_QML_PRIVATE_EXPORT CallProperty : Method<Throws::Yes>
102 struct Q_QML_PRIVATE_EXPORT CallPropertyLookup : Method<Throws::Yes>
106 struct Q_QML_PRIVATE_EXPORT CallElement : Method<Throws::Yes>
110 struct Q_QML_PRIVATE_EXPORT CallValue : Method<Throws::Yes>
114 struct Q_QML_PRIVATE_EXPORT CallWithReceiver : Method<Throws::Yes>
118 struct Q_QML_PRIVATE_EXPORT CallPossiblyDirectEval : Method<Throws::Yes>
122 struct Q_QML_PRIVATE_EXPORT CallWithSpread : Method<Throws::Yes>
126 struct Q_QML_PRIVATE_EXPORT TailCall : Method<Throws::Yes>
132 struct Q_QML_PRIVATE_EXPORT Construct : Method<Throws::Yes>
136 struct Q_QML_PRIVATE_EXPORT ConstructWithSpread : Method<Throws::Yes>
142 struct Q_QML_PRIVATE_EXPORT StoreNameStrict : Method<Throws::Yes>
146 struct Q_QML_PRIVATE_EXPORT StoreNameSloppy : Method<Throws::Yes>
150 struct Q_QML_PRIVATE_EXPORT StoreProperty : Method<Throws::Yes>
154 struct Q_QML_PRIVATE_EXPORT StoreElement : Method<Throws::Yes>
158 struct Q_QML_PRIVATE_EXPORT LoadProperty : Method<Throws::Yes>
162 struct Q_QML_PRIVATE_EXPORT LoadName : Method<Throws::Yes>
166 struct Q_QML_PRIVATE_EXPORT LoadElement : Method<Throws::Yes>
170 struct Q_QML_PRIVATE_EXPORT LoadSuperProperty : Method<Throws::Yes>
174 struct Q_QML_PRIVATE_EXPORT StoreSuperProperty : Method<Throws::Yes>
178 struct Q_QML_PRIVATE_EXPORT LoadSuperConstructor : Method<Throws::Yes>
182 struct Q_QML_PRIVATE_EXPORT LoadGlobalLookup : Method<Throws::Yes>
186 struct Q_QML_PRIVATE_EXPORT LoadQmlContextPropertyLookup : Method<Throws::Yes>
190 struct Q_QML_PRIVATE_EXPORT GetLookup : Method<Throws::Yes>
194 struct Q_QML_PRIVATE_EXPORT SetLookupStrict : Method<Throws::Yes>
198 struct Q_QML_PRIVATE_EXPORT SetLookupSloppy : Method<Throws::Yes>
208 struct Q_QML_PRIVATE_EXPORT TypeofName : Method<Throws::No>
214 struct Q_QML_PRIVATE_EXPORT DeleteProperty_NoThrow : Method<Throws::No>
218 struct Q_QML_PRIVATE_EXPORT DeleteProperty : Method<Throws::Yes>
222 struct Q_QML_PRIVATE_EXPORT DeleteName_NoThrow : Method<Throws::No>
226 struct Q_QML_PRIVATE_EXPORT DeleteName : Method<Throws::Yes>
232 struct Q_QML_PRIVATE_EXPORT ThrowException : Method<Throws::Yes>
236 struct Q_QML_PRIVATE_EXPORT PushCallContext : Method<Throws::No, ChangesContext::Yes>
240 struct Q_QML_PRIVATE_EXPORT PushWithContext : Method<Throws::Yes, ChangesContext::Yes>
244 struct Q_QML_PRIVATE_EXPORT PushCatchContext : Method<Throws::No, ChangesContext::Yes>
248 struct Q_QML_PRIVATE_EXPORT PushBlockContext : Method<Throws::No, ChangesContext::Yes>
252 struct Q_QML_PRIVATE_EXPORT CloneBlockContext : Method<Throws::No, ChangesContext::Yes>
256 struct Q_QML_PRIVATE_EXPORT PushScriptContext : Method<Throws::No, ChangesContext::Yes>
260 struct Q_QML_PRIVATE_EXPORT PopScriptContext : Method<Throws::No, ChangesContext::Yes>
264 struct Q_QML_PRIVATE_EXPORT ThrowReferenceError : Method<Throws::Yes>
268 struct Q_QML_PRIVATE_EXPORT ThrowOnNullOrUndefined : Method<Throws::Yes>
274 struct Q_QML_PRIVATE_EXPORT Closure : Method<Throws::No>
280 struct Q_QML_PRIVATE_EXPORT ConvertThisToObject : Method<Throws::Yes>
284 struct Q_QML_PRIVATE_EXPORT DeclareVar : Method<Throws::Yes>
288 struct Q_QML_PRIVATE_EXPORT CreateMappedArgumentsObject : Method<Throws::No>
292 struct Q_QML_PRIVATE_EXPORT CreateUnmappedArgumentsObject : Method<Throws::No>
302 struct Q_QML_PRIVATE_EXPORT ArrayLiteral : Method<Throws::Yes>
306 struct Q_QML_PRIVATE_EXPORT ObjectLiteral : Method<Throws::Yes>
310 struct Q_QML_PRIVATE_EXPORT CreateClass : Method<Throws::Yes>
316 struct Q_QML_PRIVATE_EXPORT GetIterator : Method<Throws::Yes>
328 struct Q_QML_PRIVATE_EXPORT IteratorClose : Method<Throws::Yes>
332 struct Q_QML_PRIVATE_EXPORT DestructureRestElement : Method<Throws::Yes>
338 struct Q_QML_PRIVATE_EXPORT ToObject : Method<Throws::Yes>
346 struct Q_QML_PRIVATE_EXPORT ToNumber : Method<Throws::Yes>
351 struct Q_QML_PRIVATE_EXPORT UMinus : Method<Throws::Yes>
357 struct Q_QML_PRIVATE_EXPORT Instanceof : Method<Throws::Yes>
361 struct Q_QML_PRIVATE_EXPORT In : Method<Throws::Yes>
365 struct Q_QML_PRIVATE_EXPORT Add : Method<Throws::Yes>
369 struct Q_QML_PRIVATE_EXPORT Sub : Method<Throws::Yes>
373 struct Q_QML_PRIVATE_EXPORT Mul : Method<Throws::Yes>
377 struct Q_QML_PRIVATE_EXPORT Div : Method<Throws::Yes>
381 struct Q_QML_PRIVATE_EXPORT Mod : Method<Throws::Yes>
385 struct Q_QML_PRIVATE_EXPORT Exp : Method<Throws::Yes>
389 struct Q_QML_PRIVATE_EXPORT BitAnd : Method<Throws::Yes>
393 struct Q_QML_PRIVATE_EXPORT BitOr : Method<Throws::Yes>
397 struct Q_QML_PRIVATE_EXPORT BitXor : Method<Throws::Yes>
401 struct Q_QML_PRIVATE_EXPORT Shl : Method<Throws::Yes>
405 struct Q_QML_PRIVATE_EXPORT Shr : Method<Throws::Yes>
409 struct Q_QML_PRIVATE_EXPORT UShr : Method<Throws::Yes>
413 struct Q_QML_PRIVATE_EXPORT GreaterThan : Method<Throws::Yes>
417 struct Q_QML_PRIVATE_EXPORT LessThan : Method<Throws::Yes>
421 struct Q_QML_PRIVATE_EXPORT GreaterEqual : Method<Throws::Yes>
425 struct Q_QML_PRIVATE_EXPORT LessEqual : Method<Throws::Yes>
429 struct Q_QML_PRIVATE_EXPORT Equal : Method<Throws::Yes>
433 struct Q_QML_PRIVATE_EXPORT NotEqual : Method<Throws::Yes>
437 struct Q_QML_PRIVATE_EXPORT StrictEqual : Method<Throws::Yes>
441 struct Q_QML_PRIVATE_EXPORT StrictNotEqual : Method<Throws::Yes>
447 struct Q_QML_PRIVATE_EXPORT CompareGreaterThan : Method<Throws::Yes>
451 struct Q_QML_PRIVATE_EXPORT CompareLessThan : Method<Throws::Yes>
455 struct Q_QML_PRIVATE_EXPORT CompareGreaterEqual : Method<Throws::Yes>
459 struct Q_QML_PRIVATE_EXPORT CompareLessEqual : Method<Throws::Yes>
463 struct Q_QML_PRIVATE_EXPORT CompareEqual : Method<Throws::Yes>
467 struct Q_QML_PRIVATE_EXPORT CompareNotEqual : Method<Throws::Yes>
471 struct Q_QML_PRIVATE_EXPORT CompareStrictEqual : Method<Throws::Yes>
475 struct Q_QML_PRIVATE_EXPORT CompareStrictNotEqual : Method<Throws::Yes>
480 struct Q_QML_PRIVATE_EXPORT CompareInstanceof : Method<Throws::Yes>
484 struct Q_QML_PRIVATE_EXPORT CompareIn : Method<Throws::Yes>