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

  /external/webkit/JavaScriptCore/runtime/
BooleanConstructor.cpp 24 #include "BooleanPrototype.h"
31 BooleanConstructor::BooleanConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, BooleanPrototype* booleanPrototype)
32 : InternalFunction(&exec->globalData(), structure, Identifier(exec, booleanPrototype->classInfo()->className))
34 putDirectWithoutTransition(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.h 37 class BooleanPrototype;
87 , booleanPrototype(0)
126 BooleanPrototype* booleanPrototype;
210 BooleanPrototype* booleanPrototype() const { return d()->booleanPrototype; }
JSValue.cpp 27 #include "BooleanPrototype.h"
101 return exec->lexicalGlobalObject()->booleanPrototype();
JSGlobalObject.cpp 41 #include "BooleanPrototype.h"
233 d()->booleanPrototype = new (exec) BooleanPrototype(exec, BooleanPrototype::createStructure(d()->objectPrototype), d()->prototypeFunctionStructure.get());
234 d()->booleanObjectStructure = BooleanObject::createStructure(d()->booleanPrototype);
265 JSCell* booleanConstructor = new (exec) BooleanConstructor(exec, BooleanConstructor::createStructure(d()->functionPrototype), d()->booleanPrototype);
285 d()->booleanPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, booleanConstructor, DontEnum);
390 markIfNeeded(markStack, d()->booleanPrototype);

Completed in 36 milliseconds