Home
last modified time | relevance | path

Searched refs:applicationData (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/dports/editors/calligra/calligra-3.2.1/stage/part/
H A DKPrDocument.cpp194 …KPrShapeApplicationData * applicationData = dynamic_cast<KPrShapeApplicationData*>( shape->applica… in addAnimation() local
195 if ( applicationData == 0 ) { in addAnimation()
197 shape->setApplicationData( applicationData ); in addAnimation()
200 applicationData->setDeleteAnimations(false); in addAnimation()
212 …KPrShapeApplicationData *applicationData = dynamic_cast<KPrShapeApplicationData*>(shape->applicati… in removeAnimation() local
213 Q_ASSERT(applicationData); in removeAnimation()
218 applicationData->setDeleteAnimations(true); in removeAnimation()
234 …KPrShapeApplicationData * applicationData = dynamic_cast<KPrShapeApplicationData*>( shape->applica… in postAddShape() local
235 if ( applicationData ) { in postAddShape()
247 …KPrShapeApplicationData * applicationData = dynamic_cast<KPrShapeApplicationData*>( shape->applica… in postRemoveShape() local
[all …]
/dports/devel/libunit/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/www/unit-java/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/www/unit-php/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/www/unit-python/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/www/unit-perl/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/www/unit/unit-1.26.1/src/java/nginx/unit/websocket/
H A DWsPongMessage.java25 private final ByteBuffer applicationData; field in WsPongMessage
28 public WsPongMessage(ByteBuffer applicationData) { in WsPongMessage() argument
29 byte[] dst = new byte[applicationData.limit()]; in WsPongMessage()
30 applicationData.get(dst); in WsPongMessage()
31 this.applicationData = ByteBuffer.wrap(dst); in WsPongMessage()
37 return applicationData; in getApplicationData()
H A DWsRemoteEndpointBase.java53 public final void sendPing(ByteBuffer applicationData) throws IOException, in sendPing() argument
55 base.sendPing(applicationData); in sendPing()
60 public final void sendPong(ByteBuffer applicationData) throws IOException, in sendPong() argument
62 base.sendPong(applicationData); in sendPong()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtpurchasing/examples/purchasing/qthangman/qml/qthangman/
H A DGameView.qml68 …property bool success: applicationData.word.length > 0 && !gameOver && allContained(applicationDat…
74 applicationData.gameOverReveal();
83 target: applicationData
85 applicationData.wordsGiven += 1;
93 visible: !applicationData.vowelsUnlocked
139 text: applicationData.word
150 hideVowels: applicationData.vowelsAvailable < 1 && !applicationData.vowelsUnlocked
157 if (applicationData.isVowel(letter) && !applicationData.vowelsUnlocked) {
158 applicationData.vowelsAvailable -= 1;
174 applicationData.reveal();
[all …]
/dports/devel/mutagen/mutagen-0.11.8/vendor/github.com/pion/dtls/v2/
H A Dapplication_data.go8 type applicationData struct { struct
12 func (a applicationData) contentType() contentType { argument
16 func (a *applicationData) Marshal() ([]byte, error) { argument
20 func (a *applicationData) Unmarshal(data []byte) error { argument
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/rtp_rtcp/source/
H A Drtcp_receiver_help.cc27 applicationData(), in RTCPPacketInformation()
44 delete [] applicationData; in ~RTCPPacketInformation()
57 uint8_t* oldData = applicationData; in AddApplicationData()
70 applicationData = new uint8_t[applicationLength]; in AddApplicationData()
74 memcpy(applicationData, oldData, oldLength); in AddApplicationData()
75 memcpy(applicationData+oldLength, data, copySize); in AddApplicationData()
79 memcpy(applicationData, data, copySize); in AddApplicationData()
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/indexed_search/Classes/Hook/
H A DTypoScriptFrontendHook.php34 …&& $params['pObj']->applicationData['tx_crawler']['running'] && in_array('tx_indexedsearch_reindex…
36 …$params['pObj']->applicationData['tx_crawler']['log'][] = 'RE_CACHE (indexed), old status: ' . $pa…
/dports/editors/calligra/calligra-3.2.1/stage/part/animations/
H A DKPrAnimationLoader.cpp246 …KPrShapeApplicationData * applicationData = dynamic_cast<KPrShapeApplicationData*>(shapeAnimation-… in loadOdfAnimation() local
247 if (applicationData == 0) { in loadOdfAnimation()
248 applicationData = new KPrShapeApplicationData(); in loadOdfAnimation()
249 shapeAnimation->shape()->setApplicationData(applicationData); in loadOdfAnimation()
251 applicationData->animations().insert(shapeAnimation); in loadOdfAnimation()
/dports/finance/skrooge/skrooge-2.26.1/plugins/generic/skg_monthly/
H A Dskgmonthlyplugin.cpp60 …QString path = writablePath % QLatin1Char('/') + KAboutData::applicationData().componentName() % Q… in setupActions()
61 …if (!QDir(writablePath).mkpath(KAboutData::applicationData().componentName() % QStringLiteral("/ht… in setupActions()
66 …ardPaths::locateAll(QStandardPaths::GenericDataLocation, KAboutData::applicationData().componentNa… in setupActions()
118 …andardPaths::locate(QStandardPaths::GenericDataLocation, KAboutData::applicationData().componentNa… in refreshMainPage()
120 …18nc("Error message", "File %1/html/main.txt not found", KAboutData::applicationData().componentNa… in refreshMainPage()
H A Dskgmonthlypluginwidget.cpp147 …ardPaths::locateAll(QStandardPaths::GenericDataLocation, KAboutData::applicationData().componentNa… in fillTemplateList()
171 …StandardPaths::GenericDataLocation) + QLatin1Char('/') + KAboutData::applicationData().componentNa… in onAddTemplate()
174 …ardPaths::locateAll(QStandardPaths::GenericDataLocation, KAboutData::applicationData().componentNa… in onAddTemplate()
186 …andardPaths::locate(QStandardPaths::GenericDataLocation, KAboutData::applicationData().componentNa… in onAddTemplate()
208 …StandardPaths::GenericDataLocation) + QLatin1Char('/') + KAboutData::applicationData().componentNa… in onDeleteTemplate()
229 …StandardPaths::GenericDataLocation) + QLatin1Char('/') + KAboutData::applicationData().componentNa… in onTemplateChanged()
296 …QPointer<KNS3::DownloadDialog> dialog = new KNS3::DownloadDialog(KAboutData::applicationData().com… in onGetNewHotStuff()
307 …StandardPaths::GenericDataLocation) + QLatin1Char('/') + KAboutData::applicationData().componentNa… in onPutNewHotStuff()
308 …StandardPaths::GenericDataLocation) + QLatin1Char('/') + KAboutData::applicationData().componentNa… in onPutNewHotStuff()
342 …QPointer<KNS3::UploadDialog> dialog = new KNS3::UploadDialog(KAboutData::applicationData().compone… in onPutNewHotStuff()
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_winrt.cpp83 ComPtr<IApplicationData> applicationData; in writableLocation() local
84 if (FAILED(applicationDataStatics->get_Current(&applicationData))) in writableLocation()
87 if (FAILED(applicationData->get_LocalFolder(&settingsFolder))) in writableLocation()
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_winrt.cpp83 ComPtr<IApplicationData> applicationData; in writableLocation() local
84 if (FAILED(applicationDataStatics->get_Current(&applicationData))) in writableLocation()
87 if (FAILED(applicationData->get_LocalFolder(&settingsFolder))) in writableLocation()
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_winrt.cpp83 ComPtr<IApplicationData> applicationData; in writableLocation() local
84 if (FAILED(applicationDataStatics->get_Current(&applicationData))) in writableLocation()
87 if (FAILED(applicationData->get_LocalFolder(&settingsFolder))) in writableLocation()
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_winrt.cpp83 ComPtr<IApplicationData> applicationData; in writableLocation() local
84 if (FAILED(applicationDataStatics->get_Current(&applicationData))) in writableLocation()
87 if (FAILED(applicationData->get_LocalFolder(&settingsFolder))) in writableLocation()
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/corelib/io/
H A Dqstandardpaths_winrt.cpp83 ComPtr<IApplicationData> applicationData; in writableLocation() local
84 if (FAILED(applicationDataStatics->get_Current(&applicationData))) in writableLocation()
87 if (FAILED(applicationData->get_LocalFolder(&settingsFolder))) in writableLocation()

12345678910>>...15