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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime_impl.h 49 void _NPN_ReleaseVariantValue(NPVariant*);
53 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
54 bool _NPN_InvokeDefault(NPP, NPObject*, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
55 bool _NPN_Evaluate(NPP, NPObject*, NPString* npScript, NPVariant* result);
56 bool _NPN_EvaluateHelper(NPP, bool popupsAllowed, NPObject*, NPString* npScript, NPVariant* result);
57 bool _NPN_GetProperty(NPP, NPObject*, NPIdentifier propertyName, NPVariant* result);
58 bool _NPN_SetProperty(NPP, NPObject*, NPIdentifier propertyName, const NPVariant* value);
64 bool _NPN_Construct(NPP, NPObject*, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
    [all...]
npruntime_priv.h 39 void _NPN_InitializeVariantWithStringCopy(NPVariant*, const NPString*);
V8NPUtils.h 38 // Convert a V8 Value of any type (string, bool, object, etc) to a NPVariant.
39 void convertV8ObjectToNPVariant(v8::Local<v8::Value>, NPObject*, NPVariant*);
41 // Convert a NPVariant (string, bool, object, etc) back to a V8 Value. The owner object is the NPObject which relates to the
43 v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*, NPObject*, v8::Isolate*);
  /external/chromium_org/remoting/host/plugin/
host_script_object.h 49 bool InvokeDefault(const NPVariant* args,
51 NPVariant* result);
53 const NPVariant* args,
55 NPVariant* result);
57 bool GetProperty(const std::string& property_name, NPVariant* result);
58 bool SetProperty(const std::string& property_name, const NPVariant* value);
94 bool Connect(const NPVariant* args, uint32_t arg_count, NPVariant* result);
97 bool Disconnect(const NPVariant* args, uint32_t arg_count, NPVariant* result)
    [all...]
host_plugin_utils.h 22 // Convert an NPVariant into a std::string.
23 std::string StringFromNPVariant(const NPVariant& variant);
25 // Convert a std::string into an NPVariant.
28 NPVariant NPVariantFromString(const std::string& val);
30 // Convert an NPVariant into an NSPObject.
31 NPObject* ObjectFromNPVariant(const NPVariant& variant);
host_plugin_utils.cc 20 std::string StringFromNPVariant(const NPVariant& variant) {
27 NPVariant NPVariantFromString(const std::string& val) {
32 NPVariant variant;
37 NPObject* ObjectFromNPVariant(const NPVariant& variant) {
  /external/chromium_org/content/child/npapi/
npobject_util.h 22 typedef _NPVariant NPVariant;
43 // Creates an object similar to NPVariant that can be marshalled.
46 // If release is true, the NPVariant object is released (except if
48 void CreateNPVariantParam(const NPVariant& variant,
55 // Creates an NPVariant from the marshalled object.
59 NPVariant* result,
npobject_proxy.h 54 const NPVariant *args,
56 NPVariant *result);
58 const NPVariant *args,
60 NPVariant *result);
65 NPVariant *result);
68 const NPVariant *value);
75 const NPVariant *args,
77 NPVariant *result);
83 NPVariant *result);
89 const NPVariant *args
    [all...]
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_bindings.h 42 const NPVariant* args,
44 NPVariant* result);
49 const NPVariant* variant);
50 bool GetProperty(NPIdentifier name, NPVariant* result);
browser_plugin_bindings.cc 47 std::string StringFromNPVariant(const NPVariant& variant) {
54 bool StringToNPVariant(const std::string &in, NPVariant *variant) {
69 int IntFromNPVariant(const NPVariant& variant) {
113 const NPVariant* args, uint32 arg_count,
114 NPVariant* result) {
126 const NPVariant* args,
128 NPVariant* result) {
145 NPVariant* result) {
162 const NPVariant* variant) {
221 const NPVariant* args
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_npobject_proxy_test.cc 26 NPVariant docv;
33 NPVariant strv;
37 NPVariant textv;
40 NPVariant v;
plugin_npobject_identity_test.cc 64 NPVariant func_var;
70 NPVariant func_args[2];
73 NPVariant were_the_same_var;
74 HostFunctions()->invokeDefault(id(), func, (const NPVariant*)&func_args, 2,
  /external/chromium_org/third_party/WebKit/public/web/
WebBindings.h 61 WEBKIT_EXPORT static bool construct(NPP, NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result);
70 WEBKIT_EXPORT static bool evaluate(NPP, NPObject*, NPString* script, NPVariant* result);
73 WEBKIT_EXPORT static bool evaluateHelper(NPP, bool popupsAllowed, NPObject*, NPString* script, NPVariant* result);
79 WEBKIT_EXPORT static bool getProperty(NPP, NPObject*, NPIdentifier property, NPVariant *result);
97 WEBKIT_EXPORT static void initializeVariantWithStringCopy(NPVariant*, const NPString*);
103 WEBKIT_EXPORT static bool invoke(NPP, NPObject*, NPIdentifier method, const NPVariant* args, uint32_t argCount, NPVariant* result);
106 WEBKIT_EXPORT static bool invokeDefault(NPP, NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.h 47 DEFINE_HAS_MEMBER_CHECK(invoke, bool, (NPIdentifier methodName, const NPVariant*, uint32_t, NPVariant* result));
48 DEFINE_HAS_MEMBER_CHECK(invokeDefault, bool, (const NPVariant*, uint32_t, NPVariant* result));
50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result));
78 bool NPN_Invoke(NPObject *, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
91 bool NPN_GetProperty(NPObject*, NPIdentifier propertyName, NPVariant* value);
93 void NPN_ReleaseVariantValue(NPVariant*);
99 bool executeScript(const NPString*, NPVariant* result)
    [all...]
PluginObject.cpp 41 NPVariant consoleVariant;
49 NPVariant messageVariant;
52 NPVariant result;
94 static bool pluginGetProperty(NPObject*, NPIdentifier name, NPVariant*);
95 static bool pluginSetProperty(NPObject*, NPIdentifier name, const NPVariant*);
96 static bool pluginInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result);
250 static NPUTF8* createCStringFromNPVariant(const NPVariant* variant)
275 NPVariant browserResult;
305 static bool pluginGetProperty(NPObject* obj, NPIdentifier name, NPVariant* result
    [all...]
TestObject.cpp 34 static bool testInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result);
36 static bool testGetProperty(NPObject*, NPIdentifier name, NPVariant*);
39 static bool testConstruct(NPObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result);
143 static bool testInvoke(NPObject* header, NPIdentifier name, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* /*result*/)
162 static bool testGetProperty(NPObject* npobj, NPIdentifier name, NPVariant* result)
202 static bool testConstruct(NPObject* npobj, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* result
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 113 } NPVariant;
118 their value, as is the case with all non-const NPVariant*
125 void NPN_ReleaseVariantValue(NPVariant *variant);
196 JavaScript to C (NPVariant with type:)
204 C (NPVariant with type:) to JavaScript
248 The NPVariant *result argument of these functions (where
256 const NPVariant *args, uint32_t argCount,
257 NPVariant *result);
259 const NPVariant *args,
261 NPVariant *result)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 49 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
65 bool getProperty(NPIdentifier propertyName, NPVariant* result)
PluginScriptableNPObjectInvokeDefault.cpp 43 bool invokeDefault(const NPVariant*, uint32_t, NPVariant* result)
NPPSetWindowCalledDuringDestruction.cpp 43 bool invoke(NPIdentifier, const NPVariant*, uint32_t, NPVariant*);
120 bool NPPSetWindowCalledDuringDestruction::ScriptObject::invoke(NPIdentifier identifier, const NPVariant*, uint32_t, NPVariant*)
  /external/chromium_org/content/renderer/pepper/
npapi_glue.h 15 typedef struct _NPVariant NPVariant;
25 // Converts the given PP_Var to an NPVariant, returning true on success.
27 // NPVariant will be set to a void one.
31 bool PPVarToNPVariant(PP_Var var, NPVariant* result);
33 // Returns a PP_Var that corresponds to the given NPVariant. The contents of
34 // the NPVariant will be copied unless the NPVariant corresponds to an
41 const NPVariant* variant);
80 // NPVariant as a result.
89 // will additionally convert the result to an NPVariant and write it to th
    [all...]
  /external/chromium_org/webkit/renderer/
cpp_bound_class.h 126 bool Invoke(NPIdentifier ident, const NPVariant* args, size_t arg_count,
127 NPVariant* result);
129 bool GetProperty(NPIdentifier ident, NPVariant* result) const;
130 bool SetProperty(NPIdentifier ident, const NPVariant* value);
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 59 * Added NPVariant and modified functions to use this new type.
141 } NPVariant;
146 their value, as is the case with all non-const NPVariant*
153 void NPN_ReleaseVariantValue(NPVariant *variant);
224 JavaScript to C (NPVariant with type:)
232 C (NPVariant with type:) to JavaScript
274 The NPVariant *result argument of these functions (where
282 const NPVariant *args, uint32_t argCount,
283 NPVariant *result);
285 const NPVariant *args
    [all...]
  /external/chromium_org/content/renderer/java/
java_bridge_dispatcher.h 44 typedef std::map<string16, NPVariant> ObjectMap;
  /external/chromium/webkit/glue/
cpp_variant.h 10 corresponding NPVariant type. CppVariant also provides a number of
27 class CppVariant : public NPVariant {
43 void Set(const NPVariant& new_value);
59 void CopyToNPVariant(NPVariant* result) const;
76 // The value of a CppVariant may be read directly from its NPVariant (but

Completed in 126 milliseconds

1 2 3 4