Lines Matching refs:JSC
40 class JSNPObject : public JSC::JSObjectWithGlobalObject {
42 JSNPObject(JSC::JSGlobalObject*, NPRuntimeObjectMap* objectMap, NPObject* npObject);
47 JSC::JSValue callMethod(JSC::ExecState*, NPIdentifier methodName);
48 JSC::JSValue callObject(JSC::ExecState*);
49 JSC::JSValue callConstructor(JSC::ExecState*);
51 static const JSC::ClassInfo s_info;
56 …static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::OverridesGetPropert…
58 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) in createStructure()
60 …return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags… in createStructure()
63 virtual JSC::CallType getCallData(JSC::CallData&);
64 virtual JSC::ConstructType getConstructData(JSC::ConstructData&);
66 …virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::Propert…
67 …virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::P…
68 …virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPrope…
70 …virtual void getOwnPropertyNames(JSC::ExecState*, JSC::PropertyNameArray&, JSC::EnumerationMode mo…
72 static JSC::JSValue propertyGetter(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
73 static JSC::JSValue methodGetter(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
74 static JSC::JSObject* throwInvalidAccessError(JSC::ExecState*);