OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stringPrototype
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
StringObjectThatMasqueradesAsUndefined.h
36
createStructure(exec->globalData(), exec->lexicalGlobalObject()->
stringPrototype
()), string);
StringConstructor.cpp
28
#include "
StringPrototype
.h"
51
StringConstructor::StringConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure,
StringPrototype
*
stringPrototype
)
52
: InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec,
stringPrototype
->classInfo()->className))
55
putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype,
stringPrototype
, ReadOnly | DontEnum | DontDelete);
JSString.cpp
31
#include "
StringPrototype
.h"
278
slot.setValue(exec->lexicalGlobalObject()->
stringPrototype
());
283
for (JSValue prototype = exec->lexicalGlobalObject()->
stringPrototype
(); !prototype.isNull(); prototype = object->prototype()) {
315
descriptor.setDescriptor(exec->lexicalGlobalObject()->
stringPrototype
(), DontEnum);
JSGlobalObject.h
30
#include "
StringPrototype
.h"
85
WriteBarrier<
StringPrototype
> m_stringPrototype;
190
StringPrototype
*
stringPrototype
() const { return m_stringPrototype.get(); }
358
return exec->lexicalGlobalObject()->
stringPrototype
();
Completed in 63 milliseconds