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

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
StringPrototype.h 3 #include <JavaScriptCore/StringPrototype.h>
  /external/webkit/Source/JavaScriptCore/runtime/
StringConstructor.h 28 class StringPrototype;
32 StringConstructor(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure, StringPrototype*);
StringPrototype.h 30 class StringPrototype : public StringObject {
32 StringPrototype(ExecState*, JSGlobalObject*, Structure*);
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);
StringPrototype.cpp 23 #include "StringPrototype.h"
47 ASSERT_CLASS_FITS_IN_CELL(StringPrototype);
84 #include "StringPrototype.lut.h"
88 const ClassInfo StringPrototype::s_info = { "String", &StringObject::s_info, 0, ExecState::stringTable };
90 /* Source for StringPrototype.lut.h
134 StringPrototype::StringPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure)
144 bool StringPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
149 bool StringPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
    [all...]
JSGlobalObject.h 30 #include "StringPrototype.h"
85 WriteBarrier<StringPrototype> m_stringPrototype;
190 StringPrototype* stringPrototype() const { return m_stringPrototype.get(); }
358 return exec->lexicalGlobalObject()->stringPrototype();
JSGlobalObject.cpp 68 #include "StringPrototype.h"
194 m_stringPrototype.set(exec->globalData(), this, new (exec) StringPrototype(exec, this, StringPrototype::createStructure(exec->globalData(), m_objectPrototype.get())));
  /external/webkit/Source/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp 34 #include <runtime/StringPrototype.h>

Completed in 206 milliseconds