| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | template<typename T> | - |
| 5 | class QFlagPointer { | - |
| 6 | public: | - |
| 7 | inline QFlagPointer(); | - |
| 8 | inline QFlagPointer(T *); | - |
| 9 | inline QFlagPointer(const QFlagPointer<T> &o); | - |
| 10 | | - |
| 11 | inline bool isNull() const; | - |
| 12 | | - |
| 13 | inline bool flag() const; | - |
| 14 | inline void setFlag(); | - |
| 15 | inline void clearFlag(); | - |
| 16 | inline void setFlagValue(bool); | - |
| 17 | | - |
| 18 | inline bool flag2() const; | - |
| 19 | inline void setFlag2(); | - |
| 20 | inline void clearFlag2(); | - |
| 21 | inline void setFlag2Value(bool); | - |
| 22 | | - |
| 23 | inline QFlagPointer<T> &operator=(const QFlagPointer &o); | - |
| 24 | inline QFlagPointer<T> &operator=(T *); | - |
| 25 | | - |
| 26 | inline T *operator->() const; | - |
| 27 | inline T *operator*() const; | - |
| 28 | | - |
| 29 | inline T *data() const; | - |
| 30 | | - |
| 31 | inline explicit operator bool() const; | - |
| 32 | | - |
| 33 | private: | - |
| 34 | quintptr ptr_value = 0; | - |
| 35 | | - |
| 36 | static const quintptr FlagBit = 0x1; | - |
| 37 | static const quintptr Flag2Bit = 0x2; | - |
| 38 | static const quintptr FlagsMask = FlagBit | Flag2Bit; | - |
| 39 | }; | - |
| 40 | | - |
| 41 | template<typename T, typename T2> | - |
| 42 | class QBiPointer { | - |
| 43 | public: | - |
| 44 | inline QBiPointer(); | - |
| 45 | inline QBiPointer(T *); | - |
| 46 | inline QBiPointer(T2 *); | - |
| 47 | inline QBiPointer(const QBiPointer<T, T2> &o); | - |
| 48 | | - |
| 49 | inline bool isNull() const; | - |
| 50 | inline bool isT1() const; | - |
| 51 | inline bool isT2() const; | - |
| 52 | | - |
| 53 | inline bool flag() const; | - |
| 54 | inline void setFlag(); | - |
| 55 | inline void clearFlag(); | - |
| 56 | inline void setFlagValue(bool); | - |
| 57 | | - |
| 58 | inline QBiPointer<T, T2> &operator=(const QBiPointer<T, T2> &o); | - |
| 59 | inline QBiPointer<T, T2> &operator=(T *); | - |
| 60 | inline QBiPointer<T, T2> &operator=(T2 *); | - |
| 61 | | - |
| 62 | inline T *asT1() const; | - |
| 63 | inline T2 *asT2() const; | - |
| 64 | | - |
| 65 | private: | - |
| 66 | quintptr ptr_value = 0; | - |
| 67 | | - |
| 68 | static const quintptr FlagBit = 0x1; | - |
| 69 | static const quintptr Flag2Bit = 0x2; | - |
| 70 | static const quintptr FlagsMask = FlagBit | Flag2Bit; | - |
| 71 | }; | - |
| 72 | | - |
| 73 | template<typename T> | - |
| 74 | QFlagPointer<T>::QFlagPointer() | - |
| 75 | { | - |
| 76 | } | - |
| 77 | | - |
| 78 | template<typename T> | - |
| 79 | QFlagPointer<T>::QFlagPointer(T *v) | - |
| 80 | : ptr_value(quintptr(v)) | - |
| 81 | { | - |
| 82 | (((ptr_value & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(ptr_value & FlagsMask) == 0", __FILE__, 136)); | - |
| 83 | }executed 219089 times by 117 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlmoduleplugin
- ...
| 219089 |
| 84 | | - |
| 85 | template<typename T> | - |
| 86 | QFlagPointer<T>::QFlagPointer(const QFlagPointer<T> &o) | - |
| 87 | : ptr_value(o.ptr_value) | - |
| 88 | { | - |
| 89 | }executed 1068 times by 34 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_examples
- tst_multipointtoucharea_interop
- tst_qmldiskcache
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlinstantiator
- tst_qqmllistmodel
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qquickanimations
- tst_qquickdraghandler
- tst_qquickflickable
- tst_qquickgridview
- tst_qquickimage
- tst_qquickitem2
- tst_qquickitemlayer
- tst_qquickitemparticle
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickloader
- tst_qquickmousearea
- tst_qquickpathview
- ...
| 1068 |
| 90 | | - |
| 91 | template<typename T> | - |
| 92 | bool QFlagPointer<T>::isNull() const | - |
| 93 | { | - |
| 94 | returnexecuted 53744006 times by 137 tests: return 0 == (ptr_value & (~FlagsMask));Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- ...
0 == (ptr_value & (~FlagsMask));executed 53744006 times by 137 tests: return 0 == (ptr_value & (~FlagsMask));Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- ...
| 53744006 |
| 95 | } | - |
| 96 | | - |
| 97 | template<typename T> | - |
| 98 | bool QFlagPointer<T>::flag() const | - |
| 99 | { | - |
| 100 | returnexecuted 15775265 times by 146 tests: return ptr_value & FlagBit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- ...
ptr_value & FlagBit;executed 15775265 times by 146 tests: return ptr_value & FlagBit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- ...
| 15775265 |
| 101 | } | - |
| 102 | | - |
| 103 | template<typename T> | - |
| 104 | void QFlagPointer<T>::setFlag() | - |
| 105 | { | - |
| 106 | ptr_value |= FlagBit; | - |
| 107 | }executed 4529404 times by 146 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- ...
| 4529404 |
| 108 | | - |
| 109 | template<typename T> | - |
| 110 | void QFlagPointer<T>::clearFlag() | - |
| 111 | { | - |
| 112 | ptr_value &= ~FlagBit; | - |
| 113 | }executed 3221716 times by 130 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmllocale
- ...
| 3221716 |
| 114 | | - |
| 115 | template<typename T> | - |
| 116 | void QFlagPointer<T>::setFlagValue(bool v) | - |
| 117 | { | - |
| 118 | if (v| TRUE | evaluated 3675196 times by 122 testsEvaluated by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| | FALSE | evaluated 3221642 times by 130 testsEvaluated by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmllocale
- ...
|
) setFlag();executed 3675196 times by 122 tests: setFlag();Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| 3221642-3675196 |
| 119 | else clearFlag();executed 3221642 times by 130 tests: clearFlag();Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmllocale
- ...
| 3221642 |
| 120 | } | - |
| 121 | | - |
| 122 | template<typename T> | - |
| 123 | bool QFlagPointer<T>::flag2() const | - |
| 124 | { | - |
| 125 | returnexecuted 2372901 times by 122 tests: return ptr_value & Flag2Bit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
ptr_value & Flag2Bit;executed 2372901 times by 122 tests: return ptr_value & Flag2Bit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| 2372901 |
| 126 | } | - |
| 127 | | - |
| 128 | template<typename T> | - |
| 129 | void QFlagPointer<T>::setFlag2() | - |
| 130 | { | - |
| 131 | ptr_value|= Flag2Bit; | - |
| 132 | }executed 1120402 times by 122 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| 1120402 |
| 133 | | - |
| 134 | template<typename T> | - |
| 135 | void QFlagPointer<T>::clearFlag2() | - |
| 136 | { | - |
| 137 | ptr_value &= ~Flag2Bit; | - |
| 138 | }executed 1298 times by 30 tests: end of blockExecuted by:- tst_examples
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlnotifier
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypeproviders
- tst_qqmlvaluetypes
- tst_qquickanimatedimage
- tst_qquickanimations
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquickdraghandler
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickmousearea
- tst_qquickpathview
- ...
| 1298 |
| 139 | | - |
| 140 | template<typename T> | - |
| 141 | void QFlagPointer<T>::setFlag2Value(bool v) | - |
| 142 | { | - |
| 143 | if (v| TRUE | evaluated 559787 times by 122 testsEvaluated by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| | FALSE | evaluated 828 times by 28 testsEvaluated by:- tst_examples
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlnotifier
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypeproviders
- tst_qqmlvaluetypes
- tst_qquickanimations
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquickdraghandler
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickmousearea
- tst_qquickpathview
- tst_qquickrepeater
- ...
|
) setFlag2();executed 559787 times by 122 tests: setFlag2();Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- tst_qqmlnotifier
- tst_qqmlprofilerservice
- ...
| 828-559787 |
| 144 | else clearFlag2();executed 828 times by 28 tests: clearFlag2();Executed by:- tst_examples
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmlnotifier
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypeproviders
- tst_qqmlvaluetypes
- tst_qquickanimations
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquickdraghandler
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickmousearea
- tst_qquickpathview
- tst_qquickrepeater
- ...
| 828 |
| 145 | } | - |
| 146 | | - |
| 147 | template<typename T> | - |
| 148 | QFlagPointer<T> &QFlagPointer<T>::operator=(const QFlagPointer &o) | - |
| 149 | { | - |
| 150 | ptr_value = o.ptr_value; | - |
| 151 | return never executed: return *this; *this;never executed: return *this; | 0 |
| 152 | } | - |
| 153 | | - |
| 154 | template<typename T> | - |
| 155 | QFlagPointer<T> &QFlagPointer<T>::operator=(T *o) | - |
| 156 | { | - |
| 157 | (((quintptr(o) & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(quintptr(o) & FlagsMask) == 0", __FILE__, 211)); | - |
| 158 | | - |
| 159 | ptr_value = quintptr(o) | (ptr_value & FlagsMask); | - |
| 160 | returnexecuted 8884583 times by 147 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- ...
*this;executed 8884583 times by 147 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- ...
| 8884583 |
| 161 | } | - |
| 162 | | - |
| 163 | template<typename T> | - |
| 164 | T *QFlagPointer<T>::operator->() const | - |
| 165 | { | - |
| 166 | returnexecuted 365061 times by 122 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- ...
(T *)(ptr_value & ~FlagsMask);executed 365061 times by 122 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmllocale
- tst_qqmlmetaobject
- tst_qqmlmetatype
- ...
| 365061 |
| 167 | } | - |
| 168 | | - |
| 169 | template<typename T> | - |
| 170 | T *QFlagPointer<T>::operator*() const | - |
| 171 | { | - |
| 172 | returnexecuted 30480592 times by 145 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
(T *)(ptr_value & ~FlagsMask);executed 30480592 times by 145 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsonbinding
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
| 30480592 |
| 173 | } | - |
| 174 | | - |
| 175 | template<typename T> | - |
| 176 | T *QFlagPointer<T>::data() const | - |
| 177 | { | - |
| 178 | returnexecuted 11258847 times by 143 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
(T *)(ptr_value & ~FlagsMask);executed 11258847 times by 143 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qjsvalue
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
| 11258847 |
| 179 | } | - |
| 180 | | - |
| 181 | template<typename T> | - |
| 182 | QFlagPointer<T>::operator bool() const | - |
| 183 | { | - |
| 184 | returnexecuted 2098 times by 24 tests: return data() != nullptr;Executed by:- tst_examples
- tst_multipointtoucharea_interop
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmlproperty
- tst_qqmlpropertymap
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickpathview
- tst_qquicktextinput
- tst_qquickvisualdatamodel
data() != nullptr;executed 2098 times by 24 tests: return data() != nullptr;Executed by:- tst_examples
- tst_multipointtoucharea_interop
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlinfo
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmlproperty
- tst_qqmlpropertymap
- tst_qqmlqt
- tst_qqmltypeloader
- tst_qqmlvaluetypes
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickloader
- tst_qquickpathview
- tst_qquicktextinput
- tst_qquickvisualdatamodel
| 2098 |
| 185 | } | - |
| 186 | | - |
| 187 | template<typename T, typename T2> | - |
| 188 | QBiPointer<T, T2>::QBiPointer() | - |
| 189 | { | - |
| 190 | } | - |
| 191 | | - |
| 192 | template<typename T, typename T2> | - |
| 193 | QBiPointer<T, T2>::QBiPointer(T *v) | - |
| 194 | : ptr_value(quintptr(v)) | - |
| 195 | { | - |
| 196 | (((quintptr(v) & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(quintptr(v) & FlagsMask) == 0", __FILE__, 250)); | - |
| 197 | }executed 95430 times by 132 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
| 95430 |
| 198 | | - |
| 199 | template<typename T, typename T2> | - |
| 200 | QBiPointer<T, T2>::QBiPointer(T2 *v) | - |
| 201 | : ptr_value(quintptr(v) | Flag2Bit) | - |
| 202 | { | - |
| 203 | (((quintptr(v) & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(quintptr(v) & FlagsMask) == 0", __FILE__, 257)); | - |
| 204 | }executed 925589 times by 121 tests: end of blockExecuted by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlincubator
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmllistreference
- tst_qqmlmetatype
- tst_qqmlmoduleplugin
- ...
| 925589 |
| 205 | | - |
| 206 | template<typename T, typename T2> | - |
| 207 | QBiPointer<T, T2>::QBiPointer(const QBiPointer<T, T2> &o) | - |
| 208 | : ptr_value(o.ptr_value) | - |
| 209 | { | - |
| 210 | } never executed: end of block | 0 |
| 211 | | - |
| 212 | template<typename T, typename T2> | - |
| 213 | bool QBiPointer<T, T2>::isNull() const | - |
| 214 | { | - |
| 215 | returnexecuted 2179133 times by 137 tests: return 0 == (ptr_value & (~FlagsMask));Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
0 == (ptr_value & (~FlagsMask));executed 2179133 times by 137 tests: return 0 == (ptr_value & (~FlagsMask));Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
| 2179133 |
| 216 | } | - |
| 217 | | - |
| 218 | template<typename T, typename T2> | - |
| 219 | bool QBiPointer<T, T2>::isT1() const | - |
| 220 | { | - |
| 221 | returnexecuted 19285698 times by 140 tests: return !(ptr_value & Flag2Bit);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
!(ptr_value & Flag2Bit);executed 19285698 times by 140 tests: return !(ptr_value & Flag2Bit);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- ...
| 19285698 |
| 222 | } | - |
| 223 | | - |
| 224 | template<typename T, typename T2> | - |
| 225 | bool QBiPointer<T, T2>::isT2() const | - |
| 226 | { | - |
| 227 | returnexecuted 15749914 times by 138 tests: return ptr_value & Flag2Bit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
ptr_value & Flag2Bit;executed 15749914 times by 138 tests: return ptr_value & Flag2Bit;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
| 15749914 |
| 228 | } | - |
| 229 | | - |
| 230 | template<typename T, typename T2> | - |
| 231 | bool QBiPointer<T, T2>::flag() const | - |
| 232 | { | - |
| 233 | returnexecuted 66496 times by 22 tests: return ptr_value & FlagBit;Executed by:- tst_examples
- tst_qmlcachegen
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmltranslation
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickbehaviors
- tst_qquickgridview
- tst_qquickimage
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickpathview
- tst_qquickrepeater
- tst_qquickspringanimation
- tst_qquickvisualdatamodel
- tst_quicktestmainwithsetup
- tst_scenegraph
- tst_testfiltering
ptr_value & FlagBit;executed 66496 times by 22 tests: return ptr_value & FlagBit;Executed by:- tst_examples
- tst_qmlcachegen
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmltranslation
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickbehaviors
- tst_qquickgridview
- tst_qquickimage
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickpathview
- tst_qquickrepeater
- tst_qquickspringanimation
- tst_qquickvisualdatamodel
- tst_quicktestmainwithsetup
- tst_scenegraph
- tst_testfiltering
| 66496 |
| 234 | } | - |
| 235 | | - |
| 236 | template<typename T, typename T2> | - |
| 237 | void QBiPointer<T, T2>::setFlag() | - |
| 238 | { | - |
| 239 | ptr_value |= FlagBit; | - |
| 240 | }executed 6454 times by 25 tests: end of blockExecuted by:- tst_examples
- tst_qmlcachegen
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickanimationcontroller
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquickgridview
- tst_qquickimage
- tst_qquicklayouts
- tst_qquicklistview
- tst_qquickpathview
- tst_qquickrepeater
- tst_qquickspringanimation
- tst_qquickvisualdatamodel
- tst_qrcqml
- tst_quicktestmainwithsetup
- tst_scenegraph
- tst_testfiltering
| 6454 |
| 241 | | - |
| 242 | template<typename T, typename T2> | - |
| 243 | void QBiPointer<T, T2>::clearFlag() | - |
| 244 | { | - |
| 245 | ptr_value &= ~FlagBit; | - |
| 246 | }executed 2 times by 1 test: end of block | 2 |
| 247 | | - |
| 248 | template<typename T, typename T2> | - |
| 249 | void QBiPointer<T, T2>::setFlagValue(bool v) | - |
| 250 | { | - |
| 251 | if (v| TRUE | evaluated 150 times by 14 testsEvaluated by:- tst_examples
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypes
- tst_qquickanimationcontroller
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquicklayouts
- tst_qrcqml
- tst_quicktestmainwithsetup
- tst_scenegraph
- tst_testfiltering
| | FALSE | evaluated 2 times by 1 test |
) setFlag();executed 150 times by 14 tests: setFlag();Executed by:- tst_examples
- tst_qqmlecmascript
- tst_qqmlinfo
- tst_qqmlproperty
- tst_qqmltranslation
- tst_qqmlvaluetypes
- tst_qquickanimationcontroller
- tst_qquickbehaviors
- tst_qquickdesignersupport
- tst_qquicklayouts
- tst_qrcqml
- tst_quicktestmainwithsetup
- tst_scenegraph
- tst_testfiltering
| 2-150 |
| 252 | else clearFlag();executed 2 times by 1 test: clearFlag(); | 2 |
| 253 | } | - |
| 254 | | - |
| 255 | template<typename T, typename T2> | - |
| 256 | QBiPointer<T, T2> &QBiPointer<T, T2>::operator=(const QBiPointer<T, T2> &o) | - |
| 257 | { | - |
| 258 | ptr_value = o.ptr_value; | - |
| 259 | returnexecuted 22109 times by 97 tests: return *this;Executed by:- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmlnotifier
- tst_qqmlproperty
- tst_qqmlpropertymap
- tst_qqmlstatemachine
- tst_qqmltranslation
- tst_qqmlvaluetypeproviders
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickaccessible
- tst_qquickage
- tst_qquickanchors
- ...
*this;executed 22109 times by 97 tests: return *this;Executed by:- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qmlcachegen
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistreference
- tst_qqmlnotifier
- tst_qqmlproperty
- tst_qqmlpropertymap
- tst_qqmlstatemachine
- tst_qqmltranslation
- tst_qqmlvaluetypeproviders
- tst_qqmlvaluetypes
- tst_qqmlxmlhttprequest
- tst_qquickaccessible
- tst_qquickage
- tst_qquickanchors
- ...
| 22109 |
| 260 | } | - |
| 261 | | - |
| 262 | template<typename T, typename T2> | - |
| 263 | QBiPointer<T, T2> &QBiPointer<T, T2>::operator=(T *o) | - |
| 264 | { | - |
| 265 | (((quintptr(o) & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(quintptr(o) & FlagsMask) == 0", __FILE__, 319)); | - |
| 266 | | - |
| 267 | ptr_value = quintptr(o) | (ptr_value & FlagBit); | - |
| 268 | returnexecuted 4777402 times by 136 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- ...
*this;executed 4777402 times by 136 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- tst_qqmllistmodel
- tst_qqmllistmodelworkerscript
- ...
| 4777402 |
| 269 | } | - |
| 270 | | - |
| 271 | template<typename T, typename T2> | - |
| 272 | QBiPointer<T, T2> &QBiPointer<T, T2>::operator=(T2 *o) | - |
| 273 | { | - |
| 274 | (((quintptr(o) & FlagsMask) == 0) ? static_cast<void>(0) : qt_assert("(quintptr(o) & FlagsMask) == 0", __FILE__, 328)); | - |
| 275 | | - |
| 276 | ptr_value = quintptr(o) | (ptr_value & FlagBit) | Flag2Bit; | - |
| 277 | returnexecuted 2208258 times by 135 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
*this;executed 2208258 times by 135 tests: return *this;Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
| 2208258 |
| 278 | } | - |
| 279 | | - |
| 280 | template<typename T, typename T2> | - |
| 281 | T *QBiPointer<T, T2>::asT1() const | - |
| 282 | { | - |
| 283 | ((isT1()) ? static_cast<void>(0) : qt_assert("isT1()", __FILE__, 337)); | - |
| 284 | returnexecuted 4467976 times by 139 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- ...
(T *)(ptr_value & ~FlagsMask);executed 4467976 times by 139 tests: return (T *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_parserstress
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginecleanup
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- ...
| 4467976 |
| 285 | } | - |
| 286 | | - |
| 287 | template<typename T, typename T2> | - |
| 288 | T2 *QBiPointer<T, T2>::asT2() const | - |
| 289 | { | - |
| 290 | ((isT2()) ? static_cast<void>(0) : qt_assert("isT2()", __FILE__, 344)); | - |
| 291 | returnexecuted 9802863 times by 138 tests: return (T2 *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
(T2 *)(ptr_value & ~FlagsMask);executed 9802863 times by 138 tests: return (T2 *)(ptr_value & ~FlagsMask);Executed by:- tst_bindingdependencyapi
- tst_drawingmodes
- tst_examples
- tst_flickableinterop
- tst_multipointtoucharea_interop
- tst_qjsengine
- tst_qmlcachegen
- tst_qmldiskcache
- tst_qqmlapplicationengine
- tst_qqmlbinding
- tst_qqmlcomponent
- tst_qqmlconnections
- tst_qqmlconsole
- tst_qqmlcontext
- tst_qqmlcpputils
- tst_qqmldebugjs
- tst_qqmlecmascript
- tst_qqmlenginedebugservice
- tst_qqmlexpression
- tst_qqmlfileselector
- tst_qqmlimport
- tst_qqmlincubator
- tst_qqmlinfo
- tst_qqmlinstantiator
- tst_qqmlitemmodels
- ...
| 9802863 |
| 292 | } | - |
| 293 | | - |
| 294 | | - |
| | |