Searched refs:m_stack (Results 1 – 3 of 3) sorted by relevance
377 Object[] m_stack = new Object[max]; field in NamespaceMappings.Stack383 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 …]
181 Vector<Entry> m_stack; member in WebCore::TimelineRecordStack1256 m_stack.append(Entry(record)); in addScopedRecord()1261 if (m_stack.isEmpty()) in closeScopedRecord()1263 Entry last = m_stack.last(); in closeScopedRecord()1264 m_stack.removeLast(); in closeScopedRecord()1273 if (m_stack.isEmpty()) in addInstantRecord()1276 m_stack.last().children->pushObject(record); in addInstantRecord()1283 …return m_stack.isEmpty() || (m_stack.last().record->getString("type", &lastRecordType) && type == … in isOpenRecordOfType()
2209 void push(v8::Local<v8::Value> value) { m_stack.append(value); } in push()2213 ASSERT(length <= m_stack.size()); in pop()2214 m_stack.shrink(m_stack.size() - length); in pop()2217 unsigned stackDepth() const { return m_stack.size(); } in stackDepth()2221 ASSERT_WITH_SECURITY_IMPLICATION(index < m_stack.size()); in element()2222 return m_stack[index]; in element()2245 Vector<v8::Local<v8::Value> > m_stack; member in WebCore::__anon7aa460ac0111::Deserializer