Searched defs:CallbackStack (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.h12 // The CallbackStack contains all the visitor callbacks used to trace and mark
13 // objects. A specific CallbackStack instance contains at most bufferSize elements.
14 // If more space is needed a new CallbackStack instance is created and chained
15 // together with the former instance. I.e. a logical CallbackStack can be made of
16 // multiple chained CallbackStack object instances.
17 class CallbackStack { class in namespace:blink
36 CallbackStack();
37 ~CallbackStack();
47 void append(CallbackStack*);
48 void takeBlockFrom(CallbackStack*);
[all...]
H A DCallbackStack.cpp6 #include "platform/heap/CallbackStack.h"
12 class CallbackStack::Block {
115 CallbackStack::CallbackStack() : m_first(new Block(0)), m_last(m_first) function in class:blink::CallbackStack
119 CallbackStack::~CallbackStack()
127 void CallbackStack::clear()
138 bool CallbackStack::isEmpty() const
143 void CallbackStack::takeBlockFrom(CallbackStack* othe
[all...]

Completed in 158 milliseconds