Home
last modified time | relevance | path

Searched refs:tokenToFind (Results 1 – 3 of 3) sorted by relevance

/dports/net/liveMedia/live/BasicUsageEnvironment/
H A DDelayQueue.cpp151 void DelayQueue::updateEntry(intptr_t tokenToFind, DelayInterval newDelay) { in updateEntry() argument
152 DelayQueueEntry* entry = findEntryByToken(tokenToFind); in updateEntry()
166 DelayQueueEntry* DelayQueue::removeEntry(intptr_t tokenToFind) { in removeEntry() argument
167 DelayQueueEntry* entry = findEntryByToken(tokenToFind); in removeEntry()
191 DelayQueueEntry* DelayQueue::findEntryByToken(intptr_t tokenToFind) { in findEntryByToken() argument
194 if (cur->token() == tokenToFind) return cur; in findEntryByToken()
/dports/net/liveMedia/live/BasicUsageEnvironment/include/
H A DDelayQueue.hh167 void updateEntry(intptr_t tokenToFind, DelayInterval newDelay);
169 DelayQueueEntry* removeEntry(intptr_t tokenToFind); // but doesn't delete it
/dports/games/openmw/openmw-openmw-0.47.0/apps/openmw/mwgui/
H A Dwindowmanagerimp.cpp1012 std::string tokenToFind = "sCell="; in onRetrieveTag() local
1013 size_t tokenLength = tokenToFind.length(); in onRetrieveTag()
1024 else if (tag.compare(0, tokenLength, tokenToFind) == 0) in onRetrieveTag()