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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime_impl.h 43 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name);
44 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier*);
45 NPIdentifier _NPN_GetIntIdentifier(int32_t intId);
46 bool _NPN_IdentifierIsString(NPIdentifier);
47 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier);
48 int32_t _NPN_IntFromIdentifier(NPIdentifier);
53 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
57 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
58 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
59 bool _NPN_RemoveProperty(NPP, NPObject*, NPIdentifier propertyName)
    [all...]
  /external/chromium/webkit/glue/
npruntime_util.h 14 // Efficiently serialize/deserialize a NPIdentifier
15 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle);
17 NPIdentifier* identifier);
cpp_bound_class.h 149 typedef std::map<NPIdentifier, PropertyCallback*> PropertyList;
150 typedef std::map<NPIdentifier, Callback*> MethodList;
162 bool HasMethod(NPIdentifier ident) const;
163 bool Invoke(NPIdentifier ident, const NPVariant* args, size_t arg_count,
165 bool HasProperty(NPIdentifier ident) const;
166 bool GetProperty(NPIdentifier ident, NPVariant* result) const;
167 bool SetProperty(NPIdentifier ident, const NPVariant* value);
cpp_bound_class.cc 89 static bool hasProperty(NPObject *obj, NPIdentifier ident);
93 static bool hasMethod(NPObject *obj, NPIdentifier ident);
98 static bool invoke(NPObject *obj, NPIdentifier ident,
105 static bool getProperty(NPObject *obj, NPIdentifier ident,
111 static bool setProperty(NPObject *obj, NPIdentifier ident,
144 NPIdentifier ident) {
150 NPIdentifier ident) {
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident,
163 NPIdentifier ident,
170 NPIdentifier ident
    [all...]
npruntime_util.cc 14 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
30 NPIdentifier* identifier) {
  /external/chromium_org/content/child/npapi/
npruntime_util.h 15 // Efficiently serialize/deserialize a NPIdentifier
16 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle);
18 NPIdentifier* identifier);
npobject_util.h 23 typedef void *NPIdentifier;
37 // Creates an object similar to NPIdentifier that can be marshalled.
38 void CreateNPIdentifierParam(NPIdentifier id, NPIdentifier_Param* param);
40 // Creates an NPIdentifier from the marshalled object.
41 NPIdentifier CreateNPIdentifier(const NPIdentifier_Param& param);
npobject_proxy.h 51 NPIdentifier name);
53 NPIdentifier name,
62 NPIdentifier name);
64 NPIdentifier name,
67 NPIdentifier name,
70 NPIdentifier name);
72 NPIdentifier **value,
88 NPIdentifier name,
npruntime_util.cc 14 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle) {
30 NPIdentifier* identifier) {
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.h 39 bool HasMethod(NPIdentifier name) const;
41 bool InvokeMethod(NPIdentifier name,
46 bool HasProperty(NPIdentifier name) const;
48 NPIdentifier name,
50 bool GetProperty(NPIdentifier name, NPVariant* result);
51 bool RemoveProperty(NPObject *np_obj, NPIdentifier name);
  /external/chromium_org/webkit/renderer/
cpp_bound_class.h 112 typedef std::map<NPIdentifier, PropertyCallback*> PropertyList;
113 typedef std::map<NPIdentifier, Callback> MethodList;
125 bool HasMethod(NPIdentifier ident) const;
126 bool Invoke(NPIdentifier ident, const NPVariant* args, size_t arg_count,
128 bool HasProperty(NPIdentifier ident) const;
129 bool GetProperty(NPIdentifier ident, NPVariant* result) const;
130 bool SetProperty(NPIdentifier ident, const NPVariant* value);
cpp_bound_class.cc 93 static bool hasProperty(NPObject *obj, NPIdentifier ident);
97 static bool hasMethod(NPObject *obj, NPIdentifier ident);
102 static bool invoke(NPObject *obj, NPIdentifier ident,
109 static bool getProperty(NPObject *obj, NPIdentifier ident,
115 static bool setProperty(NPObject *obj, NPIdentifier ident,
148 NPIdentifier ident) {
154 NPIdentifier ident) {
159 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident,
167 NPIdentifier ident,
174 NPIdentifier ident
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 44 bool hasMethod(NPIdentifier methodName)
49 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
60 bool hasProperty(NPIdentifier propertyName)
65 bool getProperty(NPIdentifier propertyName, NPVariant* result)
NPRuntimeRemoveProperty.cpp 47 bool hasProperty(NPIdentifier propertyName)
55 bool getProperty(NPIdentifier propertyName, NPVariant* result)
74 bool removeProperty(NPIdentifier propertyName)
81 NPIdentifier m_lastRemovedProperty;
97 bool hasMethod(NPIdentifier methodName)
105 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
118 NPIdentifier propertyName;
135 bool hasProperty(NPIdentifier propertyName)
143 bool getProperty(NPIdentifier propertyName, NPVariant* result)
NPPSetWindowCalledDuringDestruction.cpp 42 bool hasMethod(NPIdentifier);
43 bool invoke(NPIdentifier, const NPVariant*, uint32_t, NPVariant*);
115 bool NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod(NPIdentifier methodName)
120 bool NPPSetWindowCalledDuringDestruction::ScriptObject::invoke(NPIdentifier identifier, const NPVariant*, uint32_t, NPVariant*)
NPDeallocateCalledBeforeNPShutdown.cpp 53 bool hasProperty(NPIdentifier propertyName)
58 bool getProperty(NPIdentifier propertyName, NPVariant* result)
NPRuntimeCallsWithNullNPP.cpp 42 NPIdentifier alertIdentifier = NPN_GetStringIdentifier("alert");
48 NPIdentifier documentIdentifier = NPN_GetStringIdentifier("document");
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 46 DEFINE_HAS_MEMBER_CHECK(hasMethod, bool, (NPIdentifier methodName));
47 DEFINE_HAS_MEMBER_CHECK(invoke, bool, (NPIdentifier methodName, const NPVariant*, uint32_t, NPVariant* result));
49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result));
51 DEFINE_HAS_MEMBER_CHECK(removeProperty, bool, (NPIdentifier propertyName));
78 bool NPN_Invoke(NPObject *, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
82 NPIdentifier NPN_GetStringIdentifier(const NPUTF8* name);
83 NPIdentifier NPN_GetIntIdentifier(int32_t intid);
84 bool NPN_IdentifierIsString(NPIdentifier);
85 NPUTF8* NPN_UTF8FromIdentifier(NPIdentifier);
    [all...]
TestObject.cpp 32 static bool testEnumerate(NPObject *npobj, NPIdentifier **value, uint32_t *count);
33 static bool testHasMethod(NPObject*, NPIdentifier name);
34 static bool testInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result);
35 static bool testHasProperty(NPObject*, NPIdentifier name);
36 static bool testGetProperty(NPObject*, NPIdentifier name, NPVariant*);
87 static NPIdentifier testIdentifiers[NUM_TEST_IDENTIFIERS];
99 static NPIdentifier testMethodIdentifiers[NUM_METHOD_IDENTIFIERS];
134 static bool testHasMethod(NPObject*, NPIdentifier name)
143 static bool testInvoke(NPObject* header, NPIdentifier name, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* /*result*/)
152 static bool testHasProperty(NPObject*, NPIdentifier name
    [all...]
  /external/clang/test/Analysis/
pointer-to-member.cpp 47 typedef void *NPIdentifier;
51 typedef A<NPIdentifier, bool (T::*) (const NPIdentifier *, unsigned,
52 NPIdentifier *)> MethodMapMember;
57 bool Find(const NPIdentifier *, unsigned, NPIdentifier *);
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 67 WEBKIT_EXPORT static bool enumerate(NPP, NPObject*, NPIdentifier**, uint32_t* identifierCount);
76 WEBKIT_EXPORT static NPIdentifier getIntIdentifier(int32_t number);
79 WEBKIT_EXPORT static bool getProperty(NPP, NPObject*, NPIdentifier property, NPVariant *result);
82 WEBKIT_EXPORT static NPIdentifier getStringIdentifier(const NPUTF8* string);
85 WEBKIT_EXPORT static void getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier*);
88 WEBKIT_EXPORT static bool hasMethod(NPP, NPObject*, NPIdentifier method);
91 WEBKIT_EXPORT static bool hasProperty(NPP, NPObject*, NPIdentifier property);
94 WEBKIT_EXPORT static bool identifierIsString(NPIdentifier);
100 WEBKIT_EXPORT static int32_t intFromIdentifier(NPIdentifier);
103 WEBKIT_EXPORT static bool invoke(NPP, NPObject*, NPIdentifier method, const NPVariant* args, uint32_t argCount, NPVariant* result)
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 214 typedef void *NPIdentifier;
223 NPIdentifier(s) will be NULL. NPIdentifier lifetime is controlled
227 NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name);
229 NPIdentifier *identifiers);
230 NPIdentifier NPN_GetIntIdentifier(int32_t intid);
231 bool NPN_IdentifierIsString(NPIdentifier identifier);
236 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier);
242 int32_t NPN_IntFromIdentifier(NPIdentifier identifier);
254 typedef bool (*NPHasMethodFunctionPtr)(NPObject *npobj, NPIdentifier name)
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 57 * NPIdentifier becomes a void*, was int32_t
242 typedef void *NPIdentifier;
251 NPIdentifier(s) will be NULL.
253 NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name);
255 NPIdentifier *identifiers);
256 NPIdentifier NPN_GetIntIdentifier(int32_t intid);
257 bool NPN_IdentifierIsString(NPIdentifier identifier);
262 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier);
268 int32_t NPN_IntFromIdentifier(NPIdentifier identifier);
280 typedef bool (*NPHasMethodFunctionPtr)(NPObject *npobj, NPIdentifier name)
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_npobject_proxy_test.cc 22 NPIdentifier document_id = HostFunctions()->getstringidentifier("document");
23 NPIdentifier create_text_node_id = HostFunctions()->getstringidentifier("createTextNode");
24 NPIdentifier append_child_id = HostFunctions()->getstringidentifier("appendChild");
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.cpp 122 static bool hasProperty(NPObject*, NPIdentifier);
126 static bool hasMethod(NPObject*, NPIdentifier);
131 static bool invoke(NPObject*, NPIdentifier,
138 static bool getProperty(NPObject*, NPIdentifier, NPVariant* result);
143 static bool setProperty(NPObject*, NPIdentifier, const NPVariant* value);
176 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
182 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
188 bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident,
196 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result)
202 bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value
    [all...]

Completed in 1453 milliseconds

1 2 3