HomeSort by relevance Sort by last modified time
    Searched refs:ObjectStack (Results 1 - 9 of 9) 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/
sticky_mark_sweep.cc 58 accounting::ObjectStack* live_stack = GetHeap()->GetLiveStack();
mark_sweep.h 49 typedef AtomicStack<mirror::Object*> ObjectStack;
147 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
406 accounting::ObjectStack* mark_stack_;
mark_sweep.cc 279 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
306 accounting::ObjectStack* allocation_stack = GetHeap()->allocation_stack_.get();
    [all...]
  /art/runtime/gc/
heap.h 356 accounting::ObjectStack* GetLiveStack() SHARED_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
368 accounting::ObjectStack* stack)
666 UniquePtr<accounting::ObjectStack> mark_stack_;
672 UniquePtr<accounting::ObjectStack> allocation_stack_;
675 UniquePtr<accounting::ObjectStack> live_stack_;
heap.cc 205 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", default_mark_stack_size));
206 allocation_stack_.reset(accounting::ObjectStack::Create("allocation stack",
208 live_stack_.reset(accounting::ObjectStack::Create("live stack",
    [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/accounting/
atomic_stack.h 199 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 88 milliseconds