Home | History | Annotate | Download | only in bridge

Lines Matching refs:npp

65  * Added NPP arguments to NPObject functions.
239 typedef NPObject *(*NPAllocateFunctionPtr)(NPP npp, NPClass *aClass);
311 NPObject *NPN_CreateObject(NPP npp, NPClass *aClass);
336 bool NPN_Invoke(NPP npp, NPObject *npobj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
337 bool NPN_InvokeDefault(NPP npp, NPObject *npobj, const NPVariant *args, uint32_t argCount, NPVariant *result);
338 bool NPN_Evaluate(NPP npp, NPObject *npobj, NPString *script, NPVariant *result);
339 bool NPN_GetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, NPVariant *result);
340 bool NPN_SetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, const NPVariant *value);
341 bool NPN_RemoveProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
342 bool NPN_HasProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
343 bool NPN_HasMethod(NPP npp, NPObject *npobj, NPIdentifier methodName);
344 bool NPN_Enumerate(NPP npp, NPObject *npobj, NPIdentifier **identifier, uint32_t *count);
345 bool NPN_Construct(NPP npp, NPObject *npobj, const NPVariant *args, uint32_t argCount, NPVariant *result);