Searched refs:m_stack (Results 1 – 10 of 10) sorted by relevance
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | NamespaceMappings.java | 377 Object[] m_stack = new Object[max]; field in NamespaceMappings.Stack 383 clone.m_stack = new Object[clone.max]; in clone() 387 clone.m_stack[i] = this.m_stack[i]; in clone() 401 System.arraycopy(m_stack,0, newArray, 0, max); in push() 403 m_stack = newArray; in push() 405 m_stack[top] = o; in push() 412 o = m_stack[top]; in pop() 424 o = m_stack[top]; in peek() 432 return m_stack[idx]; in peek() 444 m_stack[i] = null; in clear() [all …]
|
/external/webkit/Source/JavaScriptCore/heap/ |
D | Local.h | 114 return m_stack[m_count - 1].get(); in peek() 120 return m_stack[--m_count].get(); in pop() 125 if (m_count == m_stack.size()) in push() 126 m_stack.append(Local<T>(*m_globalData, value)); in push() 128 m_stack[m_count] = value; in push() 137 Vector<Local<T>, inlineCapacity> m_stack; variable
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSGlobalData.h | 202 ? m_stack in stack() 279 StackBounds m_stack; variable
|
D | JSGlobalData.cpp | 179 m_stack = wtfThreadData().stack(); in JSGlobalData()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | SerializedScriptValue.cpp | 1118 void push(v8::Local<v8::Value> value) { m_stack.append(value); } in push() 1122 ASSERT(length <= m_stack.size()); in pop() 1123 m_stack.shrink(m_stack.size() - length); in pop() 1126 unsigned stackDepth() const { return m_stack.size(); } in stackDepth() 1130 ASSERT(index < m_stack.size()); in element() 1131 return m_stack[index]; in element() 1135 Vector<v8::Local<v8::Value> > m_stack; member in WebCore::__anoncc1e08680111::Deserializer
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext.cpp | 95 m_stack.append(m_state); in save() 105 if (m_stack.isEmpty()) { in restore() 109 m_state = m_stack.last(); in restore() 110 m_stack.removeLast(); in restore()
|
D | GraphicsContext.h | 587 Vector<GraphicsContextState> m_stack; variable
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.h | 210 return m_stack.recursionCheck() in emitNode() 223 if (m_stack.recursionCheck()) in emitNodeInConditionContext() 571 StackBounds m_stack; variable
|
D | BytecodeGenerator.cpp | 225 , m_stack(m_globalData->stack()) in BytecodeGenerator() 346 , m_stack(m_globalData->stack()) in BytecodeGenerator() 510 , m_stack(m_globalData->stack()) in BytecodeGenerator()
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | JSParser.cpp | 239 return m_stack.recursionCheck(); in canRecurse() 249 StackBounds m_stack; member in JSC::JSParser 621 , m_stack(globalData->stack()) in JSParser()
|