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

  /external/webkit/Source/JavaScriptCore/runtime/
JSWrapperObject.cpp 23 #include "JSWrapperObject.h"
27 ASSERT_CLASS_FITS_IN_CELL(JSWrapperObject);
29 void JSWrapperObject::markChildren(MarkStack& markStack)
BooleanObject.cpp 28 const ClassInfo BooleanObject::s_info = { "Boolean", &JSWrapperObject::s_info, 0, 0 };
31 : JSWrapperObject(globalData, structure)
JSWrapperObject.h 31 class JSWrapperObject : public JSNonFinalObject {
33 explicit JSWrapperObject(JSGlobalData&, Structure*);
53 inline JSWrapperObject::JSWrapperObject(JSGlobalData& globalData, Structure* structure)
58 inline JSValue JSWrapperObject::internalValue() const
63 inline void JSWrapperObject::setInternalValue(JSGlobalData& globalData, JSValue value)
NumberObject.cpp 32 const ClassInfo NumberObject::s_info = { "Number", &JSWrapperObject::s_info, 0, 0 };
35 : JSWrapperObject(globalData, structure)
NumberObject.h 24 #include "JSWrapperObject.h"
28 class NumberObject : public JSWrapperObject {
DateInstance.cpp 35 const ClassInfo DateInstance::s_info = {"Date", &JSWrapperObject::s_info, 0, 0};
38 : JSWrapperObject(exec->globalData(), structure)
45 : JSWrapperObject(exec->globalData(), structure)
StringObject.h 24 #include "JSWrapperObject.h"
29 class StringObject : public JSWrapperObject {
46 JSString* internalValue() const { return asString(JSWrapperObject::internalValue());}
54 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | JSWrapperObject::StructureFlags;
BooleanObject.h 24 #include "JSWrapperObject.h"
28 class BooleanObject : public JSWrapperObject {
StringObject.cpp 30 const ClassInfo StringObject::s_info = { "String", &JSWrapperObject::s_info, 0, 0 };
33 : JSWrapperObject(exec->globalData(), structure)
40 : JSWrapperObject(globalData, structure)
47 : JSWrapperObject(exec->globalData(), structure)
DateInstance.h 24 #include "JSWrapperObject.h"
32 class DateInstance : public JSWrapperObject {

Completed in 2263 milliseconds