Home
last modified time | relevance | path

Searched refs:stringPrototype (Results 1 – 5 of 5) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DStringConstructor.cpp49 …fPtr<Structure> structure, Structure* prototypeFunctionStructure, StringPrototype* stringPrototype) in StringConstructor() argument
50 …: InternalFunction(&exec->globalData(), structure, Identifier(exec, stringPrototype->classInfo()->… in StringConstructor()
53 …putDirectWithoutTransition(exec->propertyNames().prototype, stringPrototype, ReadOnly | DontEnum |… in StringConstructor()
DJSGlobalObject.h74 , stringPrototype(0) in JSGlobalObjectData()
112 StringPrototype* stringPrototype; member
193 StringPrototype* stringPrototype() const { return d()->stringPrototype; } in stringPrototype() function
342 return exec->lexicalGlobalObject()->stringPrototype(); in prototypeForLookup()
DJSGlobalObject.cpp222 …d()->stringPrototype = new (exec) StringPrototype(exec, StringPrototype::createStructure(d()->obje… in reset()
223 d()->stringObjectStructure = StringObject::createStructure(d()->stringPrototype); in reset()
254 …ateStructure(d()->functionPrototype), d()->prototypeFunctionStructure.get(), d()->stringPrototype); in reset()
276 …d()->stringPrototype->putDirectWithoutTransition(exec->propertyNames().constructor, stringConstruc… in reset()
389 markIfNeeded(d()->stringPrototype); in mark()
DStringObjectThatMasqueradesAsUndefined.h36 createStructure(exec->lexicalGlobalObject()->stringPrototype()), string); in create()
DJSString.cpp93 …for (JSValuePtr prototype = exec->lexicalGlobalObject()->stringPrototype(); !prototype.isNull(); p… in getOwnPropertySlot()