HomeSort by relevance Sort by last modified time
    Searched full:scriptableobject (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 45 return static_cast<ScriptableObject*>(object)->HasProperty(
51 return static_cast<ScriptableObject*>(object)->HasMethod(
59 return static_cast<ScriptableObject*>(object)->GetProperty(
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
88 static_cast<ScriptableObject*>(object)->SetProperty(
96 static_cast<ScriptableObject*>(object)->RemoveProperty(
109 return static_cast<ScriptableObject*>(object)->Call(
121 return static_cast<ScriptableObject*>(object)->Construct(
126 delete static_cast<ScriptableObject*>(object);
143 bool ScriptableObject::HasProperty(const Var& /*name*/, Var* /*exception*/)
    [all...]
scriptable_object_deprecated.h 23 // a constructor that takes a pointer to a ScriptableObject for when you want
33 class ScriptableObject {
35 ScriptableObject() {}
36 virtual ~ScriptableObject() {}
84 ScriptableObject(const ScriptableObject& other);
85 ScriptableObject& operator=(const ScriptableObject& other);
  /external/chromium_org/ppapi/tests/
test_instance_deprecated.h 31 virtual pp::deprecated::ScriptableObject* CreateTestObject();
40 // Value written by set_string which is called by the ScriptableObject. This
test_var_deprecated.h 26 virtual pp::deprecated::ScriptableObject* CreateTestObject();
test_instance_deprecated.cc 21 // ScriptableObject used by instance.
22 class InstanceSO : public pp::deprecated::ScriptableObject {
27 // pp::deprecated::ScriptableObject overrides.
156 pp::deprecated::ScriptableObject* TestInstance::CreateTestObject() {
199 class ObjectWithChildren : public pp::deprecated::ScriptableObject {
244 class BadDestructorObject : public pp::deprecated::ScriptableObject {
test_var_deprecated.cc 26 // ScriptableObject used by the var tests.
27 class VarScriptableObject : public pp::deprecated::ScriptableObject {
31 // pp::deprecated::ScriptableObject overrides.
86 pp::deprecated::ScriptableObject* TestVarDeprecated::CreateTestObject() {
test_case.h 33 class ScriptableObject;
100 // Overridden by each test to supply a ScriptableObject corresponding to the
106 virtual pp::deprecated::ScriptableObject* CreateTestObject();
test_case.cc 118 pp::deprecated::ScriptableObject* so = CreateTestObject();
160 pp::deprecated::ScriptableObject* TestCase::CreateTestObject() {
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPDeallocateCalledBeforeNPShutdown.cpp 51 class ScriptableObject : public Object<ScriptableObject> {
81 *(NPObject**)value = ScriptableObject::create(this);
NPRuntimeObjectFromDestroyedPlugin.cpp 42 class ScriptableObject : public Object<ScriptableObject> {
81 *(NPObject**)value = ScriptableObject::create(this);
  /external/chromium_org/ppapi/cpp/private/
var_private.cc 28 ScriptableObject* object) {
39 ScriptableObject* VarPrivate::AsScriptableObject() const {
45 var_, ScriptableObject::GetClass(), &object)) {
46 return reinterpret_cast<ScriptableObject*>(object);
var_private.h 15 class ScriptableObject;
33 deprecated::ScriptableObject* object);
39 // debug mode. If it is not an object or not a ScriptableObject type, returns
41 deprecated::ScriptableObject* AsScriptableObject() const;
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginView.h 48 virtual NPObject* scriptableObject() { return 0; }
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
scriptable_plugin.h 25 class ScriptablePlugin : public pp::deprecated::ScriptableObject {
48 // ------ Methods inherited from pp::deprecated::ScriptableObject:
  /external/chromium_org/content/renderer/pepper/
pepper_webplugin_impl.h 46 virtual NPObject* scriptableObject();
pepper_webplugin_impl.cc 135 NPObject* PepperWebPluginImpl::scriptableObject() {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.h 54 virtual NPObject* scriptableObject() OVERRIDE { return 0; }
  /external/chromium_org/components/plugins/renderer/
webview_plugin.cc 112 NPObject* WebViewPlugin::scriptableObject() { return NULL; }
webview_plugin.h 75 virtual NPObject* scriptableObject();
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.h 64 virtual NPObject* scriptableObject() { return 0; }
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.h 77 virtual NPObject* scriptableObject() OVERRIDE;
  /external/chromium_org/third_party/WebKit/public/web/
WebPlugin.h 69 virtual NPObject* scriptableObject() = 0;
WebPluginContainer.h 74 // These are objects derived from WebPlugin::scriptableObject. This is
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.h 77 virtual NPObject* scriptableObject();
  /external/chromium_org/remoting/client/plugin/
chromoting_instance.h 95 // Backward-compatibility version used by for the ScriptableObject

Completed in 463 milliseconds

1 2