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

1 2

  /external/webkit/WebKitTools/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);
LayoutTestController.h 43 void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception);
LayoutTestController.cpp     [all...]
  /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))
  /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/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
PluginObject.cpp 38 static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message)
41 if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) {
64 static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...)
72 pluginLogWithWindowObject(windowObject, instance, message);
84 NPObject* windowObject = 0;
85 NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject);
91 pluginLogWithWindowObject(windowObject, instance, message);
92 browser->releaseobject(windowObject);
696 NPObject *windowObject = NULL;
697 browser->getvalue(npp, NPNVWindowNPObject, &windowObject);
    [all...]
  /external/webkit/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;
WebViewPrivate.h 608 - (void)webView:(WebView *)webView didClearInspectorWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame;
  /external/webkit/WebKitTools/DumpRenderTree/win/
FrameLoadDelegate.cpp 337 JSObjectRef windowObject = JSContextGetGlobalObject(context);
341 ::gLayoutTestController->makeWindowObject(context, windowObject, &exception);
344 m_gcController->makeWindowObject(context, windowObject, &exception);
347 m_accessibilityController->makeWindowObject(context, windowObject, &exception);
352 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
FrameLoadDelegate.h 113 /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; }
118 /* [in] */ JSObjectRef windowObject,
  /external/webkit/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/WebKit/chromium/public/
WebFrame.h 199 virtual NPObject* windowObject() const = 0;
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 592 static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data)
597 gLayoutTestController->makeWindowObject(context, windowObject, &exception);
600 gcController->makeWindowObject(context, windowObject, &exception);
603 axController->makeWindowObject(context, windowObject, &exception);
608 JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0);
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 94 virtual NPObject* windowObject() const;
WebFrameImpl.cpp 588 NPObject* WebFrameImpl::windowObject() const
    [all...]
  /external/webkit/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.cpp 895 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
897 wkEvent.SetWindowObject(windowObject);
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 537 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
538 ASSERT(windowObject);
541 g_signal_emit_by_name(webView, "window-object-cleared", m_frame, context, windowObject);
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 162 @selector(webView:didClearInspectorWindowObject:forFrame:), [frame windowObject], frame);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
FrameLoadDelegate.mm 260 WebScriptObject *obj = [frame windowObject];
TextInputController.m 57 WebScriptObject *obj = [[self _frame] windowObject];
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]

Completed in 722 milliseconds

1 2