HomeSort by relevance Sort by last modified time
    Searched refs:ObjectStack (Results 1 - 14 of 14) 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/
concurrent_copying.h 42 typedef AtomicStack<mirror::Object> ObjectStack;
161 accounting::ObjectStack* GetAllocationStack();
162 accounting::ObjectStack* GetLiveStack();
259 std::unique_ptr<accounting::ObjectStack> gc_mark_stack_;
260 std::unique_ptr<accounting::ObjectStack> rb_mark_bit_stack_;
264 std::vector<accounting::ObjectStack*> revoked_mark_stacks_
268 std::vector<accounting::ObjectStack*> pooled_mark_stacks_
mark_sweep.h 50 typedef AtomicStack<mirror::Object> ObjectStack;
158 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
317 accounting::ObjectStack* mark_stack_;
mark_compact.h 49 typedef AtomicStack<mirror::Object> ObjectStack;
197 accounting::ObjectStack* mark_stack_;
semi_space.h 48 typedef AtomicStack<mirror::Object> ObjectStack;
206 accounting::ObjectStack* mark_stack_;
concurrent_copying.cc 70 gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack",
73 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack",
    [all...]
mark_compact.cc 228 accounting::ObjectStack* live_stack = heap_->GetLiveStack();
mark_sweep.cc     [all...]
semi_space.cc 335 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 589 accounting::ObjectStack* GetLiveStack() REQUIRES_SHARED(Locks::heap_bitmap_lock_) {
609 accounting::ObjectStack* stack)
614 void MarkAllocStackAsLive(accounting::ObjectStack* stack)
    [all...]
heap.cc 545 mark_stack_.reset(accounting::ObjectStack::Create("mark stack", kDefaultMarkStackSize,
548 allocation_stack_.reset(accounting::ObjectStack::Create(
550 live_stack_.reset(accounting::ObjectStack::Create(
    [all...]
  /art/runtime/gc/accounting/
atomic_stack.h 274 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 896 milliseconds