HomeSort by relevance Sort by last modified time
    Searched refs:ObjectStack (Results 1 - 12 of 12) sorted by null

  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectStack.java 34 public class ObjectStack extends ObjectVector
41 public ObjectStack()
51 public ObjectStack(int blocksize)
57 * Copy constructor for ObjectStack
59 * @param v ObjectStack to copy
61 public ObjectStack (ObjectStack v)
205 * Returns clone of current ObjectStack
207 * @return clone of current ObjectStack
212 return (ObjectStack) super.clone()
    [all...]
  /art/runtime/gc/collector/
mark_sweep.h 50 typedef AtomicStack<mirror::Object*> ObjectStack;
145 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
285 accounting::ObjectStack* mark_stack_;
mark_compact.h 49 typedef AtomicStack<mirror::Object*> ObjectStack;
215 accounting::ObjectStack* mark_stack_;
semi_space.h 48 typedef AtomicStack<mirror::Object*> ObjectStack;
205 accounting::ObjectStack* mark_stack_;
mark_sweep.cc     [all...]
mark_compact.cc 253 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
semi_space.cc 315 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 45 import org.apache.xml.utils.ObjectStack;
396 ObjectStack m_saxLocations = new ObjectStack(RECURSIONLIMIT);
911 private ObjectStack m_prefixResolvers
912 = new ObjectStack(RECURSIONLIMIT);
    [all...]
  /art/runtime/gc/
heap.h 484 accounting::ObjectStack* GetLiveStack() SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
504 accounting::ObjectStack* stack)
508 void MarkAllocStackAsLive(accounting::ObjectStack* stack)
640 accounting::ObjectStack* GetMarkStack() {
    [all...]
heap.cc 397 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize,
400 allocation_stack_.reset(accounting::ObjectStack::Create(
402 live_stack_.reset(accounting::ObjectStack::Create(
    [all...]
  /art/runtime/gc/accounting/
atomic_stack.h 243 typedef AtomicStack<mirror::Object*> ObjectStack;
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 81 import org.apache.xml.utils.ObjectStack;
191 ObjectStack m_currentTemplateElements
192 = new ObjectStack(XPathContext.RECURSIONLIMIT);
263 ObjectStack m_currentFuncResult = new ObjectStack();
    [all...]

Completed in 395 milliseconds