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

  /external/webkit/JavaScriptCore/runtime/
JSActivation.cpp 146 if (activation->d()->functionExecutable->usesArguments()) {
Executable.h 140 bool usesArguments() const { return m_features & ArgumentsFeature; }
Executable.cpp 263 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine());
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 375 void setUsesArguments(bool usesArguments) { m_usesArguments = usesArguments; }
376 bool usesArguments() const { return m_usesArguments; }
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 153 if ((m_codeType == FunctionCode && !m_codeBlock->needsFullScopeChain() && !m_codeBlock->usesArguments()) || m_codeType == EvalCode)
315 bool usesArguments = functionBody->usesArguments();
316 codeBlock->setUsesArguments(usesArguments);
317 if (usesArguments) {
330 if (usesArguments) {
464 if (m_codeBlock->usesArguments() && m_codeType == FunctionCode)
    [all...]
BytecodeGenerator.h 453 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine());
458 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->lineNo(), body->lastLine());
  /external/webkit/JavaScriptCore/parser/
Nodes.h     [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]

Completed in 60 milliseconds