OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timerHeap
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/
ThreadTimers.h
49
Vector<TimerBase*>&
timerHeap
() { return m_timerHeap; }
Timer.cpp
49
return PlatformThreadData::current().threadTimers().
timerHeap
();
81
Vector<TimerBase*>& heap = timer->
timerHeap
();
236
ASSERT(
timerHeap
() == threadGlobalTimerHeap());
237
ASSERT(!
timerHeap
().isEmpty());
239
ASSERT(m_heapIndex < static_cast<int>(
timerHeap
().size()));
240
ASSERT(
timerHeap
()[m_heapIndex] == this);
255
TimerBase** heapData =
timerHeap
().data();
264
timerHeap
().removeLast();
272
timerHeap
().removeLast();
286
timerHeap
().append(this)
[
all
...]
Timer.h
97
Vector<TimerBase*>&
timerHeap
() const { ASSERT(m_cachedThreadGlobalTimerHeap); return *m_cachedThreadGlobalTimerHeap; }
Completed in 358 milliseconds