/external/webkit/Source/WebKit/chromium/public/ |
D | 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& … 145 typedef void (ExceptionHandler)(void* data, const NPUTF8* message);
|
/external/webkit/Source/WebCore/bridge/ |
D | npruntime.cpp | 44 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name) in _NPN_GetStringIdentifier() 49 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers) in _NPN_GetStringIdentifiers() 70 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier) in _NPN_UTF8FromIdentifier() 88 … variant->value.stringValue.UTF8Characters = (NPUTF8 *)malloc(sizeof(NPUTF8) * value->UTF8Length); in NPN_InitializeVariantWithStringCopy() 91 …memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * v… in NPN_InitializeVariantWithStringCopy()
|
D | npruntime_impl.h | 38 extern NPIdentifier _NPN_GetStringIdentifier(const NPUTF8*); 39 extern void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identi… 42 extern NPUTF8* _NPN_UTF8FromIdentifier(NPIdentifier); 56 extern void _NPN_SetException(NPObject*, const NPUTF8*);
|
D | npruntime.h | 84 typedef char NPUTF8; typedef 86 const NPUTF8 *UTF8Characters; 223 NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name); 224 void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount, 232 NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier); 387 void NPN_SetException(NPObject *npobj, const NPUTF8 *message);
|
D | 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."; in setDoubleValue() 155 NPUTF8 *msg = "Attempt to set int value with invalid type."; in setIntValue() 172 NPUTF8 *msg = "Attempt to set bool value with invalid type."; in setBooleanValue()
|
D | NP_jsobject.cpp | 451 void _NPN_SetException(NPObject*, const NPUTF8* message) in _NPN_SetException()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | 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);
|
D | npruntime.cpp | 157 NPIdentifier _NPN_GetStringIdentifier(const NPUTF8* name) in _NPN_GetStringIdentifier() 176 identifier->value.string = reinterpret_cast<NPUTF8*>(nameStorage); in _NPN_GetStringIdentifier() 185 void _NPN_GetStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* identifiers) in _NPN_GetStringIdentifiers() 230 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier) in _NPN_UTF8FromIdentifier() 236 return (NPUTF8*) strdup(privateIdentifier->value.string); in _NPN_UTF8FromIdentifier() 340 …variant->value.stringValue.UTF8Characters = reinterpret_cast<NPUTF8*>(malloc(sizeof(NPUTF8) * valu… in _NPN_InitializeVariantWithStringCopy() 341 …memcpy((void*)variant->value.stringValue.UTF8Characters, value->UTF8Characters, sizeof(NPUTF8) * v… in _NPN_InitializeVariantWithStringCopy()
|
D | V8NPUtils.h | 55 typedef void (*ExceptionHandler)(void* data, const NPUTF8* message);
|
D | NPV8Object.h | 67 const NPUTF8* string;
|
D | NPV8Object.cpp | 435 void _NPN_SetException(NPObject* npObject, const NPUTF8 *message) in _NPN_SetException()
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
D | 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) in createCStringFromNPVariant() 255 NPUTF8* result = (NPUTF8*)malloc(length + 1); in createCStringFromNPVariant() 406 NPUTF8* utf8String = createCStringFromNPVariant(&variant); in stringVariantToIdentifier() 446 NPUTF8* utf8String = browser->utf8fromidentifier(identifier); in testIdentifierToString() 473 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]); in testPassTestObject() 493 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]); in testCallback() 515 NPUTF8* callbackString = createCStringFromNPVariant(&args[0]); in testCallbackReturn() 539 NPUTF8* urlString = createCStringFromNPVariant(&args[0]); in getURL() [all …]
|
D | TestObject.cpp | 88 static const NPUTF8 *testIdentifierNames[NUM_TEST_IDENTIFIERS] = { 100 static const NPUTF8 *testMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = {
|
D | PluginTest.cpp | 126 NPIdentifier PluginTest::NPN_GetStringIdentifier(const NPUTF8 *name) in NPN_GetStringIdentifier()
|
D | PluginTest.h | 71 NPIdentifier NPN_GetStringIdentifier(const NPUTF8* name);
|
/external/webkit/Source/WebCore/bridge/jni/v8/ |
D | JavaNPObjectV8.cpp | 96 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier); in JavaNPObjectHasMethod() 115 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier); in JavaNPObjectInvoke() 163 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier); in JavaNPObjectHasProperty() 179 NPUTF8* name = _NPN_UTF8FromIdentifier(identifier); in JavaNPObjectGetProperty()
|
/external/webkit/Source/WebCore/bridge/c/ |
D | c_utility.cpp | 49 static String convertUTF8ToUTF16WithLatin1Fallback(const NPUTF8* UTF8Chars, int UTF8Length) in convertUTF8ToUTF16WithLatin1Fallback() 78 … NPString string = { (const NPUTF8*)cstring.data(), static_cast<uint32_t>(cstring.length()) }; in convertValueToNPVariant() 151 Identifier identifierFromNPIdentifier(ExecState* exec, const NPUTF8* name) in identifierFromNPIdentifier()
|
D | c_utility.h | 49 Identifier identifierFromNPIdentifier(ExecState*, const NPUTF8* name);
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebBindings.cpp | 96 NPIdentifier WebBindings::getStringIdentifier(const NPUTF8* string) in getStringIdentifier() 101 void WebBindings::getStringIdentifiers(const NPUTF8** names, int32_t nameCount, NPIdentifier* ident… in getStringIdentifiers() 165 void WebBindings::setException(NPObject* object, const NPUTF8* message) in setException() 182 NPUTF8* WebBindings::utf8FromIdentifier(NPIdentifier identifier) in utf8FromIdentifier() 187 void WebBindings::extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int3… in extractIdentifierData()
|
/external/webkit/Source/WebCore/plugins/ |
D | npfunctions.h | 80 typedef NPIdentifier (*NPN_GetStringIdentifierProcPtr) (const NPUTF8 *name); 81 typedef void (*NPN_GetStringIdentifiersProcPtr) (const NPUTF8 **names, int32_t nameCount, NPIdentif… 85 typedef NPUTF8 *(*NPN_UTF8FromIdentifierProcPtr) (NPIdentifier identifier); 98 typedef void (*NPN_SetExceptionProcPtr) (NPObject *obj, const NPUTF8 *message);
|
/external/chromium/webkit/glue/ |
D | npruntime_util.cc | 15 const NPUTF8* string; in SerializeNPIdentifier()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
D | NPRuntimeUtilities.cpp | 122 npnMemFree(const_cast<NPUTF8*>(variant->value.stringValue.UTF8Characters)); in releaseNPVariantValue()
|
D | NetscapeBrowserFuncs.cpp | 584 static NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name) in NPN_GetStringIdentifier() 589 static void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount, NPIdentifier *identif… in NPN_GetStringIdentifiers() 611 static NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier) in NPN_UTF8FromIdentifier() 732 static void NPN_SetException(NPObject*, const NPUTF8* message) in NPN_SetException()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2007-10-14 | 20906 void NPN_SetException(NPObject *npobj, const NPUTF8 *message);
|