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

  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 263 return (m_codeType != FunctionCode || m_codeBlock->needsFullScopeChain() || rightHasAssignments) && !rightIsPure;
397 CodeType codeType() const { return m_codeType; }
503 bool shouldOptimizeLocals() { return (m_codeType != EvalCode) && !m_dynamicScopeDepth; }
504 bool canOptimizeNonLocals() { return (m_codeType == FunctionCode) && !m_dynamicScopeDepth && !m_codeBlock->usesEval(); }
538 CodeType m_codeType;
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 330 CodeType codeType() const { return m_codeType; }
459 SharedSymbolTable* sharedSymbolTable() { ASSERT(m_codeType == FunctionCode); return static_cast<SharedSymbolTable*>(m_symbolTable); }
509 CodeType m_codeType;

Completed in 97 milliseconds