HomeSort by relevance Sort by last modified time
    Searched defs:windowObject (Results 1 - 9 of 9) sorted by null

  /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);
  /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/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);
  /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/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/wx/WebKitSupport/
FrameLoaderClientWx.cpp 895 JSObjectRef windowObject = toRef(coreFrame->script()->globalObject(mainThreadNormalWorld()));
897 wkEvent.SetWindowObject(windowObject);
  /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/chromium/src/
WebFrameImpl.cpp 588 NPObject* WebFrameImpl::windowObject() const
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]

Completed in 580 milliseconds