Home
last modified time | relevance | path

Searched refs:QDeclarativeCompiledData (Results 1 – 21 of 21) sorted by relevance

/dports/converters/wkhtmltopdf/qt-5db36ec/src/declarative/qml/
H A Dqdeclarativecompileddata.cpp55 int QDeclarativeCompiledData::pack(const char *data, size_t size) in pack()
70 int QDeclarativeCompiledData::indexForString(const QString &data) in indexForString()
80 int QDeclarativeCompiledData::indexForByteArray(const QByteArray &data) in indexForByteArray()
90 int QDeclarativeCompiledData::indexForUrl(const QUrl &data) in indexForUrl()
100 int QDeclarativeCompiledData::indexForFloat(float *data, int count) in indexForFloat()
124 int QDeclarativeCompiledData::indexForInt(int *data, int count) in indexForInt()
164 QDeclarativeCompiledData::QDeclarativeCompiledData(QDeclarativeEngine *engine) in QDeclarativeCompiledData() function in QDeclarativeCompiledData
169 QDeclarativeCompiledData::~QDeclarativeCompiledData() in ~QDeclarativeCompiledData()
194 void QDeclarativeCompiledData::clear() in clear()
204 const QMetaObject *QDeclarativeCompiledData::TypeReference::metaObject() const in metaObject()
[all …]
H A Dqdeclarativevme_p.h67 class QDeclarativeCompiledData; variable
68 class QDeclarativeCompiledData; variable
77 QObject *run(QDeclarativeContextData *, QDeclarativeCompiledData *,
87 QDeclarativeContextData *, QDeclarativeCompiledData *,
H A Dqdeclarativecompiler_p.h79 class Q_AUTOTEST_EXPORT QDeclarativeCompiledData : public QDeclarativeRefCount, public QDeclarative…
82 QDeclarativeCompiledData(QDeclarativeEngine *engine);
83 virtual ~QDeclarativeCompiledData();
97 QDeclarativeCompiledData *component;
135 QDeclarativeCompiledData(const QDeclarativeCompiledData &other);
136 QDeclarativeCompiledData &operator=(const QDeclarativeCompiledData &other);
157 bool compile(QDeclarativeEngine *, QDeclarativeTypeData *, QDeclarativeCompiledData *);
170 static void reset(QDeclarativeCompiledData *);
343 QDeclarativeCompiledData *output;
H A Dqdeclarativecomponent_p.h74 class QDeclarativeCompiledData; variable
98 QDeclarativeCompiledData *cc;
112 QDeclarativeCompiledData *component, int start, int count,
H A Dqdeclarativecomponent.h58 class QDeclarativeCompiledData;
116 …QDeclarativeComponent(QDeclarativeEngine *, QDeclarativeCompiledData *, int, int, QObject *parent);
H A Dqdeclarativedata_p.h62 class QDeclarativeCompiledData; variable
129 QDeclarativeCompiledData *deferredComponent; // Can't this be found from the context?
H A Dqdeclarativevmemetaobject_p.h138 QDeclarativeCompiledData *compiledData);
156 QDeclarativeCompiledData *compiledData;
H A Dqdeclarativetypeloader_p.h69 class QDeclarativeCompiledData; variable
258 QDeclarativeCompiledData *compiledData() const; in Q_DECLARE_OPERATORS_FOR_FLAGS()
292 QDeclarativeCompiledData *m_compiledData; in Q_DECLARE_OPERATORS_FOR_FLAGS()
H A Dqdeclarativeinstruction_p.h60 class QDeclarativeCompiledData; variable
354 void dump(QDeclarativeCompiledData *);
H A Dqdeclarativevme.cpp125 QObject *QDeclarativeVME::run(QDeclarativeContextData *ctxt, QDeclarativeCompiledData *comp, in run()
144 QDeclarativeCompiledData *comp = data->deferredComponent; in runDeferred()
171 QDeclarativeCompiledData *comp, in run()
177 const QList<QDeclarativeCompiledData::TypeReference> &types = comp->types; in run()
180 const QList<QDeclarativeCompiledData::CustomTypeData> &customTypeData = comp->customTypeData; in run()
290 … const QDeclarativeCompiledData::TypeReference &ref = types.at(instr.createSimple.type); in run()
663QDeclarativeCompiledData::CustomTypeData data = customTypeData.at(instr.assignCustomType.valueInde… in run()
1055 QDeclarativeCompiledData::TypeReference::createInstance(QDeclarativeContextData *ctxt, in createInstance()
H A Dqdeclarativeengine_p.h260 void registerCompositeType(QDeclarativeCompiledData *);
270 QHash<int, QDeclarativeCompiledData *> m_compositeTypes;
H A Dqdeclarativecomponent.cpp265 QDeclarativeCompiledData *c = data->compiledData(); in fromTypeData()
458 QDeclarativeComponent::QDeclarativeComponent(QDeclarativeEngine *engine, QDeclarativeCompiledData *… in QDeclarativeComponent()
841QDeclarativeCompiledData *component, int start, int count, in begin()
H A Dqdeclarativeexpression.cpp131 QDeclarativeCompiledData *dd = (QDeclarativeCompiledData *)rc; in init()
H A Dqdeclarativeinstruction.cpp50 void QDeclarativeCompiledData::dump(QDeclarativeInstruction *instr, int idx) in dump()
H A Dqdeclarativecompiler.cpp532 QDeclarativeCompiledData::CustomTypeData data; in genLiteralAssignment()
545 void QDeclarativeCompiler::reset(QDeclarativeCompiledData *data) in reset()
569 QDeclarativeCompiledData *out) in compile()
583 QDeclarativeCompiledData::TypeReference ref; in compile()
735 const QDeclarativeCompiledData::TypeReference &tr = in buildObject()
906 QDeclarativeCompiledData::TypeReference &tr = output->types[obj->type]; in genObject()
1340 QDeclarativeCompiledData::TypeReference ref; in componentTypeRef()
2495 QDeclarativeCompiledData *data = tdata->compiledData(); in Q_GLOBAL_STATIC()
H A Dqdeclarativeengine.cpp515 …for(QHash<int, QDeclarativeCompiledData*>::ConstIterator iter = m_compositeTypes.constBegin(); ite… in ~QDeclarativeEnginePrivate()
2454 void QDeclarativeEnginePrivate::registerCompositeType(QDeclarativeCompiledData *data) in registerCompositeType()
2513 QHash<int, QDeclarativeCompiledData*>::ConstIterator iter = m_compositeTypes.find(t); in rawMetaObjectForType()
2524 QHash<int, QDeclarativeCompiledData*>::ConstIterator iter = m_compositeTypes.find(t); in metaObjectForType()
H A Dqdeclarativetypeloader.cpp902 QDeclarativeCompiledData *QDeclarativeTypeData::compiledData() const in compiledData()
1039 m_compiledData = new QDeclarativeCompiledData(typeLoader()->engine()); in compile()
H A Dqdeclarativebinding.cpp253 QDeclarativeCompiledData *cdata = 0; in createBinding()
H A Dqdeclarativevmemetaobject.cpp384 QDeclarativeCompiledData *cdata) in QDeclarativeVMEMetaObject()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/declarative/qdeclarativeinstruction/
H A Dtst_qdeclarativeinstruction.cpp68 QDeclarativeCompiledData *data = new QDeclarativeCompiledData(0); in dump()
81 QDeclarativeCompiledData::TypeReference ref; in dump()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/s60installs/bwins/
H A DQtDeclarativeu.def413 …ponent::QDeclarativeComponent(class QDeclarativeEngine *, class QDeclarativeCompiledData *, int, i…