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

  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp 31 #include "CodeBlock.h"
83 CString CodeBlock::registerName(ExecState* exec, int r) const
141 void CodeBlock::printUnaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
149 void CodeBlock::printBinaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
157 void CodeBlock::printConditionalJump(ExecState* exec, const Vector<Instruction>::const_iterator&, Vector<Instruction>::const_iterator& it, int location, const char* op) const
164 void CodeBlock::printGetByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
173 void CodeBlock::printPutByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
279 void CodeBlock::printStructure(const char* name, const Instruction* vPC, int operand) const
285 void CodeBlock::printStructures(const Instruction* vPC) const
331 void CodeBlock::dump(ExecState* exec) cons
    [all...]
CodeBlock.h 53 // 0x40000000-0x7FFFFFFF Positive indices from 0x40000000 specify entries in the constant pool on the CodeBlock.
202 class CodeBlock {
206 CodeBlock(ScriptExecutable* ownerExecutable, CodeType, JSGlobalObject*, PassRefPtr<SourceProvider>, unsigned sourceOffset, SymbolTable* symbolTable, bool isConstructor);
212 virtual ~CodeBlock();
568 class GlobalCodeBlock : public CodeBlock {
571 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, &m_unsharedSymbolTable, false)
610 class FunctionCodeBlock : public CodeBlock {
613 // as we need to initialise the CodeBlock before we could initialise any RefPtr to hold the shared
617 : CodeBlock(ownerExecutable, codeType, globalObject, sourceProvider, sourceOffset, SharedSymbolTable::create().leakRef(), isConstructor)
628 CodeBlock* codeBlock = this->codeBlock()
    [all...]
  /external/giflib/
dgif_lib.c 645 GifByteType ** CodeBlock) {
657 return DGifGetCodeNext(GifFile, CodeBlock);
667 GifByteType ** CodeBlock) {
678 *CodeBlock = Private->Buf; /* Use private unused buffer. */
679 (*CodeBlock)[0] = Buf; /* Pascal strings notation (pos. 0 is len.). */
680 if (READ(GifFile, &((*CodeBlock)[1]), Buf) != Buf) {
685 *CodeBlock = NULL;
889 GifByteType *CodeBlock;
904 if (DGifGetCodeNext(GifFile, &CodeBlock) == GIF_ERROR)
906 } while (CodeBlock != NULL)
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 103 CodeBlock = -1,

Completed in 56 milliseconds