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

  /external/webkit/Source/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 67 const NPUTF8* string;
V8NPUtils.h 55 typedef void (*ExceptionHandler)(void* data, const NPUTF8* message);
npruntime.cpp 157 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name)
176 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage);
185 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers)
230 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier)
236 return (NPUTF8*) strdup(privateIdentifier->value.string);
340 variant->value.stringValue.UTF8Characters = reinterpret_cast<NPUTF8*>(malloc(sizeof(NPUTF8) * value->UTF8Length));
341 memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * value->UTF8Length);
NPV8Object.cpp 435 void _NPN_SetException(NPObject* npObject, const NPUTF8 *message)
  /external/webkit/Source/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 84 typedef char NPUTF8;
86 const NPUTF8 *UTF8Characters;
223 NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name);
224 void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount,
230 The NPUTF8 returned from NPN_UTF8FromIdentifier SHOULD be freed.
232 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier);
387 void NPN_SetException(NPObject *npobj, 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 451 void _NPN_SetException(NPObject*, const NPUTF8* message)
  /external/webkit/Source/WebKit/chromium/public/
WebBindings.h 74 WEBKIT_API static NPIdentifier getStringIdentifier(const NPUTF8* string);
77 WEBKIT_API static void getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier*);
113 WEBKIT_API static void setException(NPObject*, const NPUTF8* message);
122 WEBKIT_API static NPUTF8* utf8FromIdentifier(NPIdentifier);
129 WEBKIT_API static void extractIdentifierData(const NPIdentifier&, const NPUTF8*& string, int32_t& number, bool& isString);
145 typedef void (ExceptionHandler)(void* data, const NPUTF8* message);
  /external/webkit/Source/WebCore/bridge/c/
c_utility.h 49 Identifier identifierFromNPIdentifier(ExecState*, const NPUTF8* name);
c_utility.cpp 49 static String convertUTF8ToUTF16WithLatin1Fallback(const NPUTF8* UTF8Chars, int UTF8Length)
78 NPString string = { (const NPUTF8*)cstring.data(), static_cast<uint32_t>(cstring.length()) };
151 Identifier identifierFromNPIdentifier(ExecState* exec, const NPUTF8* name)
  /external/chromium/webkit/glue/
npruntime_util.cc 15 const NPUTF8* string;
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaNPObjectV8.cpp 96 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
115 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
169 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
185 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.cpp 154 static const NPUTF8 *pluginPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = {
212 static const NPUTF8 *pluginMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
252 static NPUTF8* createCStringFromNPVariant(const NPVariant* variant)
255 NPUTF8* result = (NPUTF8*)malloc(length + 1);
406 NPUTF8* utf8String = createCStringFromNPVariant(&variant);
446 NPUTF8* utf8String = browser->utf8fromidentifier(identifier);
473 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
493 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]);
515 NPUTF8* callbackString = createCStringFromNPVariant(&args[0])
    [all...]
TestObject.cpp 88 static const NPUTF8 *testIdentifierNames[NUM_TEST_IDENTIFIERS] = {
100 static const NPUTF8 *testMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
PluginTest.cpp 126 NPIdentifier PluginTest::NPN_GetStringIdentifier(const NPUTF8 *name)
PluginTest.h 71 NPIdentifier NPN_GetStringIdentifier(const NPUTF8* name);
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 96 NPIdentifier WebBindings::getStringIdentifier(const NPUTF8* string)
101 void WebBindings::getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers)
165 void WebBindings::setException(NPObject* object, const NPUTF8* message)
182 NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier)
187 void WebBindings::extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int32_t& number, bool& isString)
  /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/Source/WebKit2/WebProcess/Plugins/Netscape/
NPRuntimeUtilities.cpp 122 npnMemFree(const_cast<NPUTF8*>(variant->value.stringValue.UTF8Characters));
NetscapeBrowserFuncs.cpp 584 static NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name)
589 static void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers)
611 static NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier)
732 static void NPN_SetException(NPObject*, const NPUTF8* message)
  /external/webkit/Source/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 432 milliseconds