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

1 2

  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.cpp 26 #include "PluginTest.h"
37 PluginTest* PluginTest::create(NPP npp, const string& identifier)
40 return new PluginTest(npp, identifier);
49 PluginTest::PluginTest(NPP npp, const string& identifier)
57 PluginTest::~PluginTest()
61 void PluginTest::NP_Shutdown()
67 void PluginTest::registerNPShutdownFunction(void (*func)()
    [all...]
PluginTest.h 52 class PluginTest {
54 static PluginTest* create(NPP, const std::string& identifier);
55 virtual ~PluginTest();
95 static PluginTest* create(NPP npp, const std::string& identifier)
102 PluginTest(NPP npp, const std::string& identifier);
115 static NPObject* create(PluginTest* pluginTest)
117 Object* object = static_cast<Object*>(pluginTest->NPN_CreateObject(npClass()));
119 object->m_pluginTest = pluginTest;
164 PluginTest* pluginTest() const { return m_pluginTest;
    [all...]
PluginObject.h 42 class PluginTest;
50 PluginTest* pluginTest;
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
DocumentOpenInDestroyStream.cpp 26 #include "PluginTest.h"
34 class DocumentOpenInDestroyStream : public PluginTest {
37 : PluginTest(npp, identifier)
56 static PluginTest::Register<DocumentOpenInDestroyStream> documentOpenInDestroyStream("document-open-in-destroy-stream");
GetURLWithJavaScriptURLDestroyingPlugin.cpp 26 #include "PluginTest.h"
32 class GetURLWithJavaScriptURLDestroyingPlugin : public PluginTest {
35 : PluginTest(npp, identifier)
48 static PluginTest::Register<GetURLWithJavaScriptURLDestroyingPlugin> getURLWithJavaScriptURLDestroyingPlugin("get-url-with-javascript-url-destroying-plugin");
EvaluateJSAfterRemovingPluginElement.cpp 26 #include "PluginTest.h"
34 class EvaluateJSAfterRemovingPluginElement : public PluginTest {
44 static PluginTest::Register<EvaluateJSAfterRemovingPluginElement> registrar("evaluate-js-after-removing-plugin-element");
47 : PluginTest(npp, identifier)
GetUserAgentWithNullNPPFromNPPNew.cpp 26 #include "PluginTest.h"
28 #include "PluginTest.h"
36 class GetUserAgentWithNullNPPFromNPPNew : public PluginTest {
39 : PluginTest(npp, identifier)
56 static PluginTest::Register<GetUserAgentWithNullNPPFromNPPNew> getUserAgentWithNullNPPFromNPPNew("get-user-agent-with-null-npp-from-npp-new");
PluginScriptableNPObjectInvokeDefault.cpp 26 #include "PluginTest.h"
31 class PluginScriptableNPObjectInvokeDefault : public PluginTest {
34 : PluginTest(npp, identifier)
67 static PluginTest::Register<PluginScriptableNPObjectInvokeDefault> pluginScriptableNPObjectInvokeDefault("plugin-scriptable-npobject-invoke-default");
68 static PluginTest::Register<PluginScriptableNPObjectInvokeDefault> pluginScriptableNPObjectNoInvokeDefault("plugin-scriptable-npobject-no-invoke-default");
NPRuntimeObjectFromDestroyedPlugin.cpp 26 #include "PluginTest.h"
30 class NPRuntimeObjectFromDestroyedPlugin : public PluginTest {
33 : PluginTest(npp, identifier)
46 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
51 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
54 NPObject* testObject = TestObject::create(pluginTest());
71 static PluginTest::Register<NPRuntimeObjectFromDestroyedPlugin> npRuntimeObjectFromDestroyedPlugin("npruntime-object-from-destroyed-plugin");
NullNPPGetValuePointer.cpp 26 #include "PluginTest.h"
34 class NullNPPGetValuePointer : public PluginTest {
45 static PluginTest::Register<NullNPPGetValuePointer> registrar("null-npp-getvalue-pointer");
48 : PluginTest(npp, identifier)
PassDifferentNPPStruct.cpp 26 #include "PluginTest.h"
35 class PassDifferentNPPStruct : public PluginTest {
38 : PluginTest(npp, identifier)
70 static PluginTest::Register<PassDifferentNPPStruct> getValueNetscapeWindow("pass-different-npp-struct");
NPDeallocateCalledBeforeNPShutdown.cpp 26 #include "PluginTest.h"
32 class NPDeallocateCalledBeforeNPShutdown : public PluginTest {
35 : PluginTest(npp, identifier)
55 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
60 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
63 NPObject* testObject = TestObject::create(pluginTest());
93 static PluginTest::Register<NPDeallocateCalledBeforeNPShutdown> npRuntimeObjectFromDestroyedPlugin("np-deallocate-called-before-np-shutdown");
NPPSetWindowCalledDuringDestruction.cpp 26 #include "PluginTest.h"
34 class NPPSetWindowCalledDuringDestruction : public PluginTest {
55 static PluginTest::Register<NPPSetWindowCalledDuringDestruction> registrar("npp-set-window-called-during-destruction");
58 : PluginTest(npp, identifier)
117 return methodName == pluginTest()->NPN_GetStringIdentifier("setWillBeDestroyed");
122 assert(identifier == pluginTest()->NPN_GetStringIdentifier("setWillBeDestroyed"));
123 static_cast<NPPSetWindowCalledDuringDestruction*>(pluginTest())->setWillBeDestroyed();
NPRuntimeRemoveProperty.cpp 26 #include "PluginTest.h"
31 class NPRuntimeRemoveProperty : public PluginTest {
34 : PluginTest(npp, identifier)
43 return methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty");
48 assert(methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty"));
64 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
67 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
70 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName);
89 static PluginTest::Register<NPRuntimeRemoveProperty> npRuntimeRemoveProperty("npruntime-remove-property");
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
GetValueNetscapeWindow.cpp 26 #include "PluginTest.h"
34 class GetValueNetscapeWindow : public PluginTest {
37 : PluginTest(npp, identifier)
73 static PluginTest::Register<GetValueNetscapeWindow> getValueNetscapeWindow("get-value-netscape-window");
WindowGeometryInitializedBeforeSetWindow.cpp 26 #include "PluginTest.h"
34 class WindowGeometryInitializedBeforeSetWindow : public PluginTest {
37 : PluginTest(npp, identifier)
90 static PluginTest::Register<WindowGeometryInitializedBeforeSetWindow> windowGeometryInitializedBeforeSetWindow("window-geometry-initialized-before-set-window");
WindowlessPaintRectCoordinates.cpp 26 #include "PluginTest.h"
35 class WindowlessPaintRectCoordinates : public PluginTest {
44 static PluginTest::Register<WindowlessPaintRectCoordinates> registrar("windowless-paint-rect-coordinates");
47 : PluginTest(npp, identifier)
WindowRegionIsSetToClipRect.cpp 26 #include "PluginTest.h"
34 class WindowRegionIsSetToClipRect : public PluginTest {
44 static PluginTest::Register<WindowRegionIsSetToClipRect> registrar("window-region-is-set-to-clip-rect");
47 : PluginTest(npp, identifier)
DrawsGradient.cpp 46 static PluginTest::Register<DrawsGradient> registrar("draws-gradient");
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
WindowedPluginTest.h 29 #include "PluginTest.h"
31 class WindowedPluginTest : public PluginTest {
40 // PluginTest
WindowedPluginTest.cpp 33 : PluginTest(npp, identifier)
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/mac/
ConvertPoint.cpp 26 #include "PluginTest.h"
31 class ConvertPoint : public PluginTest {
34 : PluginTest(npp, identifier)
81 static PluginTest::Register<ConvertPoint> convertPoint("convert-point");
  /external/protobuf/src/google/protobuf/compiler/python/
python_plugin_unittest.cc 80 TEST(PythonPluginTest, PluginTest) {
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_plugin_unittest.cc 85 TEST(CppPluginTest, PluginTest) {
  /external/protobuf/src/google/protobuf/compiler/java/
java_plugin_unittest.cc 82 TEST(JavaPluginTest, PluginTest) {

Completed in 119 milliseconds

1 2