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

  /libcore/luni/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 377 Object[] m_stack = new Object[max]; field in class:NamespaceMappings.Stack
383 clone.m_stack = new Object[clone.max];
387 clone.m_stack[i] = this.m_stack[i];
401 System.arraycopy(m_stack,0, newArray, 0, max);
403 m_stack = newArray;
405 m_stack[top] = o;
412 o = m_stack[top];
413 // m_stack[top] = null; do we really care?
424 o = m_stack[top]
    [all...]
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 302 explicit StackCleaner(StateBase** stack) : m_stack(stack)
308 StateBase* state = *m_stack;
314 *m_stack = 0;
318 StateBase** m_stack; member in class:WebCore::__anon7986::Serializer::StackCleaner
643 void push(v8::Local<v8::Value> value) { m_stack.append(value); }
647 ASSERT(length <= m_stack.size());
648 m_stack.shrink(m_stack.size() - length);
651 int stackDepth() const { return m_stack.size(); }
655 ASSERT(index < m_stack.size())
    [all...]

Completed in 46 milliseconds