Home
last modified time | relevance | path

Searched refs:fetchItem (Results 1 – 25 of 102) sorted by relevance

12345

/dports/www/grr/Grr-1.0/Components/DatabaseOperations/
H A DDatabaseOperations.m53 fetchItem = [[NSToolbarItem alloc] initWithItemIdentifier: FETCH_IDENTIFIER];
54 [fetchItem setLabel: _(@"Fetch feed")];
55 [fetchItem setImage: [NSImage imageNamed: @"FetchFeed"]];
56 [fetchItem setAction: @selector(fetchSelectedFeeds)];
57 [fetchItem setTarget: self];
172 [fetchItem setEnabled: isEnabled];
189 return fetchItem;
H A DDatabaseOperations.h45 NSToolbarItem* fetchItem; variable
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/plexapi/
H A Daudio.py175 return self.fetchItem(key, Album, title__iexact=title)
195 return self.fetchItem(key, Track, title__iexact=title)
197 return self.fetchItem(key, Track, parentTitle__iexact=album, index=track)
296 return self.fetchItem(key, Track, title__iexact=title)
298 return self.fetchItem(key, Track, parentTitle__iexact=self.title, index=track)
312 return self.fetchItem(self.parentKey)
400 return self.fetchItem(self.parentKey)
404 return self.fetchItem(self.grandparentKey)
H A Dphoto.py72 return self.fetchItem(key, Photoalbum, title__iexact=title)
86 return self.fetchItem(key, Photo, title__iexact=title)
100 return self.fetchItem(key, video.Clip, title__iexact=title)
217 return self.fetchItem(self.parentKey)
H A Dvideo.py191 backgroundProcessing = self.fetchItem('/playlists?type=42')
510 return self.fetchItem(key, Season, title__iexact=title)
516 return self.fetchItem(key, Season, index=index)
537 return self.fetchItem(key, Episode, title__iexact=title)
539 return self.fetchItem(key, Episode, parentIndex=season, index=episode)
660 return self.fetchItem(key, Episode, title__iexact=title)
666 return self.fetchItem(key, Episode, parentIndex=self.index, index=index)
682 return self.fetchItem(self.parentRatingKey)
870 return self.fetchItem(self.parentKey)
874 return self.fetchItem(self.grandparentRatingKey)
/dports/deskutils/zanshin/zanshin-21.12.3/tests/units/akonadi/
H A Dakonadicontextrepositorytest.cpp167 storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()) in shouldAssociateATaskToAContext()
184 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()).exactly(1)… in shouldAssociateATaskToAContext()
231 storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()) in shoudDissociateTaskFromContext()
249 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()).exactly(1)… in shoudDissociateTaskFromContext()
291 storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()) in shouldDissociateTaskFromAllContext()
307 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()).exactly(1)… in shouldDissociateTaskFromAllContext()
H A Dakonadiprojectrepositorytest.cpp226 storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()) in shouldAssociateATaskToAProject()
228 storageMock(&Akonadi::StorageInterface::fetchItem).when(parentItem, repository.get()) in shouldAssociateATaskToAProject()
256 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()).exact… in shouldAssociateATaskToAProject()
260 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(parentItem, repository.get()).exac… in shouldAssociateATaskToAProject()
316 storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()) in shouldDissociateATaskFromItsProject()
329 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()).exact… in shouldDissociateATaskFromItsProject()
H A Dakonaditaskrepositorytest.cpp400 storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()) in shouldRemoveATask()
416 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()).exactly(1)… in shouldRemoveATask()
453 storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()) in shouldPromoteTaskToProject()
464 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(item, repository.get()).exactly(1)… in shouldPromoteTaskToProject()
573 storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()) in shouldAssociateATaskToAnother()
611 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()).exact… in shouldAssociateATaskToAnother()
710 storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()) in shouldDissociateATaskFromItsParent()
722 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()).exact… in shouldDissociateATaskFromItsParent()
752 storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()) in shouldDissociateAllLinksOfTask()
765 …QVERIFY(storageMock(&Akonadi::StorageInterface::fetchItem).when(childItem, repository.get()).exact… in shouldDissociateAllLinksOfTask()
/dports/deskutils/zanshin/zanshin-21.12.3/src/akonadi/
H A Dakonadicontextrepository.cpp53 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in associate()
75 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in dissociate()
99 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in dissociateAll()
H A Dakonadiprojectrepository.cpp51 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in associate()
62 ItemFetchJobInterface *fetchParentItemJob = m_storage->fetchItem(parentItem, this); in associate()
105 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in dissociate()
H A Dakonaditaskrepository.cpp122 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(item, this); in remove()
152 auto fetchJob = m_storage->fetchItem(item, this); in promoteToProject()
173 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in associate()
247 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in dissociate()
269 ItemFetchJobInterface *fetchItemJob = m_storage->fetchItem(childItem, this); in dissociateAll()
/dports/net/akonadi-mime/akonadi-mime-21.12.3/src/
H A Dremoveduplicatesjob.cpp27 void fetchItem() in fetchItem() function in Akonadi::RemoveDuplicatesJobPrivate
111 fetchItem(); in slotFetchDone()
176 d->fetchItem(); in doStart()
/dports/graphics/krita/krita-4.4.8/libs/store/
H A DKoXmlVector.h70 void fetchItem(unsigned index) const { in fetchItem() function
162 fetchItem((unsigned)i);
/dports/editors/calligraplan/calligraplan-3.3.0/src/libs/store/
H A DKoXmlVector.h70 void fetchItem(unsigned index) const { in fetchItem() function
162 fetchItem((unsigned)i);
/dports/editors/calligra/calligra-3.2.1/libs/store/
H A DKoXmlVector.h70 void fetchItem(unsigned index) const { in fetchItem() function
162 fetchItem((unsigned)i);
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/dbi/
H A DDiskOrderedScanner.java444 final Object item = fetchItem(parent.getLsn(i), BIN_OR_DELTA); in accumulateLNs()
454 bin = (BIN) fetchItem(delta.getLastFullLsn(), BIN_ONLY); in accumulateLNs()
534 final Object item = fetchItem(lsnArray[i], BIN_OR_DELTA); in fetchAndProcessBINs()
585 bin = (BIN) fetchItem(delta.getLastFullLsn(), BIN_ONLY); in fetchAndProcessBINs()
673 private Object fetchItem(long lsn, LogEntryType[] expectTypes) { in fetchItem() method in DiskOrderedScanner
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/kaddressbook/plugins/sendmail/
H A Dmailsenderjob.cpp83 fetchItem(mItemToFetch.at(mFetchJobCount)); in fetchNextItem()
90 void MailSenderJob::fetchItem(const Akonadi::Item &item) in fetchItem() function in MailSenderJob
H A Dmailsenderjob.h36 void fetchItem(const Akonadi::Item &item);
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/src/Text/Pandoc/
H A DTemplates.hs30 import Text.Pandoc.Class.PandocMonad (PandocMonad, readDataFile, fetchItem,
64 (bs, _) <- fetchItem $ T.pack tp
/dports/textproc/hs-pandoc/pandoc-2.14.2/src/Text/Pandoc/
H A DTemplates.hs30 import Text.Pandoc.Class.PandocMonad (PandocMonad, readDataFile, fetchItem,
65 (bs, _) <- fetchItem $ T.pack tp
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/pandoc-2.11.4/src/Text/Pandoc/Lua/Module/
H A DMediaBag.hs19 import Text.Pandoc.Class.PandocMonad (fetchItem, getMediaBag, modifyCommonState,
99 (bs, mimeType) <- fetchItem src
/dports/textproc/hs-pandoc/pandoc-2.14.2/src/Text/Pandoc/Lua/Module/
H A DMediaBag.hs20 import Text.Pandoc.Class.PandocMonad (fetchItem, getMediaBag, modifyCommonState,
100 (bs, mimeType) <- fetchItem src
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sky/
H A Dscreen.cpp185 uint8 *screenData = (uint8 *)SkyEngine::fetchItem(Logic::_scriptVariables[LAYER_0_ID]); in recreate()
432 _seqInfo.seqData = (uint8 *)SkyEngine::fetchItem(itemNum); in startSequenceItem()
563 (DataFileHeader *)SkyEngine::fetchItem(spriteComp->frame >> 6); in sortSprites()
625 uint8 *toBeDrawn = (uint8 *)SkyEngine::fetchItem(spriteData->frame >> 6); in doSprites()
751 uint8 *dataSrc = (uint8 *)SkyEngine::fetchItem(Logic::_scriptVariables[layerId]) + gridVal; in vertMaskSub()
781 scrGrid = (uint16 *)SkyEngine::fetchItem(Logic::_scriptVariables[layerCnt + 3]); in verticalMask()
/dports/games/scummvm/scummvm-2.5.1/engines/sky/
H A Dscreen.cpp185 uint8 *screenData = (uint8 *)SkyEngine::fetchItem(Logic::_scriptVariables[LAYER_0_ID]); in recreate()
432 _seqInfo.seqData = (uint8 *)SkyEngine::fetchItem(itemNum); in startSequenceItem()
563 (DataFileHeader *)SkyEngine::fetchItem(spriteComp->frame >> 6); in sortSprites()
625 uint8 *toBeDrawn = (uint8 *)SkyEngine::fetchItem(spriteData->frame >> 6); in doSprites()
751 uint8 *dataSrc = (uint8 *)SkyEngine::fetchItem(Logic::_scriptVariables[layerId]) + gridVal; in vertMaskSub()
781 scrGrid = (uint16 *)SkyEngine::fetchItem(Logic::_scriptVariables[layerCnt + 3]); in verticalMask()
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/gobwas/glob/syntax/lexer/
H A Dlexer.go85 l.fetchItem()
152 func (l *lexer) fetchItem() { func

12345