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

  /external/webkit/Source/JavaScriptCore/heap/
Local.h 114 return m_stack[m_count - 1].get();
120 return m_stack[--m_count].get();
125 if (m_count == m_stack.size())
126 m_stack.append(Local<T>(*m_globalData, value));
128 m_stack[m_count] = value;
137 Vector<Local<T>, inlineCapacity> m_stack; member in class:JSC::LocalStack
  /external/apache-xml/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/Source/JavaScriptCore/runtime/
JSGlobalData.h 202 ? m_stack
279 StackBounds m_stack; member in class:JSC::JSGlobalData
JSGlobalData.cpp 179 m_stack = wtfThreadData().stack();
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 1118 void push(v8::Local<v8::Value> value) { m_stack.append(value); }
1122 ASSERT(length <= m_stack.size())
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 210 return m_stack.recursionCheck()
223 if (m_stack.recursionCheck())
571 StackBounds m_stack; member in class:JSC::BytecodeGenerator
BytecodeGenerator.cpp 225 , m_stack(m_globalData->stack())
346 , m_stack(m_globalData->stack())
510 , m_stack(m_globalData->stack())
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 95 m_stack.append(m_state);
105 if (m_stack.isEmpty()) {
109 m_state = m_stack.last();
110 m_stack.removeLast();
GraphicsContext.h 587 Vector<GraphicsContextState> m_stack; member in class:WebCore::GraphicsContext
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 239 return m_stack.recursionCheck();
249 StackBounds m_stack; variable
621 , m_stack(globalData->stack())
    [all...]

Completed in 268 milliseconds