| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | | - |
| 5 | namespace QV4 { | - |
| 6 | | - |
| 7 | struct SyntaxErrorObject; | - |
| 8 | | - |
| 9 | namespace Heap { | - |
| 10 | | - |
| 11 | | - |
| 12 | | - |
| 13 | | - |
| 14 | | - |
| 15 | struct ErrorObjectOffsetStruct { Pointer<String *, 0> stack; }; struct ErrorObjectSizeStruct : Object, ErrorObjectOffsetStruct {}; struct ErrorObjectData { typedef Object SuperClass; static constexpr size_t baseOffset = sizeof(ErrorObjectSizeStruct) - sizeof(ErrorObjectOffsetStruct); Pointer<String *, | - |
| 16 | __builtin_offsetof ( | - |
| 17 | ErrorObjectOffsetStruct | - |
| 18 | , | - |
| 19 | stack | - |
| 20 | ) | - |
| 21 | + baseOffset> stack; }; static_assert(bool(sizeof(ErrorObjectSizeStruct) == sizeof(ErrorObjectData) + ErrorObjectData::baseOffset), "sizeof(ErrorObjectSizeStruct) == sizeof(ErrorObjectData) + ErrorObjectData::baseOffset"); struct ErrorObject : Object, ErrorObjectData { | - |
| 22 | static void markObjects(Heap::Base *b, MarkStack *stack) { ErrorObject *o = static_cast<ErrorObject *>(b); ErrorObjectData::SuperClass::markObjects(o, stack); if (o->stack| TRUE | never evaluated | | FALSE | never evaluated |
) o->stack.heapObject()->mark(stack);never executed: o->stack.heapObject()->mark(stack); }never executed: end of block ; | 0 |
| 23 | enum ErrorType { | - |
| 24 | Error, | - |
| 25 | EvalError, | - |
| 26 | RangeError, | - |
| 27 | ReferenceError, | - |
| 28 | SyntaxError, | - |
| 29 | TypeError, | - |
| 30 | URIError | - |
| 31 | }; | - |
| 32 | StackTrace *stackTrace; | - |
| 33 | ErrorType errorType; | - |
| 34 | | - |
| 35 | void init(); | - |
| 36 | void init(const Value &message, ErrorType t = Error); | - |
| 37 | void init(const Value &message, const QString &fileName, int line, int column, ErrorType t = Error); | - |
| 38 | void destroy() { | - |
| 39 | delete stackTrace; | - |
| 40 | Object::destroy(); | - |
| 41 | } never executed: end of block | 0 |
| 42 | }; | - |
| 43 | | - |
| 44 | struct EvalErrorObject : ErrorObject { | - |
| 45 | void init(const Value &message); | - |
| 46 | }; | - |
| 47 | | - |
| 48 | struct RangeErrorObject : ErrorObject { | - |
| 49 | void init(const Value &message); | - |
| 50 | }; | - |
| 51 | | - |
| 52 | struct ReferenceErrorObject : ErrorObject { | - |
| 53 | void init(const Value &message); | - |
| 54 | void init(const Value &msg, const QString &fileName, int lineNumber, int columnNumber); | - |
| 55 | }; | - |
| 56 | | - |
| 57 | struct SyntaxErrorObject : ErrorObject { | - |
| 58 | void init(const Value &message); | - |
| 59 | void init(const Value &msg, const QString &fileName, int lineNumber, int columnNumber); | - |
| 60 | }; | - |
| 61 | | - |
| 62 | struct TypeErrorObject : ErrorObject { | - |
| 63 | void init(const Value &message); | - |
| 64 | }; | - |
| 65 | | - |
| 66 | struct URIErrorObject : ErrorObject { | - |
| 67 | void init(const Value &message); | - |
| 68 | }; | - |
| 69 | | - |
| 70 | struct ErrorCtor : Heap::FunctionObject { | - |
| 71 | void init(QV4::ExecutionContext *scope); | - |
| 72 | void init(QV4::ExecutionContext *scope, const QString &name); | - |
| 73 | }; | - |
| 74 | | - |
| 75 | struct EvalErrorCtor : ErrorCtor { | - |
| 76 | void init(QV4::ExecutionContext *scope); | - |
| 77 | }; | - |
| 78 | | - |
| 79 | struct RangeErrorCtor : ErrorCtor { | - |
| 80 | void init(QV4::ExecutionContext *scope); | - |
| 81 | }; | - |
| 82 | | - |
| 83 | struct ReferenceErrorCtor : ErrorCtor { | - |
| 84 | void init(QV4::ExecutionContext *scope); | - |
| 85 | }; | - |
| 86 | | - |
| 87 | struct SyntaxErrorCtor : ErrorCtor { | - |
| 88 | void init(QV4::ExecutionContext *scope); | - |
| 89 | }; | - |
| 90 | | - |
| 91 | struct TypeErrorCtor : ErrorCtor { | - |
| 92 | void init(QV4::ExecutionContext *scope); | - |
| 93 | }; | - |
| 94 | | - |
| 95 | struct URIErrorCtor : ErrorCtor { | - |
| 96 | void init(QV4::ExecutionContext *scope); | - |
| 97 | }; | - |
| 98 | | - |
| 99 | } | - |
| 100 | | - |
| 101 | struct ErrorObject: Object { | - |
| 102 | enum { | - |
| 103 | IsErrorObject = true | - |
| 104 | }; | - |
| 105 | | - |
| 106 | enum { | - |
| 107 | Index_Stack = 0, | - |
| 108 | Index_FileName = 2, | - |
| 109 | Index_LineNumber = 3, | - |
| 110 | Index_Message = 4 | - |
| 111 | }; | - |
| 112 | | - |
| 113 | private: ErrorObject() = delete; ErrorObject(const ErrorObject &) = delete; ErrorObject &operator=(const ErrorObject &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::ErrorObject Data; typedef Object SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 10287774 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 10287774 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::ErrorObject *d_unchecked() const { returnexecuted 4354175 times by 30 tests: return static_cast<QV4::Heap::ErrorObject *>(m());Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickloader
- ...
static_cast<QV4::Heap::ErrorObject *>(m());executed 4354175 times by 30 tests: return static_cast<QV4::Heap::ErrorObject *>(m());Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickloader
- ...
} QV4::Heap::ErrorObject *d() const { QV4::Heap::ErrorObject *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 4371825 times by 30 tests: return dptr;Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickloader
- ...
dptr;executed 4371825 times by 30 tests: return dptr;Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickloader
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::ErrorObject >::value), "std::is_trivial< QV4::Heap::ErrorObject >::value"); | 0-10287774 |
| 114 | public: enum { MyType = Type_ErrorObject }; | - |
| 115 | static Heap::InternalClass *defaultInternalClass(QV4::EngineBase *e) { return never executed: return e->internalClasses(QV4::EngineBase::Class_ErrorObject); e->internalClasses(QV4::EngineBase::Class_ErrorObject);never executed: return e->internalClasses(QV4::EngineBase::Class_ErrorObject); } | 0 |
| 116 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 1357 times by 16 tests: return e->errorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquicklayouts
- tst_qtqmlmodules
e->errorPrototype();executed 1357 times by 16 tests: return e->errorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquicklayouts
- tst_qtqmlmodules
} | 1357 |
| 117 | static void virtualDestroy(QV4::Heap::Base *b) { static_cast<Data *>(b)->destroy(); } never executed: end of block | 0 |
| 118 | | - |
| 119 | template <typename T> | - |
| 120 | static Heap::Object *create(ExecutionEngine *e, const Value &message); | - |
| 121 | template <typename T> | - |
| 122 | static Heap::Object *create(ExecutionEngine *e, const QString &message); | - |
| 123 | template <typename T> | - |
| 124 | static Heap::Object *create(ExecutionEngine *e, const QString &message, const QString &filename, int line, int column); | - |
| 125 | | - |
| 126 | SyntaxErrorObject *asSyntaxError(); | - |
| 127 | | - |
| 128 | static const char *className(Heap::ErrorObject::ErrorType t); | - |
| 129 | | - |
| 130 | static ReturnedValue method_get_stack(const FunctionObject *, const Value *thisObject, const Value *argv, int argc); | - |
| 131 | }; | - |
| 132 | | - |
| 133 | template<> | - |
| 134 | inline const ErrorObject *Value::as() const { | - |
| 135 | returnexecuted 4293163 times by 31 tests: return isManaged() && m()->internalClass->vtable->isErrorObject ? reinterpret_cast<const ErrorObject *>(this) : nullptr;Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- ...
isManaged() && m()->internalClass->vtable->isErrorObject ? reinterpret_cast<const ErrorObject *>(this) : nullptr;executed 4293163 times by 31 tests: return isManaged() && m()->internalClass->vtable->isErrorObject ? reinterpret_cast<const ErrorObject *>(this) : nullptr;Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklayouts
- tst_qquicklistview
- ...
| 4293163 |
| 136 | } | - |
| 137 | | - |
| 138 | struct EvalErrorObject: ErrorObject { | - |
| 139 | typedef Heap::EvalErrorObject Data; | - |
| 140 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { return never executed: return e->evalErrorPrototype(); e->evalErrorPrototype();never executed: return e->evalErrorPrototype(); } | 0 |
| 141 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 142 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 143 | }; | - |
| 144 | | - |
| 145 | struct RangeErrorObject: ErrorObject { | - |
| 146 | typedef Heap::RangeErrorObject Data; | - |
| 147 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 1340 times by 3 tests: return e->rangeErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qqmlecmascript
e->rangeErrorPrototype();executed 1340 times by 3 tests: return e->rangeErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qqmlecmascript
} | 1340 |
| 148 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 149 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 150 | }; | - |
| 151 | | - |
| 152 | struct ReferenceErrorObject: ErrorObject { | - |
| 153 | typedef Heap::ReferenceErrorObject Data; | - |
| 154 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 7695 times by 16 tests: return e->referenceErrorPrototype();Executed by:- tst_ecmascripttests
- tst_examples
- tst_qjsengine
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlxmlhttprequest
- tst_qquickdesignersupport
- tst_qquickitem2
- tst_qquickpathview
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
- tst_qv4debugger
e->referenceErrorPrototype();executed 7695 times by 16 tests: return e->referenceErrorPrototype();Executed by:- tst_ecmascripttests
- tst_examples
- tst_qjsengine
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlxmlhttprequest
- tst_qquickdesignersupport
- tst_qquickitem2
- tst_qquickpathview
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
- tst_qv4debugger
} | 7695 |
| 155 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 156 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 157 | }; | - |
| 158 | | - |
| 159 | struct SyntaxErrorObject: ErrorObject { | - |
| 160 | typedef Heap::SyntaxErrorObject Data; | - |
| 161 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 9872 times by 7 tests: return e->syntaxErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
e->syntaxErrorPrototype();executed 9872 times by 7 tests: return e->syntaxErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
} | 9872 |
| 162 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 163 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 164 | }; | - |
| 165 | | - |
| 166 | struct TypeErrorObject: ErrorObject { | - |
| 167 | typedef Heap::TypeErrorObject Data; | - |
| 168 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 31080 times by 16 tests: return e->typeErrorPrototype();Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmltypeloader
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickvisualdatamodel
e->typeErrorPrototype();executed 31080 times by 16 tests: return e->typeErrorPrototype();Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmltypeloader
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickvisualdatamodel
} | 31080 |
| 169 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 170 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 171 | }; | - |
| 172 | | - |
| 173 | struct URIErrorObject: ErrorObject { | - |
| 174 | typedef Heap::URIErrorObject Data; | - |
| 175 | static QV4::Object *defaultPrototype(QV4::ExecutionEngine *e) { returnexecuted 4215370 times by 2 tests: return e->uRIErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
e->uRIErrorPrototype();executed 4215370 times by 2 tests: return e->uRIErrorPrototype();Executed by:- tst_ecmascripttests
- tst_qjsengine
} | 4215370 |
| 176 | const Data *d() const { return never executed: return static_cast<const Data *>(ErrorObject::d()); static_cast<const Data *>(ErrorObject::d());never executed: return static_cast<const Data *>(ErrorObject::d()); } | 0 |
| 177 | Data *d() { return never executed: return static_cast<Data *>(ErrorObject::d()); static_cast<Data *>(ErrorObject::d());never executed: return static_cast<Data *>(ErrorObject::d()); } | 0 |
| 178 | }; | - |
| 179 | | - |
| 180 | struct ErrorCtor: FunctionObject | - |
| 181 | { | - |
| 182 | private: ErrorCtor() = delete; ErrorCtor(const ErrorCtor &) = delete; ErrorCtor &operator=(const ErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::ErrorCtor Data; typedef FunctionObject SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296447 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296447 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::ErrorCtor *d_unchecked() const { returnexecuted 197969 times by 153 tests: return static_cast<QV4::Heap::ErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::ErrorCtor *>(m());executed 197969 times by 153 tests: return static_cast<QV4::Heap::ErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::ErrorCtor *d() const { QV4::Heap::ErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99095 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99095 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::ErrorCtor >::value), "std::is_trivial< QV4::Heap::ErrorCtor >::value"); | 0-296447 |
| 183 | | - |
| 184 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 185 | static ReturnedValue virtualCall(const FunctionObject *f, const Value *thisObject, const Value *argv, int argc); | - |
| 186 | }; | - |
| 187 | | - |
| 188 | struct EvalErrorCtor: ErrorCtor | - |
| 189 | { | - |
| 190 | private: EvalErrorCtor() = delete; EvalErrorCtor(const EvalErrorCtor &) = delete; EvalErrorCtor &operator=(const EvalErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::EvalErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296737 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296737 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::EvalErrorCtor *d_unchecked() const { returnexecuted 197966 times by 153 tests: return static_cast<QV4::Heap::EvalErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::EvalErrorCtor *>(m());executed 197966 times by 153 tests: return static_cast<QV4::Heap::EvalErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::EvalErrorCtor *d() const { QV4::Heap::EvalErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 98948 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 98948 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::EvalErrorCtor >::value), "std::is_trivial< QV4::Heap::EvalErrorCtor >::value"); | 0-296737 |
| 191 | | - |
| 192 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 193 | }; | - |
| 194 | | - |
| 195 | struct RangeErrorCtor: ErrorCtor | - |
| 196 | { | - |
| 197 | private: RangeErrorCtor() = delete; RangeErrorCtor(const RangeErrorCtor &) = delete; RangeErrorCtor &operator=(const RangeErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::RangeErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296996 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296996 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::RangeErrorCtor *d_unchecked() const { returnexecuted 198035 times by 153 tests: return static_cast<QV4::Heap::RangeErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::RangeErrorCtor *>(m());executed 198035 times by 153 tests: return static_cast<QV4::Heap::RangeErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::RangeErrorCtor *d() const { QV4::Heap::RangeErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99064 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99064 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::RangeErrorCtor >::value), "std::is_trivial< QV4::Heap::RangeErrorCtor >::value"); | 0-296996 |
| 198 | | - |
| 199 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 200 | }; | - |
| 201 | | - |
| 202 | struct ReferenceErrorCtor: ErrorCtor | - |
| 203 | { | - |
| 204 | private: ReferenceErrorCtor() = delete; ReferenceErrorCtor(const ReferenceErrorCtor &) = delete; ReferenceErrorCtor &operator=(const ReferenceErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::ReferenceErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296960 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296960 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::ReferenceErrorCtor *d_unchecked() const { returnexecuted 197941 times by 153 tests: return static_cast<QV4::Heap::ReferenceErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::ReferenceErrorCtor *>(m());executed 197941 times by 153 tests: return static_cast<QV4::Heap::ReferenceErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::ReferenceErrorCtor *d() const { QV4::Heap::ReferenceErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99056 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99056 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::ReferenceErrorCtor >::value), "std::is_trivial< QV4::Heap::ReferenceErrorCtor >::value"); | 0-296960 |
| 205 | | - |
| 206 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 207 | }; | - |
| 208 | | - |
| 209 | struct SyntaxErrorCtor: ErrorCtor | - |
| 210 | { | - |
| 211 | private: SyntaxErrorCtor() = delete; SyntaxErrorCtor(const SyntaxErrorCtor &) = delete; SyntaxErrorCtor &operator=(const SyntaxErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::SyntaxErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296666 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296666 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::SyntaxErrorCtor *d_unchecked() const { returnexecuted 197716 times by 153 tests: return static_cast<QV4::Heap::SyntaxErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::SyntaxErrorCtor *>(m());executed 197716 times by 153 tests: return static_cast<QV4::Heap::SyntaxErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::SyntaxErrorCtor *d() const { QV4::Heap::SyntaxErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99034 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99034 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::SyntaxErrorCtor >::value), "std::is_trivial< QV4::Heap::SyntaxErrorCtor >::value"); | 0-296666 |
| 212 | | - |
| 213 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 214 | }; | - |
| 215 | | - |
| 216 | struct TypeErrorCtor: ErrorCtor | - |
| 217 | { | - |
| 218 | private: TypeErrorCtor() = delete; TypeErrorCtor(const TypeErrorCtor &) = delete; TypeErrorCtor &operator=(const TypeErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::TypeErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 297047 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 297047 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::TypeErrorCtor *d_unchecked() const { returnexecuted 197985 times by 153 tests: return static_cast<QV4::Heap::TypeErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::TypeErrorCtor *>(m());executed 197985 times by 153 tests: return static_cast<QV4::Heap::TypeErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::TypeErrorCtor *d() const { QV4::Heap::TypeErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99052 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99052 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::TypeErrorCtor >::value), "std::is_trivial< QV4::Heap::TypeErrorCtor >::value"); | 0-297047 |
| 219 | | - |
| 220 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 221 | }; | - |
| 222 | | - |
| 223 | struct URIErrorCtor: ErrorCtor | - |
| 224 | { | - |
| 225 | private: URIErrorCtor() = delete; URIErrorCtor(const URIErrorCtor &) = delete; URIErrorCtor &operator=(const URIErrorCtor &) = delete; public: template <typename Type> inline void qt_check_for_QMANAGED_macro(const Type *_q_argument) const { int i = qYouForgotTheQ_MANAGED_Macro(this, _q_argument); i = i + 1; } never executed: end of block typedef QV4::Heap::URIErrorCtor Data; typedef ErrorCtor SuperClass; static const QV4::VTable static_vtbl; static inline const QV4::VTable *staticVTable() { returnexecuted 296969 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
&static_vtbl;executed 296969 times by 153 tests: return &static_vtbl;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} void __dataTest() { static_assert (sizeof(*this) == sizeof(Managed), "Classes derived from Managed can't have own data members."); }never executed: end of block QV4::Heap::URIErrorCtor *d_unchecked() const { returnexecuted 197965 times by 153 tests: return static_cast<QV4::Heap::URIErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
static_cast<QV4::Heap::URIErrorCtor *>(m());executed 197965 times by 153 tests: return static_cast<QV4::Heap::URIErrorCtor *>(m());Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} QV4::Heap::URIErrorCtor *d() const { QV4::Heap::URIErrorCtor *dptr = d_unchecked(); dptr->_checkIsInitialized(); returnexecuted 99064 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
dptr;executed 99064 times by 153 tests: return dptr;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
} static_assert(bool(std::is_trivial< QV4::Heap::URIErrorCtor >::value), "std::is_trivial< QV4::Heap::URIErrorCtor >::value"); | 0-296969 |
| 226 | | - |
| 227 | static ReturnedValue virtualCallAsConstructor(const FunctionObject *f, const Value *argv, int argc, const Value *); | - |
| 228 | }; | - |
| 229 | | - |
| 230 | | - |
| 231 | struct ErrorPrototype : ErrorObject | - |
| 232 | { | - |
| 233 | enum { | - |
| 234 | Index_Constructor = 0, | - |
| 235 | Index_Message = 1, | - |
| 236 | Index_Name = 2 | - |
| 237 | }; | - |
| 238 | void init(ExecutionEngine *engine, Object *ctor) { init(engine, ctor, this, Heap::ErrorObject::Error); }executed 98725 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 98725 |
| 239 | | - |
| 240 | static void init(ExecutionEngine *engine, Object *ctor, Object *obj, Heap::ErrorObject::ErrorType t); | - |
| 241 | static ReturnedValue method_toString(const FunctionObject *, const Value *thisObject, const Value *argv, int argc); | - |
| 242 | }; | - |
| 243 | | - |
| 244 | struct EvalErrorPrototype : ErrorObject | - |
| 245 | { | - |
| 246 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::EvalError); }executed 99066 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99066 |
| 247 | }; | - |
| 248 | | - |
| 249 | struct RangeErrorPrototype : ErrorObject | - |
| 250 | { | - |
| 251 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::RangeError); }executed 99151 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99151 |
| 252 | }; | - |
| 253 | | - |
| 254 | struct ReferenceErrorPrototype : ErrorObject | - |
| 255 | { | - |
| 256 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::ReferenceError); }executed 99148 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99148 |
| 257 | }; | - |
| 258 | | - |
| 259 | struct SyntaxErrorPrototype : ErrorObject | - |
| 260 | { | - |
| 261 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::SyntaxError); }executed 99139 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99139 |
| 262 | }; | - |
| 263 | | - |
| 264 | struct TypeErrorPrototype : ErrorObject | - |
| 265 | { | - |
| 266 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::TypeError); }executed 99036 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99036 |
| 267 | }; | - |
| 268 | | - |
| 269 | struct URIErrorPrototype : ErrorObject | - |
| 270 | { | - |
| 271 | void init(ExecutionEngine *engine, Object *ctor) { ErrorPrototype::init(engine, ctor, this, Heap::ErrorObject::URIError); }executed 99140 times by 153 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_ecmascripttests
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qjsvalueiterator
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugclient
- tst_qqmldebugjs
- tst_qqmldebuglocal
- tst_qqmldebugservice
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- ...
| 99140 |
| 272 | }; | - |
| 273 | | - |
| 274 | | - |
| 275 | inline SyntaxErrorObject *ErrorObject::asSyntaxError() | - |
| 276 | { | - |
| 277 | return never executed: return d()->errorType == QV4::Heap::ErrorObject::SyntaxError ? static_cast<SyntaxErrorObject *>(this) : nullptr; d()->errorType == QV4::Heap::ErrorObject::SyntaxError ? static_cast<SyntaxErrorObject *>(this) : nullptr;never executed: return d()->errorType == QV4::Heap::ErrorObject::SyntaxError ? static_cast<SyntaxErrorObject *>(this) : nullptr; | 0 |
| 278 | } | - |
| 279 | | - |
| 280 | | - |
| 281 | template <typename T> | - |
| 282 | Heap::Object *ErrorObject::create(ExecutionEngine *e, const Value &message) { | - |
| 283 | EngineBase::InternalClassType klass = message.isUndefined()| TRUE | evaluated 373 times by 2 testsEvaluated by:- tst_ecmascripttests
- tst_qjsengine
| | FALSE | evaluated 4209181 times by 16 testsEvaluated by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquicklayouts
- tst_qtqmlmodules
|
? EngineBase::Class_ErrorObject : EngineBase::Class_ErrorObjectWithMessage; | 373-4209181 |
| 284 | Scope scope(e); | - |
| 285 | Scoped<InternalClass> ic(scope, e->internalClasses(klass)->changePrototype(T::defaultPrototype(e)->d())); | - |
| 286 | returnexecuted 4247335 times by 16 tests: return e->memoryManager->allocObject<T>(ic->d(), message);Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquicklayouts
- tst_qtqmlmodules
e->memoryManager->allocObject<T>(ic->d(), message);executed 4247335 times by 16 tests: return e->memoryManager->allocObject<T>(ic->d(), message);Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qqmlcomponent
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlqt
- tst_qqmlsqldatabase
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquicklayouts
- tst_qtqmlmodules
| 4247335 |
| 287 | } | - |
| 288 | template <typename T> | - |
| 289 | Heap::Object *ErrorObject::create(ExecutionEngine *e, const QString &message) { | - |
| 290 | Scope scope(e); | - |
| 291 | ScopedValue v(scope, message.isEmpty() ? Encode::undefined() : e->newString(message)->asReturnedValue()); | - |
| 292 | EngineBase::InternalClassType klass = v->isUndefined()| TRUE | never evaluated | | FALSE | evaluated 43981 times by 24 testsEvaluated by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickpathview
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
- tst_qv4debugger
|
? EngineBase::Class_ErrorObject : EngineBase::Class_ErrorObjectWithMessage; | 0-43981 |
| 293 | Scoped<InternalClass> ic(scope, e->internalClasses(klass)->changePrototype(T::defaultPrototype(e)->d())); | - |
| 294 | returnexecuted 44022 times by 24 tests: return e->memoryManager->allocObject<T>(ic->d(), v);Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickpathview
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
- tst_qv4debugger
e->memoryManager->allocObject<T>(ic->d(), v);executed 44022 times by 24 tests: return e->memoryManager->allocObject<T>(ic->d(), v);Executed by:- tst_ecmascripttests
- tst_examples
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlxmlhttprequest
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickpathview
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
- tst_qv4debugger
| 44022 |
| 295 | } | - |
| 296 | template <typename T> | - |
| 297 | Heap::Object *ErrorObject::create(ExecutionEngine *e, const QString &message, const QString &filename, int line, int column) { | - |
| 298 | Scope scope(e); | - |
| 299 | ScopedValue v(scope, message.isEmpty() ? Encode::undefined() : e->newString(message)->asReturnedValue()); | - |
| 300 | EngineBase::InternalClassType klass = v->isUndefined()| TRUE | never evaluated | | FALSE | evaluated 6037 times by 7 testsEvaluated by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
|
? EngineBase::Class_ErrorObject : EngineBase::Class_ErrorObjectWithMessage; | 0-6037 |
| 301 | Scoped<InternalClass> ic(scope, e->internalClasses(klass)->changePrototype(T::defaultPrototype(e)->d())); | - |
| 302 | returnexecuted 6039 times by 7 tests: return e->memoryManager->allocObject<T>(ic->d(), v, filename, line, column);Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
e->memoryManager->allocObject<T>(ic->d(), v, filename, line, column);executed 6039 times by 7 tests: return e->memoryManager->allocObject<T>(ic->d(), v, filename, line, column);Executed by:- tst_ecmascripttests
- tst_qjsengine
- tst_qjsvalue
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qquickvisualdatamodel
- tst_qquickworkerscript
| 6039 |
| 303 | } | - |
| 304 | | - |
| 305 | | - |
| 306 | } | - |
| 307 | | - |
| 308 | | - |
| | |