Home
last modified time | relevance | path

Searched refs:booleanPrototype (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DBooleanConstructor.cpp31 …ructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, BooleanPrototype* booleanPrototype) in BooleanConstructor() argument
32 …: InternalFunction(&exec->globalData(), structure, Identifier(exec, booleanPrototype->classInfo()-… in BooleanConstructor()
34 …putDirectWithoutTransition(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelet… in BooleanConstructor()
DJSGlobalObject.h87 , booleanPrototype(0) in JSGlobalObjectData()
126 BooleanPrototype* booleanPrototype; member
210 BooleanPrototype* booleanPrototype() const { return d()->booleanPrototype; } in booleanPrototype() function
DJSGlobalObject.cpp233 …d()->booleanPrototype = new (exec) BooleanPrototype(exec, BooleanPrototype::createStructure(d()->o… in reset()
234 d()->booleanObjectStructure = BooleanObject::createStructure(d()->booleanPrototype); in reset()
265 …structor(exec, BooleanConstructor::createStructure(d()->functionPrototype), d()->booleanPrototype); in reset()
285 …d()->booleanPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, boole… in reset()
390 markIfNeeded(markStack, d()->booleanPrototype); in markChildren()
DJSValue.cpp101 return exec->lexicalGlobalObject()->booleanPrototype(); in synthesizePrototype()