Home
last modified time | relevance | path

Searched refs:metaObject (Results 1 – 25 of 4241) sorted by relevance

12345678910>>...170

/dports/devel/gammaray/GammaRay-2.11.3/core/
H A Dmetaobjectregistry.cpp100 return isValid(metaObject); in data()
149 while (metaObject) { in inheritsQObject()
152 metaObject = m_childParentMap.value(metaObject); in inheritsQObject()
166 const QMetaObject *metaObject = obj->metaObject(); in objectAdded() local
167 metaObject = addMetaObject(metaObject, hasDynamicMetaObject(obj)); in objectAdded()
215 return metaObject; in addMetaObject()
243 children.push_back(metaObject); in addMetaObject()
245 return metaObject; in addMetaObject()
254 if (!metaObject) in objectRemoved()
303 auto aliveMO = obj->metaObject(); in addAliveInstance()
[all …]
/dports/science/step/step-21.12.3/stepcore/
H A Dfactory.cc30 _metaObjects.insert(metaObject->className(), metaObject); in registerMetaObject()
40 const MetaObject* metaObject = this->metaObject(name); in newObject() local
41 if(!metaObject) return NULL; in newObject()
47 const MetaObject* metaObject = this->metaObject(name); in newItem() local
48 if(!metaObject || !metaObject->inherits<Item>()) return NULL; in newItem()
54 const MetaObject* metaObject = this->metaObject(name); in newSolver() local
55 if(!metaObject || !metaObject->inherits<Solver>()) return NULL; in newSolver()
61 const MetaObject* metaObject = this->metaObject(name); in newCollisionSolver() local
62 if(!metaObject || !metaObject->inherits<CollisionSolver>()) return NULL; in newCollisionSolver()
68 const MetaObject* metaObject = this->metaObject(name); in newConstraintSolver() local
[all …]
/dports/science/step/step-21.12.3/autotests/
H A Dtest_metaobject.cc116 const StepCore::MetaObject* metaObject = testObject->metaObject(); in testMetaObject() local
120 QCOMPARE( metaObject->superClassCount(), 2 ); in testMetaObject()
127 QVERIFY( metaObject->inherits(metaObject) ); in testMetaObject()
130 QVERIFY( metaObject->inherits("Object") ); in testMetaObject()
133 QVERIFY( !metaObject->inherits("NotClass") ); in testMetaObject()
138 QCOMPARE( metaObject->propertyCount(), 5 ); in testMetaObject()
141 QVERIFY( metaObject->property("name") == metaObject->property(0) ); in testMetaObject()
142 QVERIFY( metaObject->property("property1") == metaObject->property(1) ); in testMetaObject()
143 QVERIFY( metaObject->property("property2") == metaObject->property(2) ); in testMetaObject()
144 QVERIFY( metaObject->property("property3") == metaObject->property(3) ); in testMetaObject()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/x11-toolkits/qt5-widgets/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/qt5-testlib/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/x11-toolkits/qt5-gui/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/qt5-dbus/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/qt5-buildtools/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/qt5-concurrent/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/print/qt5-printsupport/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/graphics/qt5-opengl/kde-qtbase-5.15.2p263/src/corelib/doc/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp109 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
111 for(int i = metaObject->propertyOffset(); i < metaObject->propertyCount(); ++i) in wrapInFunction()
112 properties << QString::fromLatin1(metaObject->property(i).name()); in wrapInFunction()
117 const QMetaObject* metaObject = obj->metaObject(); in wrapInFunction() local
119 for(int i = metaObject->methodOffset(); i < metaObject->methodCount(); ++i) in wrapInFunction()
120 methods << QString::fromLatin1(metaObject->method(i).methodSignature()); in wrapInFunction()
125 QMetaMethod method = metaObject->method(methodIndex); in wrapInFunction()
136 int methodIndex = obj->metaObject()->indexOfMethod(normalizedSignature); in wrapInFunction()
137 QMetaMethod method = obj->metaObject()->method(methodIndex); in wrapInFunction()
165 int functionIndex = win.metaObject()->indexOfSlot("testFunc()"); in wrapInFunction()
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp99 metaObject = obj.metaObject() in wrapInFunction()
100 properties = [metaObject.property(i).name() for i in range(metaObject.propertyOffset(), metaObject.… in wrapInFunction()
105 metaObject = obj.metaObject() in wrapInFunction()
106 methods = [metaObject.method(i).signature() for i in range(metaObject.methodOffset(), metaObject.me… in wrapInFunction()
110 methodIndex = pushButton.metaObject().indexOfMethod("animateClick()") in wrapInFunction()
111 method = metaObject.method(methodIndex) in wrapInFunction()
122 methodIndex = obj.metaObject().indexOfMethod(normalizedSignature) in wrapInFunction()
123 method = metaObject.method(methodIndex) in wrapInFunction()
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp99 metaObject = obj.metaObject() in wrapInFunction()
100 properties = [metaObject.property(i).name() for i in range(metaObject.propertyOffset(), metaObject.… in wrapInFunction()
105 metaObject = obj.metaObject() in wrapInFunction()
106 methods = [metaObject.method(i).signature() for i in range(metaObject.methodOffset(), metaObject.me… in wrapInFunction()
110 methodIndex = pushButton.metaObject().indexOfMethod("animateClick()") in wrapInFunction()
111 method = metaObject.method(methodIndex) in wrapInFunction()
122 methodIndex = obj.metaObject().indexOfMethod(normalizedSignature) in wrapInFunction()
123 method = metaObject.method(methodIndex) in wrapInFunction()
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_corelib_kernel_qmetaobject.cpp99 metaObject = obj.metaObject() in wrapInFunction()
100 properties = [metaObject.property(i).name() for i in range(metaObject.propertyOffset(), metaObject.… in wrapInFunction()
105 metaObject = obj.metaObject() in wrapInFunction()
106 methods = [metaObject.method(i).signature() for i in range(metaObject.methodOffset(), metaObject.me… in wrapInFunction()
110 methodIndex = pushButton.metaObject().indexOfMethod("animateClick()") in wrapInFunction()
111 method = metaObject.method(methodIndex) in wrapInFunction()
122 methodIndex = obj.metaObject().indexOfMethod(normalizedSignature) in wrapInFunction()
123 method = metaObject.method(methodIndex) in wrapInFunction()

12345678910>>...170