Home
last modified time | relevance | path

Searched refs:QQmlDataBlob (Results 1 – 14 of 14) sorted by relevance

/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/qml/
H A Dqqmldatablob.cpp103 QQmlDataBlob::QQmlDataBlob(const QUrl &url, Type type, QQmlTypeLoader *manager) in QQmlDataBlob() function in QQmlDataBlob
114 QQmlDataBlob::~QQmlDataBlob() in ~QQmlDataBlob()
133 QQmlDataBlob::Type QQmlDataBlob::type() const in type()
141 QQmlDataBlob::Status QQmlDataBlob::status() const in status()
213 QUrl QQmlDataBlob::url() const in url()
343 void QQmlDataBlob::addDependency(QQmlDataBlob *blob) in addDependency()
390 void QQmlDataBlob::done() in done()
454 void QQmlDataBlob::dependencyError(QQmlDataBlob *blob) in dependencyError()
464 void QQmlDataBlob::dependencyComplete(QQmlDataBlob *blob) in dependencyComplete()
515 void QQmlDataBlob::tryDone() in tryDone()
[all …]
H A Dqqmltypeloaderthread_p.h66 class QQmlDataBlob; variable
81 void load(QQmlDataBlob *b);
82 void loadAsync(QQmlDataBlob *b);
83 void loadWithStaticData(QQmlDataBlob *b, const QByteArray &);
84 void loadWithStaticDataAsync(QQmlDataBlob *b, const QByteArray &);
87 void callCompleted(QQmlDataBlob *b);
88 void callDownloadProgressChanged(QQmlDataBlob *b, qreal p);
96 void loadThread(QQmlDataBlob *b);
97 void loadWithStaticDataThread(QQmlDataBlob *b, const QByteArray &);
99 void callCompletedMain(QQmlDataBlob *b);
[all …]
H A Dqqmltypeloader_p.h83 class Q_QML_PRIVATE_EXPORT Blob : public QQmlDataBlob
124 void dependencyComplete(QQmlDataBlob *) override;
169 void load(QQmlDataBlob *, Mode = PreferSynchronous);
188 friend class QQmlDataBlob;
196 void loadThread(QQmlDataBlob *);
197 void loadWithStaticDataThread(QQmlDataBlob *, const QByteArray &);
203 typedef QHash<QNetworkReply *, QQmlDataBlob *> NetworkReplies;
206 void setData(QQmlDataBlob *, const QByteArray &);
207 void setData(QQmlDataBlob *, const QString &fileName);
208 void setData(QQmlDataBlob *, const QQmlDataBlob::SourceCodeData &);
[all …]
H A Dqqmldatablob_p.h72 class Q_QML_PRIVATE_EXPORT QQmlDataBlob : public QQmlRefCount
91 ~QQmlDataBlob() override;
123 friend class QQmlDataBlob;
137 void addDependency(QQmlDataBlob *);
146 virtual void dependencyError(QQmlDataBlob *);
147 virtual void dependencyComplete(QQmlDataBlob *);
165 void notifyComplete(QQmlDataBlob *);
184 inline QQmlDataBlob::Status status() const in status()
189 inline void setStatus(QQmlDataBlob::Status status) in setStatus()
246 QList<QQmlDataBlob *> m_waitingOnMe;
[all …]
H A Dqqmltypeloaderthread.cpp80 void QQmlTypeLoaderThread::load(QQmlDataBlob *b) in load()
86 void QQmlTypeLoaderThread::loadAsync(QQmlDataBlob *b) in loadAsync()
92 void QQmlTypeLoaderThread::loadWithStaticData(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticData()
98 void QQmlTypeLoaderThread::loadWithStaticDataAsync(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticDataAsync()
104 void QQmlTypeLoaderThread::loadWithCachedUnit(QQmlDataBlob *b, const QV4::CompiledData::Unit *unit) in loadWithCachedUnit()
116 void QQmlTypeLoaderThread::callCompleted(QQmlDataBlob *b) in callCompleted()
127 void QQmlTypeLoaderThread::callDownloadProgressChanged(QQmlDataBlob *b, qreal p) in callDownloadProgressChanged()
160 void QQmlTypeLoaderThread::loadThread(QQmlDataBlob *b) in loadThread()
166 void QQmlTypeLoaderThread::loadWithStaticDataThread(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticDataThread()
178 void QQmlTypeLoaderThread::callCompletedMain(QQmlDataBlob *b) in callCompletedMain()
[all …]
H A Dqqmltypeloader.cpp235 void QQmlTypeLoader::load(QQmlDataBlob *blob, Mode mode) in load()
269 void QQmlTypeLoader::loadThread(QQmlDataBlob *blob) in loadThread()
337 QQmlDataBlob *blob = m_networkReplies.take(reply); in networkReplyFinished()
376 QQmlDataBlob *blob = m_networkReplies.value(reply); in networkReplyProgress()
427 QQmlDataBlob::SourceCodeData d; in setData()
435 QQmlDataBlob::SourceCodeData d; in setData()
440 void QQmlTypeLoader::setData(QQmlDataBlob *blob, const QQmlDataBlob::SourceCodeData &d) in setData()
452 if (blob->status() != QQmlDataBlob::Error) in setData()
472 if (blob->status() != QQmlDataBlob::Error) in setCachedUnit()
497 : QQmlDataBlob(url, type, loader), m_importCache(loader) in Blob()
[all …]
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/qml/
H A Dqqmldatablob.cpp103 QQmlDataBlob::QQmlDataBlob(const QUrl &url, Type type, QQmlTypeLoader *manager) in QQmlDataBlob() function in QQmlDataBlob
114 QQmlDataBlob::~QQmlDataBlob() in ~QQmlDataBlob()
133 QQmlDataBlob::Type QQmlDataBlob::type() const in type()
141 QQmlDataBlob::Status QQmlDataBlob::status() const in status()
213 QUrl QQmlDataBlob::url() const in url()
343 void QQmlDataBlob::addDependency(QQmlDataBlob *blob) in addDependency()
390 void QQmlDataBlob::done() in done()
454 void QQmlDataBlob::dependencyError(QQmlDataBlob *blob) in dependencyError()
464 void QQmlDataBlob::dependencyComplete(QQmlDataBlob *blob) in dependencyComplete()
515 void QQmlDataBlob::tryDone() in tryDone()
[all …]
H A Dqqmltypeloaderthread_p.h66 class QQmlDataBlob; variable
81 void load(QQmlDataBlob *b);
82 void loadAsync(QQmlDataBlob *b);
83 void loadWithStaticData(QQmlDataBlob *b, const QByteArray &);
84 void loadWithStaticDataAsync(QQmlDataBlob *b, const QByteArray &);
87 void callCompleted(QQmlDataBlob *b);
88 void callDownloadProgressChanged(QQmlDataBlob *b, qreal p);
96 void loadThread(QQmlDataBlob *b);
97 void loadWithStaticDataThread(QQmlDataBlob *b, const QByteArray &);
99 void callCompletedMain(QQmlDataBlob *b);
[all …]
H A Dqqmltypeloader_p.h83 class Q_QML_PRIVATE_EXPORT Blob : public QQmlDataBlob
124 void dependencyComplete(QQmlDataBlob *) override;
169 void load(QQmlDataBlob *, Mode = PreferSynchronous);
188 friend class QQmlDataBlob;
196 void loadThread(QQmlDataBlob *);
197 void loadWithStaticDataThread(QQmlDataBlob *, const QByteArray &);
203 typedef QHash<QNetworkReply *, QQmlDataBlob *> NetworkReplies;
206 void setData(QQmlDataBlob *, const QByteArray &);
207 void setData(QQmlDataBlob *, const QString &fileName);
208 void setData(QQmlDataBlob *, const QQmlDataBlob::SourceCodeData &);
[all …]
H A Dqqmldatablob_p.h72 class Q_QML_PRIVATE_EXPORT QQmlDataBlob : public QQmlRefCount
91 ~QQmlDataBlob() override;
123 friend class QQmlDataBlob;
137 void addDependency(QQmlDataBlob *);
146 virtual void dependencyError(QQmlDataBlob *);
147 virtual void dependencyComplete(QQmlDataBlob *);
165 void notifyComplete(QQmlDataBlob *);
184 inline QQmlDataBlob::Status status() const in status()
189 inline void setStatus(QQmlDataBlob::Status status) in setStatus()
246 QList<QQmlDataBlob *> m_waitingOnMe;
[all …]
H A Dqqmltypeloaderthread.cpp80 void QQmlTypeLoaderThread::load(QQmlDataBlob *b) in load()
86 void QQmlTypeLoaderThread::loadAsync(QQmlDataBlob *b) in loadAsync()
92 void QQmlTypeLoaderThread::loadWithStaticData(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticData()
98 void QQmlTypeLoaderThread::loadWithStaticDataAsync(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticDataAsync()
104 void QQmlTypeLoaderThread::loadWithCachedUnit(QQmlDataBlob *b, const QV4::CompiledData::Unit *unit) in loadWithCachedUnit()
116 void QQmlTypeLoaderThread::callCompleted(QQmlDataBlob *b) in callCompleted()
127 void QQmlTypeLoaderThread::callDownloadProgressChanged(QQmlDataBlob *b, qreal p) in callDownloadProgressChanged()
160 void QQmlTypeLoaderThread::loadThread(QQmlDataBlob *b) in loadThread()
166 void QQmlTypeLoaderThread::loadWithStaticDataThread(QQmlDataBlob *b, const QByteArray &d) in loadWithStaticDataThread()
178 void QQmlTypeLoaderThread::callCompletedMain(QQmlDataBlob *b) in callCompletedMain()
[all …]
H A Dqqmltypeloader.cpp235 void QQmlTypeLoader::load(QQmlDataBlob *blob, Mode mode) in load()
269 void QQmlTypeLoader::loadThread(QQmlDataBlob *blob) in loadThread()
337 QQmlDataBlob *blob = m_networkReplies.take(reply); in networkReplyFinished()
376 QQmlDataBlob *blob = m_networkReplies.value(reply); in networkReplyProgress()
427 QQmlDataBlob::SourceCodeData d; in setData()
435 QQmlDataBlob::SourceCodeData d; in setData()
440 void QQmlTypeLoader::setData(QQmlDataBlob *blob, const QQmlDataBlob::SourceCodeData &d) in setData()
452 if (blob->status() != QQmlDataBlob::Error) in setData()
472 if (blob->status() != QQmlDataBlob::Error) in setCachedUnit()
497 : QQmlDataBlob(url, type, loader), m_importCache(loader) in Blob()
[all …]
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/debugger/
H A Dqqmlprofiler_p.h88 QQmlCompilingProfiler(quintptr, QQmlDataBlob *) {} in QQmlCompilingProfiler()
193 RefLocation(QQmlDataBlob *ref)
290 QQmlDataBlob *blob;
323 void startCompiling(QQmlDataBlob *blob)
439 QQmlCompilingProfiler(QQmlProfiler *profiler, QQmlDataBlob *blob) :
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/debugger/
H A Dqqmlprofiler_p.h88 QQmlCompilingProfiler(quintptr, QQmlDataBlob *) {} in QQmlCompilingProfiler()
193 RefLocation(QQmlDataBlob *ref)
290 QQmlDataBlob *blob;
323 void startCompiling(QQmlDataBlob *blob)
439 QQmlCompilingProfiler(QQmlProfiler *profiler, QQmlDataBlob *blob) :