HomeSort by relevance Sort by last modified time
    Searched refs:windowObject (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
GCController.cpp 70 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
72 setProperty(context, windowObject, "GCController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
GCController.h 39 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
EventSendingController.h 41 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
EventSendingController.cpp 203 void EventSendingController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
205 setProperty(context, windowObject, "eventSender", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
LayoutTestController.h 55 void makeWindowObject(JSContextRef, JSObjectRef windowObject, JSValueRef* exception);
LayoutTestController.cpp 384 void LayoutTestController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
386 setProperty(context, windowObject, "layoutTestController", this, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
  /external/webkit/Tools/DumpRenderTree/
GCController.h 39 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
AccessibilityController.h 43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
GCController.cpp 74 void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
82 JSObjectSetProperty(context, windowObject, gcControllerStr.get(), gcControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
AccessibilityController.cpp 48 void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception)
56 JSObjectSetProperty(context, windowObject, accessibilityControllerStr.get(), accessibilityControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception);
  /frameworks/base/tests/BrowserTestPlugin/jni/event/
EventPlugin.cpp 108 NPObject* windowObject = NULL;
109 browser->getvalue(inst(), NPNVWindowNPObject, &windowObject);
111 if (!windowObject)
134 if (!browser->evaluate(inst(), windowObject, &script, &scriptVariant))
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.cpp 39 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message)
42 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
65 static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...)
73 pluginLogWithWindowObject(windowObject, instance, message);
81 NPObject* windowObject = 0;
82 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
88 pluginLogWithWindowObject(windowObject, instance, message);
89 browser->releaseobject(windowObject);
876 NPObject* windowObject = 0;
877 browser->getvalue(npp, NPNVWindowNPObject, &windowObject);
    [all...]
main.cpp 411 NPObject* windowObject = 0;
412 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
416 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) {
429 browser->releaseobject(windowObject);
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 410 NPObject* windowObject = NULL;
411 browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
413 if (!windowObject)
419 browser->getproperty(instance, windowObject, topIdentifier, &topObjectVariant);
437 NPObject* windowObject = NULL;
438 browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
440 if (!windowObject)
451 if (!browser->evaluate(instance, windowObject, &script, &scriptVariant))
  /external/webkit/Source/WebKit/mac/WebView/
WebFrame.h 205 @method windowObject
208 - (WebScriptObject *)windowObject;
WebFrameLoadDelegate.h 177 @param windowObject The WebScriptObject representing the frame's JavaScript window object.
178 @param frame The WebFrame to which windowObject belongs.
184 - (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
  /external/webkit/Tools/DumpRenderTree/win/
FrameLoadDelegate.cpp 352 JSObjectRef windowObject = JSContextGetGlobalObject(context);
359 ::gLayoutTestController->makeWindowObject(context, windowObject, &exception);
362 m_gcController->makeWindowObject(context, windowObject, &exception);
365 m_accessibilityController->makeWindowObject(context, windowObject, &exception);
370 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
FrameLoadDelegate.h 117 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
122 /* [in] */ JSObjectRef windowObject,
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 160 NPObject *windowObject = NULL;
161 error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
166 browser->invoke(instance, windowObject, browser->getstringidentifier("alert"), &alertMessage, 1, &result);
167 browser->releaseobject(windowObject);
  /external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
TestNetscapePlugin.cpp 214 NPObject* windowObject = 0;
215 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
219 if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) {
232 browser->releaseobject(windowObject);
  /external/webkit/Tools/DumpRenderTree/gtk/
DumpRenderTree.cpp 818 static void addControllerToWindow(JSContextRef context, JSObjectRef windowObject, const char* controllerName, JSValueRef controller)
821 JSObjectSetProperty(context, windowObject, controllerNameStr, controller, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
825 static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data)
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 232 virtual NPObject* windowObject() const = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 100 virtual NPObject* windowObject() const;
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.cpp 926 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
928 wkEvent.SetWindowObject(windowObject);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 744 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
745 ASSERT(windowObject);
748 g_signal_emit_by_name(webView, "window-object-cleared", m_frame, context, windowObject);
    [all...]

Completed in 894 milliseconds

1 2