Home
last modified time | relevance | path

Searched refs:JSGlobalObject (Results 1 – 25 of 96) sorted by relevance

1234

/external/webkit/JavaScriptCore/runtime/
DJSGlobalObject.h56 class JSGlobalObject : public JSVariableObject {
100 JSGlobalObject* next;
101 JSGlobalObject* prev;
161 explicit JSGlobalObject() in JSGlobalObject() function
162 …: JSVariableObject(JSGlobalObject::createStructure(jsNull()), new JSGlobalObjectData(destroyJSGlob… in JSGlobalObject()
168JSGlobalObject(NonNullPassRefPtr<Structure> structure, JSGlobalObjectData* data, JSObject* thisVal… in JSGlobalObject() function
175 virtual ~JSGlobalObject();
189 JSGlobalObject*& head() { return d()->globalData->head; } in head()
190 JSGlobalObject* next() { return d()->next; } in next()
254 virtual bool allowsAccessFrom(const JSGlobalObject*) const { return true; } in allowsAccessFrom() argument
[all …]
DJSGlobalObject.cpp75 ASSERT_CLASS_FITS_IN_CELL(JSGlobalObject);
95 JSGlobalObject::~JSGlobalObject() in ~JSGlobalObject()
109 JSGlobalObject*& headObject = head(); in ~JSGlobalObject()
127 void JSGlobalObject::init(JSObject* thisValue) in init()
136JSGlobalObject::globalExec()->init(0, 0, d()->globalScopeChain.node(), CallFrame::noCaller(), 0, 0… in init()
138 if (JSGlobalObject*& headObject = head()) { in init()
154 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropert… in put()
163 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue val… in putWithAttributes()
180 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getter… in defineGetter()
187 void JSGlobalObject::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setter… in defineSetter()
[all …]
DGlobalEvalFunction.h31 class JSGlobalObject; variable
35 …llPassRefPtr<Structure>, int len, const Identifier&, NativeFunction, JSGlobalObject* expectedThisO…
36 JSGlobalObject* cachedGlobalObject() const { return m_cachedGlobalObject; } in cachedGlobalObject()
49 JSGlobalObject* m_cachedGlobalObject;
DScopeChain.h29 class JSGlobalObject; variable
36 …de(ScopeChainNode* next, JSObject* object, JSGlobalData* globalData, JSGlobalObject* globalObject,… in ScopeChainNode()
64 JSGlobalObject* globalObject;
167 …ScopeChain(JSObject* o, JSGlobalData* globalData, JSGlobalObject* globalObject, JSObject* globalTh… in ScopeChain()
207 JSGlobalObject* globalObject() const { return m_node->globalObject; } in globalObject()
DJSGlobalData.h55 class JSGlobalObject; variable
169 JSGlobalObject* head;
170 JSGlobalObject* dynamicGlobalObject;
DExecutable.cpp73 JSGlobalObject* globalObject = scopeChain.globalObject(); in compile()
104 JSGlobalObject* globalObject = scopeChain.globalObject(); in compile()
125 JSGlobalObject* globalObject = scopeChain.globalObject(); in compile()
189 JSGlobalObject* globalObject = scopeChain.globalObject(); in reparseExceptionInfo()
215 JSGlobalObject* globalObject = scopeChain.globalObject(); in reparseExceptionInfo()
/external/webkit/WebCore/bridge/
Druntime_root.h43 class JSGlobalObject; variable
53 extern RootObject* findRootObject(JSGlobalObject*);
61 static PassRefPtr<RootObject> create(const void* nativeHandle, JSGlobalObject*);
71 JSGlobalObject* globalObject() const;
76 RootObject(const void* nativeHandle, JSGlobalObject*);
81 ProtectedPtr<JSGlobalObject> m_globalObject;
Druntime_root.cpp64 RootObject* findRootObject(JSGlobalObject* globalObject) in findRootObject()
74 PassRefPtr<RootObject> RootObject::create(const void* nativeHandle, JSGlobalObject* globalObject) in create()
79 RootObject::RootObject(const void* nativeHandle, JSGlobalObject* globalObject) in RootObject()
153 JSGlobalObject* RootObject::globalObject() const in globalObject()
DNP_jsobject.cpp126 ProtectedPtr<JSGlobalObject> globalObject = rootObject->globalObject(); in _NPN_InvokeDefault()
176 ProtectedPtr<JSGlobalObject> globalObject = rootObject->globalObject(); in _NPN_Invoke()
210 ProtectedPtr<JSGlobalObject> globalObject = rootObject->globalObject(); in _NPN_Evaluate()
450 ProtectedPtr<JSGlobalObject> globalObject = rootObject->globalObject(); in _NPN_Construct()
/external/webkit/JavaScriptCore/debugger/
DDebugger.h32 class JSGlobalObject; variable
41 void attach(JSGlobalObject*);
42 virtual void detach(JSGlobalObject*);
57 HashSet<JSGlobalObject*> m_globalObjects;
61 JSValue evaluateInGlobalCallFrame(const UString&, JSValue& exception, JSGlobalObject*);
DDebugger.cpp37 HashSet<JSGlobalObject*>::iterator end = m_globalObjects.end(); in ~Debugger()
38 for (HashSet<JSGlobalObject*>::iterator it = m_globalObjects.begin(); it != end; ++it) in ~Debugger()
42 void Debugger::attach(JSGlobalObject* globalObject) in attach()
49 void Debugger::detach(JSGlobalObject* globalObject) in detach()
87 ExecState* exec = function->scope().globalObject()->JSGlobalObject::globalExec(); in recompileAllJSFunctions()
100 JSValue evaluateInGlobalCallFrame(const UString& script, JSValue& exception, JSGlobalObject* global… in evaluateInGlobalCallFrame()
/external/webkit/JavaScriptGlue/
DJSRun.h35 class JSGlueGlobalObject : public JSGlobalObject {
55 Data* d() const { return static_cast<Data*>(JSGlobalObject::d()); } in d()
64 JSGlobalObject* GlobalObject() const;
70 ProtectedPtr<JSGlobalObject> fGlobalObject;
DJSRun.cpp37 : JSGlobalObject(structure, new Data, this) in JSGlueGlobalObject()
70 JSGlobalObject* JSRun::GlobalObject() const in GlobalObject()
/external/webkit/WebCore/bindings/js/
DJSDOMWindowCustom.h28 inline JSDOMWindow* asJSDOMWindow(JSC::JSGlobalObject* globalObject) in asJSDOMWindow()
33 inline const JSDOMWindow* asJSDOMWindow(const JSC::JSGlobalObject* globalObject) in asJSDOMWindow()
38 inline bool JSDOMWindowBase::allowsAccessFrom(const JSGlobalObject* other) const in allowsAccessFrom()
67 ALWAYS_INLINE bool JSDOMWindowBase::allowsAccessFromPrivate(const JSGlobalObject* other) const in allowsAccessFromPrivate()
DJSDOMWindowBase.h71 virtual bool allowsAccessFrom(const JSC::JSGlobalObject*) const;
86 bool allowsAccessFromPrivate(const JSC::JSGlobalObject*) const;
87 String crossDomainAccessErrorMessage(const JSC::JSGlobalObject*) const;
DJSDOMGlobalObject.h44 class JSDOMGlobalObject : public JSC::JSGlobalObject {
45 typedef JSC::JSGlobalObject Base;
74 struct JSDOMGlobalObjectData : public JSC::JSGlobalObject::JSGlobalObjectData {
DScheduledAction.h30 class JSGlobalObject; variable
57 void executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue thisValue);
DJSWorkerContextCustom.cpp69 if (JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot)) in getOwnPropertySlotDelegate()
77 if (JSGlobalObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)) in getOwnPropertyDescriptorDelegate()
/external/webkit/WebKit/mac/WebView/
DWebScriptDebugger.h40 class JSGlobalObject; variable
52 WebScriptDebugger(JSC::JSGlobalObject*);
65 JSC::JSGlobalObject* globalObject() const { return m_globalObject.get(); } in globalObject()
72 JSC::ProtectedPtr<JSC::JSGlobalObject> m_globalObject;
/external/webkit/JavaScriptCore/API/
DJSContextRef.cpp96 JSGlobalObject* globalObject = new (globalData.get()) JSGlobalObject;
100JSGlobalObject* globalObject = new (globalData.get()) JSCallbackObject<JSGlobalObject>(globalObjec…
DJSCallbackObject.cpp35 ASSERT_CLASS_FITS_IN_CELL(JSCallbackObject<JSGlobalObject>);
39 template <> const ClassInfo JSCallbackObject<JSGlobalObject>::info = { "CallbackGlobalObject", 0, 0…
/external/webkit/JavaScriptCore/interpreter/
DRegisterFile.h93 class JSGlobalObject; variable
127 void setGlobalObject(JSGlobalObject* globalObject) { m_globalObject = globalObject; } in setGlobalObject()
128 JSGlobalObject* globalObject() { return m_globalObject; } in globalObject()
156JSGlobalObject* m_globalObject; // The global object whose vars are currently stored in the regist…
/external/webkit/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore.def27 ??1JSGlobalObject@JSC@@UAE@XZ
34 ??2JSGlobalObject@JSC@@SAPAXIPAVJSGlobalData@1@@Z
94 ?defineGetter@JSGlobalObject@JSC@@UAEXPAVExecState@2@ABVIdentifier@2@PAVJSObject@2@I@Z
97 ?defineSetter@JSGlobalObject@JSC@@UAEXPAVExecState@2@ABVIdentifier@2@PAVJSObject@2@I@Z
112 ?destroyJSGlobalObjectData@JSGlobalObject@JSC@@CAXPAX@Z
164 ?globalExec@JSGlobalObject@JSC@@UAEPAVExecState@2@XZ
172 ?init@JSGlobalObject@JSC@@AAEXPAVJSObject@2@@Z
180 ?isDynamicScope@JSGlobalObject@JSC@@UBE_NXZ
196 ?markChildren@JSGlobalObject@JSC@@UAEXAAVMarkStack@2@@Z
215 ?put@JSGlobalObject@JSC@@UAEXPAVExecState@2@ABVIdentifier@2@VJSValue@2@AAVPutPropertySlot@2@@Z
[all …]
/external/webkit/JavaScriptCore/
Djsc.cpp142 class GlobalObject : public JSGlobalObject {
151 : JSGlobalObject() in GlobalObject()
216 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); in functionRun()
234 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); in functionLoad()
250 JSGlobalObject* globalObject = exec->lexicalGlobalObject(); in functionCheckSyntax()
/external/webkit/WebCore/inspector/
DJavaScriptDebugServer.h43 class JSGlobalObject; variable
122 virtual void detach(JSC::JSGlobalObject*);

1234