HomeSort by relevance Sort by last modified time
    Searched refs:ScriptableObject (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/ppapi/cpp/dev/
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);
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...]
  /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/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_case.cc 118 pp::deprecated::ScriptableObject* so = CreateTestObject();
160 pp::deprecated::ScriptableObject* TestCase::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_var_deprecated.cc 27 // ScriptableObject used by the var tests.
28 class VarScriptableObject : public pp::deprecated::ScriptableObject {
32 // pp::deprecated::ScriptableObject overrides.
87 pp::deprecated::ScriptableObject* TestVarDeprecated::CreateTestObject() {
  /external/chromium_org/ppapi/cpp/private/
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;
var_private.cc 28 ScriptableObject* object) {
39 ScriptableObject* VarPrivate::AsScriptableObject() const {
45 var_, ScriptableObject::GetClass(), &object)) {
46 return reinterpret_cast<ScriptableObject*>(object);
  /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:

Completed in 534 milliseconds