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

  /external/webkit/WebCore/bindings/v8/
npruntime_impl.h 47 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name);
48 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier*);
51 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier);
66 void _NPN_SetException(NPObject*, const NPUTF8 *message);
NPV8Object.h 65 const NPUTF8* string;
npruntime.cpp 155 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name)
174 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage);
183 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers)
228 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier)
234 return (NPUTF8*) strdup(privateIdentifier->value.string);
339 variant->value.stringValue.UTF8Characters = reinterpret_cast<NPUTF8*>(malloc(sizeof(NPUTF8) * value->UTF8Length));
340 memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * value->UTF8Length);
NPV8Object.cpp 411 void _NPN_SetException(NPObject* npObject, const NPUTF8 *message)
  /external/webkit/WebCore/bridge/
npruntime_impl.h 38 extern NPIdentifier _NPN_GetStringIdentifier(const NPUTF8*);
39 extern void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers);
42 extern NPUTF8* _NPN_UTF8FromIdentifier(NPIdentifier);
56 extern void _NPN_SetException(NPObject*, const NPUTF8*);
npruntime.cpp 44 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name)
49 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers)
70 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier)
88 variant->value.stringValue.UTF8Characters = (NPUTF8 *)malloc(sizeof(NPUTF8) * value->UTF8Length);
91 memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * value->UTF8Length);
npruntime.h 118 typedef char NPUTF8;
120 const NPUTF8 *UTF8Characters;
216 NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name);
217 void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers);
222 The NPUTF8 returned from NPN_UTF8FromIdentifier SHOULD be freed.
224 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier);
351 void NPN_SetException (NPObject *obj, const NPUTF8 *message);
testbindings.cpp 63 static const NPUTF8 *myPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = {
84 static const NPUTF8 *myMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
144 NPUTF8 *msg = "Attempt to set double value with invalid type.";
155 NPUTF8 *msg = "Attempt to set int value with invalid type.";
172 NPUTF8 *msg = "Attempt to set bool value with invalid type.";
NP_jsobject.cpp 385 void _NPN_SetException(NPObject*, const NPUTF8* message)
  /external/webkit/WebCore/bridge/c/
c_utility.h 52 Identifier identifierFromNPIdentifier(const NPUTF8* name);
c_utility.cpp 49 static String convertUTF8ToUTF16WithLatin1Fallback(const NPUTF8* UTF8Chars, int UTF8Length)
78 NPString string = { (const NPUTF8*)cstring.c_str(), static_cast<uint32_t>(cstring.size()) };
145 Identifier identifierFromNPIdentifier(const NPUTF8* name)
  /external/webkit/WebKit/chromium/public/
WebBindings.h 70 WEBKIT_API static NPIdentifier getStringIdentifier(const NPUTF8* string);
73 WEBKIT_API static void getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier*);
109 WEBKIT_API static void setException(NPObject*, const NPUTF8* message);
118 WEBKIT_API static NPUTF8* utf8FromIdentifier(NPIdentifier);
125 WEBKIT_API static void extractIdentifierData(const NPIdentifier&, const NPUTF8*& string, int32_t& number, bool& isString);
  /external/webkit/WebCore/bridge/jni/v8/
JavaNPObjectV8.cpp 93 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
112 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
130 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
146 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
  /external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
PluginObject.cpp 141 static const NPUTF8 *pluginPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = {
183 static const NPUTF8 *pluginMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
211 static NPUTF8* createCStringFromNPVariant(const NPVariant* variant)
214 NPUTF8* result = (NPUTF8*)malloc(length + 1);
326 NPUTF8* utf8String = createCStringFromNPVariant(&variant);
366 NPUTF8* utf8String = browser->utf8fromidentifier(identifier);
393 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
410 NPUTF8* urlString = createCStringFromNPVariant(&args[0]);
411 NPUTF8* targetString = createCStringFromNPVariant(&args[1])
    [all...]
TestObject.cpp 70 static const NPUTF8 *testIdentifierNames[NUM_TEST_IDENTIFIERS] = {
80 static const NPUTF8 *testMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
  /external/webkit/WebKit/chromium/src/
WebBindings.cpp 100 NPIdentifier WebBindings::getStringIdentifier(const NPUTF8* string)
105 void WebBindings::getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers)
169 void WebBindings::setException(NPObject* obj, const NPUTF8* message)
186 NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier)
191 void WebBindings::extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int32_t& number, bool& isString)
  /development/samples/BrowserPlugin/jni/
PluginObject.cpp 112 static const NPUTF8 *pluginPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = {
120 static const NPUTF8 *pluginMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
  /frameworks/base/tests/BrowserTestPlugin/jni/
PluginObject.cpp 103 static const NPUTF8 *pluginPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = {
111 static const NPUTF8 *pluginMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
  /external/webkit/WebCore/plugins/
npfunctions.h 80 typedef NPIdentifier (*NPN_GetStringIdentifierProcPtr) (const NPUTF8 *name);
81 typedef void (*NPN_GetStringIdentifiersProcPtr) (const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers);
85 typedef NPUTF8 *(*NPN_UTF8FromIdentifierProcPtr) (NPIdentifier identifier);
98 typedef void (*NPN_SetExceptionProcPtr) (NPObject *obj, const NPUTF8 *message);

Completed in 1124 milliseconds