HomeSort by relevance Sort by last modified time
    Searched refs:JSObjectWithGlobalObject (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
JSObjectWithGlobalObject.h 3 #include <JavaScriptCore/JSObjectWithGlobalObject.h>
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWrapper.h 25 #include <runtime/JSObjectWithGlobalObject.h>
29 class JSDOMWrapper : public JSC::JSObjectWithGlobalObject {
32 : JSObjectWithGlobalObject(globalObject, structure)
  /external/webkit/Source/JavaScriptCore/runtime/
JSObjectWithGlobalObject.cpp 27 #include "JSObjectWithGlobalObject.h"
33 JSObjectWithGlobalObject::JSObjectWithGlobalObject(JSGlobalObject* globalObject, Structure* structure)
44 JSObjectWithGlobalObject::JSObjectWithGlobalObject(JSGlobalData& globalData, JSGlobalObject* globalObject, Structure* structure)
JSObjectWithGlobalObject.h 35 class JSObjectWithGlobalObject : public JSNonFinalObject {
48 JSObjectWithGlobalObject(JSGlobalObject*, Structure*);
49 JSObjectWithGlobalObject(JSGlobalData&, JSGlobalObject*, Structure*);
51 JSObjectWithGlobalObject(VPtrStealingHackType)
NativeErrorPrototype.h 24 #include "JSObjectWithGlobalObject.h"
29 class NativeErrorPrototype : public JSObjectWithGlobalObject {
MathObject.h 24 #include "JSObjectWithGlobalObject.h"
28 class MathObject : public JSObjectWithGlobalObject {
InternalFunction.cpp 37 const ClassInfo InternalFunction::s_info = { "Function", &JSObjectWithGlobalObject::s_info, 0, 0 };
40 : JSObjectWithGlobalObject(VPtrStealingHack)
45 : JSObjectWithGlobalObject(globalObject, structure)
RegExpObject.h 24 #include "JSObjectWithGlobalObject.h"
29 class RegExpObject : public JSObjectWithGlobalObject {
31 typedef JSObjectWithGlobalObject Base;
67 static const unsigned StructureFlags = OverridesMarkChildren | OverridesGetOwnPropertySlot | JSObjectWithGlobalObject::StructureFlags;
JSONObject.h 29 #include "JSObjectWithGlobalObject.h"
35 class JSONObject : public JSObjectWithGlobalObject {
NativeErrorPrototype.cpp 35 : JSObjectWithGlobalObject(globalObject, structure)
InternalFunction.h 27 #include "JSObjectWithGlobalObject.h"
34 class InternalFunction : public JSObjectWithGlobalObject {
JSFunction.h 27 #include "JSObjectWithGlobalObject.h"
41 class JSFunction : public JSObjectWithGlobalObject {
45 typedef JSObjectWithGlobalObject Base;
RegExpObject.cpp 52 const ClassInfo RegExpObject::s_info = { "RegExp", &JSObjectWithGlobalObject::s_info, 0, ExecState::regExpTable };
65 : JSObjectWithGlobalObject(globalObject, structure)
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObject.cpp 35 ASSERT_CLASS_FITS_IN_CELL(JSCallbackObject<JSObjectWithGlobalObject>);
39 template <> const ClassInfo JSCallbackObject<JSObjectWithGlobalObject>::s_info = { "CallbackObject", &JSObjectWithGlobalObject::s_info, 0, 0 };
JSCallbackConstructor.h 30 #include <runtime/JSObjectWithGlobalObject.h>
34 class JSCallbackConstructor : public JSObjectWithGlobalObject {
JSCallbackConstructor.cpp 39 const ClassInfo JSCallbackConstructor::s_info = { "CallbackConstructor", &JSObjectWithGlobalObject::s_info, 0, 0 };
42 : JSObjectWithGlobalObject(globalObject, structure)
JSObjectRef.cpp 84 JSCallbackObject<JSObjectWithGlobalObject>* object = new (exec) JSCallbackObject<JSObjectWithGlobalObject>(exec, exec->lexicalGlobalObject(), exec->lexicalGlobalObject()->callbackObjectStructure(), jsClass, data);
345 if (jsObject->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info))
346 return static_cast<JSCallbackObject<JSObjectWithGlobalObject>*>(jsObject)->getPrivate();
359 if (jsObject->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info)) {
360 static_cast<JSCallbackObject<JSObjectWithGlobalObject>*>(jsObject)->setPrivate(data);
376 else if (jsObject->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info))
377 result = static_cast<JSCallbackObject<JSObjectWithGlobalObject>*>(jsObject)->getPrivateProperty(name);
392 if (jsObject->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info)) {
393 static_cast<JSCallbackObject<JSObjectWithGlobalObject>*>(jsObject)->setPrivateProperty(exec->globalData(), name, jsValue)
    [all...]
JSWeakObjectMapRefPrivate.cpp 60 ASSERT(obj->inherits(&JSCallbackObject<JSGlobalObject>::s_info) || obj->inherits(&JSCallbackObject<JSObjectWithGlobalObject>::s_info));
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 31 #include <runtime/JSObjectWithGlobalObject.h>
36 class RuntimeObject : public JSObjectWithGlobalObject {
70 static const unsigned StructureFlags = OverridesGetOwnPropertySlot | OverridesGetPropertyNames | JSObjectWithGlobalObject::StructureFlags;
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.h 28 #include <runtime/JSObjectWithGlobalObject.h>
61 class JSTestInterfacePrototype : public JSC::JSObjectWithGlobalObject {
62 typedef JSC::JSObjectWithGlobalObject Base;
70 JSTestInterfacePrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
JSTestMediaQueryListListener.h 26 #include <runtime/JSObjectWithGlobalObject.h>
59 class JSTestMediaQueryListListenerPrototype : public JSC::JSObjectWithGlobalObject {
60 typedef JSC::JSObjectWithGlobalObject Base;
70 JSTestMediaQueryListListenerPrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
JSTestSerializedScriptValueInterface.h 28 #include <runtime/JSObjectWithGlobalObject.h>
61 class JSTestSerializedScriptValueInterfacePrototype : public JSC::JSObjectWithGlobalObject {
62 typedef JSC::JSObjectWithGlobalObject Base;
70 JSTestSerializedScriptValueInterfacePrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
JSTestObj.h 26 #include <runtime/JSObjectWithGlobalObject.h>
68 class JSTestObjPrototype : public JSC::JSObjectWithGlobalObject {
69 typedef JSC::JSObjectWithGlobalObject Base;
79 JSTestObjPrototype(JSC::JSGlobalObject* globalObject, NonNullPassRefPtr<JSC::Structure> structure) : JSC::JSObjectWithGlobalObject(globalObject, structure) { }
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.h 29 #include <JavaScriptCore/JSObjectWithGlobalObject.h>
40 class JSNPObject : public JSC::JSObjectWithGlobalObject {
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 32 #include <runtime/JSObjectWithGlobalObject.h>
93 class ObjcFallbackObjectImp : public JSObjectWithGlobalObject {

Completed in 405 milliseconds

1 2