HomeSort by relevance Sort by last modified time
    Searched refs:globalObject (Results 126 - 150 of 165) sorted by null

1 2 3 4 56 7

  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 417 inline JSObject* constructEmptyObject(ExecState* exec, JSGlobalObject* globalObject)
419 return new (exec) JSObject(globalObject->emptyObjectStructure());
427 inline JSArray* constructEmptyArray(ExecState* exec, JSGlobalObject* globalObject)
429 return new (exec) JSArray(globalObject->arrayStructure());
JSFunction.cpp 155 JSObject* prototype = new (exec) JSObject(scopeChain().globalObject()->emptyObjectStructure());
JSGlobalObject.cpp 120 if (registerFile.globalObject() == this) {
371 if (registerFile.globalObject() == this)
453 JSGlobalObject* lastGlobalObject = registerFile.globalObject();
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 129 ExecState *exec = root->globalObject()->globalExec();
  /external/webkit/WebKit/mac/WebView/
WebFramePrivate.h 100 - (NSString *)_stringByEvaluatingJavaScriptFromString:(NSString *)string withGlobalObject:(JSObjectRef)globalObject inScriptWorld:(WebScriptWorld *)world;
WebFrame.mm 276 // Calling ScriptController::globalObject() would create a window shell, and dispatch corresponding callbacks, which may be premature
282 JSGlobalObject* globalObject = scriptController->globalObject(debuggerWorld());
283 if (!globalObject)
287 ASSERT(_private->scriptDebugger == globalObject->debugger());
291 _private->scriptDebugger = new WebScriptDebugger(globalObject);
615 return String(result.toString(_private->coreFrame->script()->globalObject(mainThreadNormalWorld())->globalExec()));
    [all...]
  /external/webkit/WebCore/bindings/v8/
WorkerContextExecutionProxy.cpp 175 v8::Handle<v8::Object> globalObject = m_context->Global();
176 globalObject->Set(implicitProtoString, jsWorkerContext);
  /external/webkit/WebCore/bridge/qt/
qt_runtime.h 147 static FunctionPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
149 return globalObject->functionPrototype();
  /external/webkit/WebCore/dom/
make_names.pl 833 static JSNode* create${JSInterfaceName}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
836 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, $parameters{namespace}Element, element.get());
837 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, ${JSInterfaceName}, element.get());
844 static JSNode* create${JSInterfaceName}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
846 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, ${JSInterfaceName}, element.get());
933 JSNode* createJS$parameters{namespace}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
977 return createWrapperFunction(exec, globalObject, element);
978 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, $parameters{namespace}Element, element.get());
  /external/webkit/JavaScriptGlue/
JavaScriptGlue.cpp 279 JSGlobalObject* globalObject = ptr->GlobalObject();
280 result = (JSObjectRef)KJSValueToJSObject(globalObject, globalObject->globalExec());
298 result = (JSObjectRef)KJSValueToJSObject(completion.value(), ptr->GlobalObject()->globalExec());
  /external/webkit/JavaScriptCore/interpreter/
CallFrame.h 58 return scopeChain()->globalObject;
Interpreter.cpp 156 JSGlobalObject* globalObject = static_cast<JSGlobalObject*>(vPC[2].u.jsCell);
157 ASSERT(globalObject->isGlobalObject());
162 if (structure == globalObject->structure()) {
163 callFrame->r(dst) = JSValue(globalObject->getDirectOffset(offset));
169 PropertySlot slot(globalObject);
170 if (globalObject->getPropertySlot(callFrame, ident, slot)) {
172 if (slot.isCacheable() && !globalObject->structure()->isUncacheableDictionary() && slot.slotBase() == globalObject) {
175 globalObject->structure()->ref();
176 vPC[4] = globalObject->structure()
    [all...]
  /external/webkit/WebCore/bindings/js/
ScriptController.h 85 JSDOMWindow* globalObject(DOMWrapperWorld* world)
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 348 void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldId, JSObjectRef globalObject, JSStringRef script)
  /external/webkit/WebKit/win/Interfaces/
IWebFramePrivate.idl 98 [local] HRESULT stringByEvaluatingJavaScriptInScriptWorld([in] IWebScriptWorld*, [in] JSObjectRef globalObject, [in] BSTR script, [out, retval] BSTR* result);
  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm     [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 109 bool findScopedProperty(const Identifier&, int& index, size_t& depth, bool forWriting, JSObject*& globalObject);
294 RegisterID* emitGetScopedVar(RegisterID* dst, size_t skip, int index, JSValue globalObject);
295 RegisterID* emitPutScopedVar(size_t skip, int index, RegisterID* value, JSValue globalObject);
NodesCodegen.cpp 353 JSObject* globalObject = 0;
354 if (generator.findScopedProperty(m_ident, index, depth, false, globalObject) && index != missingSymbolMarker()) {
355 RefPtr<RegisterID> func = generator.emitGetScopedVar(generator.newTemporary(), depth, index, globalObject);
526 JSObject* globalObject = 0;
527 if (generator.findScopedProperty(m_ident, index, depth, true, globalObject) && index != missingSymbolMarker()) {
528 RefPtr<RegisterID> value = generator.emitGetScopedVar(generator.newTemporary(), depth, index, globalObject);
536 generator.emitPutScopedVar(depth, index, value.get(), globalObject);
712 JSObject* globalObject = 0;
713 if (generator.findScopedProperty(m_ident, index, depth, false, globalObject) && index != missingSymbolMarker()) {
714 RefPtr<RegisterID> propDst = generator.emitGetScopedVar(generator.tempDestination(dst), depth, index, globalObject);
    [all...]
  /external/webkit/JavaScriptCore/qt/api/
qscriptvalue_p.h 710 JSObjectRef globalObject = JSContextGetGlobalObject(context());
711 JSValueRef error = JSObjectGetProperty(context(), globalObject, QScriptConverter::toString(name), 0);
  /external/webkit/JavaScriptCore/jit/
JITOpcodes.cpp 541 JSGlobalObject* globalObject = static_cast<JSGlobalObject*>(currentInstruction[2].u.jsCell);
542 ASSERT(globalObject->isGlobalObject());
545 loadPtr(&globalObject->d()->registers, regT2);
554 JSGlobalObject* globalObject = static_cast<JSGlobalObject*>(currentInstruction[1].u.jsCell);
555 ASSERT(globalObject->isGlobalObject());
561 loadPtr(&globalObject->d()->registers, regT2);
687 void* globalObject = currentInstruction[2].u.jsCell;
694 move(ImmPtr(globalObject), regT0);
710 void* globalObject = currentInstruction[2].u.jsCell;
717 stubCall.addArgument(ImmPtr(globalObject));
    [all...]
JITStubs.cpp     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.h 232 void evaluateScriptInIsolatedWorld(unsigned worldId, JSObjectRef globalObject, JSStringRef script);
  /external/webkit/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.cpp 894 JSGlobalContextRef context = toGlobalRef(coreFrame->script()->globalObject(mainThreadNormalWorld())->globalExec());
895 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
  /external/webkit/WebKit/wx/
WebFrame.cpp 209 returnValue = wxString(result.toString(m_impl->frame->script()->globalObject(WebCore::mainThreadNormalWorld())->globalExec()).UTF8String().c_str(), wxConvUTF8);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 601 void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script)
618 [mainFrame _stringByEvaluatingJavaScriptFromString:scriptNS withGlobalObject:globalObject inScriptWorld:world];

Completed in 301 milliseconds

1 2 3 4 56 7