Searched defs:globalObject (Results 1 - 25 of 241) sorted by path

12345678910

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSBase.cpp57 JSGlobalObject* globalObject = exec->dynamicGlobalObject(); local
H A DJSCallbackConstructor.cpp42 JSCallbackConstructor::JSCallbackConstructor(JSGlobalObject* globalObject, Structure* structure, JSClassRef jsClass, JSObjectCallAsConstructorCallback callback) argument
49 void JSCallbackConstructor::finishCreation(JSGlobalObject* globalObject, JSClassRef jsClass) argument
H A DJSCallbackConstructor.h38 static JSCallbackConstructor* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSClassRef classRef, JSObjectCallAsConstructorCallback callback) argument
51 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
H A DJSCallbackFunction.cpp47 JSCallbackFunction::JSCallbackFunction(JSGlobalObject* globalObject, Structure* structure, JSObjectCallAsFunctionCallback callback) argument
59 JSCallbackFunction* JSCallbackFunction::create(ExecState* exec, JSGlobalObject* globalObject, JSObjectCallAsFunctionCallback callback, const String& name) argument
H A DJSCallbackFunction.h48 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
H A DJSCallbackObject.cpp53 Structure* JSCallbackObject<JSDestructibleObject>::createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
59 Structure* JSCallbackObject<JSGlobalObject>::createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
H A DJSCallbackObject.h129 static JSCallbackObject* create(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSClassRef classRef, void* data) argument
H A DJSContextRef.cpp137 JSGlobalObject* globalObject = JSGlobalObject::create(*vm, JSGlobalObject::createStructure(*vm, jsNull())); local
141 JSGlobalObject* globalObject = JSCallbackObject<JSGlobalObject>::create(*vm, globalObjectClass, JSCallbackObject<JSGlobalObject>::createStructure(*vm, 0, jsNull())); local
H A DObjCCallbackFunction.h52 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) argument
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A Dminidom.c46 JSObjectRef globalObject = JSContextGetGlobalObject(context); local
H A Dtestapi.c908 JSObjectRef globalObject = JSContextGetGlobalObject(context); local
1161 JSObjectRef globalObject = JSContextGetGlobalObject(context); local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCodeBlock.cpp1636 CodeBlock::CodeBlock(ScriptExecutable* ownerExecutable, UnlinkedCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, unsigned baseScopeDepth, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative) argument
[all...]
H A DCodeBlock.h865 JSGlobalObject* globalObject() { return m_globalObject.get(); } function in class:JSC::CodeBlock
1319 GlobalCodeBlock(ScriptExecutable* ownerExecutable, UnlinkedCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, unsigned baseScopeDepth, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative) argument
1332 ProgramCodeBlock(ProgramExecutable* ownerExecutable, UnlinkedProgramCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative) argument
1354 EvalCodeBlock(EvalExecutable* ownerExecutable, UnlinkedEvalCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, int baseScopeDepth, PassOwnPtr<CodeBlock> alternative) argument
1382 FunctionCodeBlock(FunctionExecutable* ownerExecutable, UnlinkedFunctionCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative = nullptr) argument
H A DExecutionCounter.h49 static T clippedThreshold(JSGlobalObject* globalObject, T threshold) argument
H A DPutByIdStatus.cpp142 PutByIdStatus PutByIdStatus::computeFor(VM& vm, JSGlobalObject* globalObject, Structure* structure, Identifier& ident, bool isDirect) argument
H A DSpecialPointer.cpp34 void* actualPointerFor(JSGlobalObject* globalObject, Special::Pointer pointer) argument
H A DUnlinkedCodeBlock.h181 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
635 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
677 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
706 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue proto) argument
/macosx-10.9.5/JavaScriptCore-7537.78.1/debugger/
H A DDebugger.cpp100 void Debugger::attach(JSGlobalObject* globalObject) argument
107 void Debugger::detach(JSGlobalObject* globalObject) argument
126 evaluateInGlobalCallFrame(const String& script, JSValue& exception, JSGlobalObject* globalObject) argument
[all...]
H A DDebuggerActivation.h56 static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) argument
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGOperations.cpp1255 EncodedJSValue DFG_OPERATION operationResolveGlobal(ExecState* exec, ResolveOperation* resolveOperation, JSGlobalObject* globalObject, Identifier* propertyName) argument
H A DDFGSpeculativeJIT32_64.cpp2571 JSGlobalObject* globalObject = m_jit.globalObjectFor(node->codeOrigin); local
3385 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
3555 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
3630 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
[all...]
H A DDFGSpeculativeJIT64.cpp2474 JSGlobalObject* globalObject = m_jit.globalObjectFor(node->codeOrigin); local
3293 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
3466 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
3538 JSGlobalObject* globalObject = m_jit.graph().globalObjectFor(node->codeOrigin); local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.cpp713 JSGlobalObject* globalObject = 0; local
879 JSGlobalObject* globalObject = scope->globalObject(); local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITOpcodes.cpp1215 JSGlobalObject* globalObject = m_codeBlock->globalObject(); local
1325 JSGlobalObject* globalObject = m_codeBlock->globalObject(); local
[all...]
H A DJITOpcodes32_64.cpp1319 JSGlobalObject* globalObject = m_codeBlock->globalObject(); local
1342 JSGlobalObject* globalObject = m_codeBlock->globalObject(); local
[all...]

Completed in 383 milliseconds

12345678910