Searched refs:m_functionDecls (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.h422 unsigned size = m_functionDecls.size();
423 m_functionDecls.append(WriteBarrier<FunctionExecutable>());
424 m_functionDecls.last().set(m_globalObject->globalData(), m_ownerExecutable.get(), n);
427 FunctionExecutable* functionDecl(int index) { return m_functionDecls[index].get(); }
428 int numberOfFunctionDecls() { return m_functionDecls.size(); }
531 Vector<WriteBarrier<FunctionExecutable> > m_functionDecls; member in class:JSC::CodeBlock
H A DCodeBlock.cpp1468 for (size_t i = 0; i < m_functionDecls.size(); ++i)
1469 markStack.append(&m_functionDecls[i]);
1636 m_functionDecls.shrinkToFit();

Completed in 124 milliseconds