OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JSGlobalObject
(Results
26 - 50
of
89
) sorted by null
1
2
3
4
/external/webkit/JavaScriptCore/interpreter/
RegisterFile.h
93
class
JSGlobalObject
;
127
void setGlobalObject(
JSGlobalObject
* globalObject) { m_globalObject = globalObject; }
128
JSGlobalObject
* globalObject() { return m_globalObject; }
156
JSGlobalObject
* m_globalObject; // The global object whose vars are currently stored in the register file.
CallFrame.h
52
JSGlobalObject
* dynamicGlobalObject();
56
JSGlobalObject
* lexicalGlobalObject() const
/external/webkit/WebCore/bridge/objc/
objc_instance.h
43
static void setGlobalException(NSString*,
JSGlobalObject
* exceptionEnvironment = 0); // A null exceptionEnvironment means the exception should propogate to any execution environment.
objc_runtime.h
31
#include <runtime/
JSGlobalObject
.h>
100
static ObjectPrototype* createPrototype(ExecState*,
JSGlobalObject
* globalObject)
objc_utility.mm
33
#include <runtime/
JSGlobalObject
.h>
141
JSGlobalObject
*originGlobalObject = exec->dynamicGlobalObject();
144
JSGlobalObject
* globalObject = 0;
146
globalObject = static_cast<
JSGlobalObject
*>(asObject(value));
/external/webkit/JavaScriptCore/API/
JSBase.cpp
38
#include <runtime/
JSGlobalObject
.h>
52
JSGlobalObject
* globalObject = exec->dynamicGlobalObject();
JSCallbackConstructor.cpp
31
#include <runtime/
JSGlobalObject
.h>
JSCallbackFunction.cpp
35
#include <runtime/
JSGlobalObject
.h>
JSValueRef.cpp
34
#include <runtime/
JSGlobalObject
.h>
130
if (o->inherits(&JSCallbackObject<
JSGlobalObject
>::info))
131
return static_cast<JSCallbackObject<
JSGlobalObject
>*>(o)->inherits(jsClass);
/external/webkit/JavaScriptCore/runtime/
JSGlobalObject.cpp
31
#include "
JSGlobalObject
.h"
75
ASSERT_CLASS_FITS_IN_CELL(
JSGlobalObject
);
95
JSGlobalObject
::~
JSGlobalObject
()
109
JSGlobalObject
*& headObject = head();
127
void
JSGlobalObject
::init(JSObject* thisValue)
136
JSGlobalObject
::globalExec()->init(0, 0, d()->globalScopeChain.node(), CallFrame::noCaller(), 0, 0, 0);
138
if (
JSGlobalObject
*& headObject = head()) {
154
void
JSGlobalObject
::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
163
void
JSGlobalObject
::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attrib (…)
[
all
...]
Executable.cpp
73
JSGlobalObject
* globalObject = scopeChain.globalObject();
104
JSGlobalObject
* globalObject = scopeChain.globalObject();
125
JSGlobalObject
* globalObject = scopeChain.globalObject();
189
JSGlobalObject
* globalObject = scopeChain.globalObject();
215
JSGlobalObject
* globalObject = scopeChain.globalObject();
FunctionConstructor.cpp
27
#include "
JSGlobalObject
.h"
102
JSGlobalObject
* globalObject = exec->lexicalGlobalObject();
JSFunction.h
35
class
JSGlobalObject
;
/external/webkit/JavaScriptGlue/
JSUtils.h
40
#include <JavaScriptCore/
JSGlobalObject
.h>
/external/webkit/WebCore/inspector/
JavaScriptCallFrame.h
70
JSC::
JSGlobalObject
* dynamicGlobalObject() const;
JavaScriptDebugServer.h
43
class
JSGlobalObject
;
122
virtual void detach(JSC::
JSGlobalObject
*);
/external/webkit/WebKit/mac/WebView/
WebScriptDebugDelegate.mm
45
#import <runtime/
JSGlobalObject
.h>
238
JSGlobalObject
* globalObject = _private->debugger->globalObject();
240
JSGlobalObject
* globalObject = _private->debugger->globalObject();
WebScriptDebugger.mm
36
#import <JavaScriptCore/
JSGlobalObject
.h>
75
static WebFrame *toWebFrame(
JSGlobalObject
* globalObject)
81
WebScriptDebugger::WebScriptDebugger(
JSGlobalObject
* globalObject)
/external/webkit/WebCore/bindings/js/
JSWorkerContextCustom.cpp
69
if (
JSGlobalObject
::getOwnPropertySlot(exec, propertyName, slot))
77
if (
JSGlobalObject
::getOwnPropertyDescriptor(exec, propertyName, descriptor))
SerializedScriptValue.h
72
JSC::JSValue deserialize(JSC::ExecState*, JSC::
JSGlobalObject
*, bool mustCopy) const;
211
JSC::JSValue deserialize(JSC::ExecState* exec, JSC::
JSGlobalObject
* globalObject)
JSDOMGlobalObject.cpp
46
:
JSGlobalObject
(structure, data, thisValue)
ScheduledAction.cpp
88
void ScheduledAction::executeFunctionInContext(
JSGlobalObject
* globalObject, JSValue thisValue)
/external/webkit/WebCore/bridge/c/
c_utility.cpp
36
#include <runtime/
JSGlobalObject
.h>
97
JSGlobalObject
* globalObject = exec->dynamicGlobalObject();
/external/webkit/WebCore/bridge/jsc/
BridgeJSC.h
41
class
JSGlobalObject
;
/external/webkit/JavaScriptCore/
jsc.cpp
142
class GlobalObject : public
JSGlobalObject
{
151
:
JSGlobalObject
()
216
JSGlobalObject
* globalObject = exec->lexicalGlobalObject();
234
JSGlobalObject
* globalObject = exec->lexicalGlobalObject();
250
JSGlobalObject
* globalObject = exec->lexicalGlobalObject();
Completed in 1144 milliseconds
1
2
3
4