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

  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 41 class FunctionCodeBlock;
316 FunctionCodeBlock& generatedBytecode()
339 FunctionCodeBlock& generatedBytecodeForCall()
360 FunctionCodeBlock& generatedBytecodeForConstruct()
390 OwnPtr<FunctionCodeBlock> m_codeBlockForCall;
391 OwnPtr<FunctionCodeBlock> m_codeBlockForConstruct;
Executable.cpp 248 m_codeBlockForCall = adoptPtr(new FunctionCodeBlock(this, FunctionCode, globalObject, source().provider(), source().startOffset(), false));
296 m_codeBlockForConstruct = adoptPtr(new FunctionCodeBlock(this, FunctionCode, globalObject, source().provider(), source().startOffset(), true));
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 610 class FunctionCodeBlock : public CodeBlock {
616 FunctionCodeBlock(FunctionExecutable* ownerExecutable, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, bool isConstructor)
620 ~FunctionCodeBlock()

Completed in 84 milliseconds