• Home
  • Raw
  • Download

Lines Matching refs:NPIdentifier

90 bool NPJSObject::hasMethod(NPIdentifier methodName)  in hasMethod()
110 bool NPJSObject::invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount… in invoke()
139 bool NPJSObject::hasProperty(NPIdentifier identifier) in hasProperty()
159 bool NPJSObject::getProperty(NPIdentifier propertyName, NPVariant* result) in getProperty()
179 bool NPJSObject::setProperty(NPIdentifier propertyName, const NPVariant* value) in setProperty()
200 bool NPJSObject::removeProperty(NPIdentifier propertyName) in removeProperty()
231 bool NPJSObject::enumerate(NPIdentifier** identifiers, uint32_t* identifierCount) in enumerate()
242 NPIdentifier* nameIdentifiers = npnMemNewArray<NPIdentifier>(propertyNames.size()); in enumerate()
245 …nameIdentifiers[i] = static_cast<NPIdentifier>(IdentifierRep::get(propertyNames[i].ustring().utf8(… in enumerate()
339 bool NPJSObject::NP_HasMethod(NPObject* npObject, NPIdentifier methodName) in NP_HasMethod()
344 bool NPJSObject::NP_Invoke(NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments,… in NP_Invoke()
354 bool NPJSObject::NP_HasProperty(NPObject* npObject, NPIdentifier propertyName) in NP_HasProperty()
359 bool NPJSObject::NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result) in NP_GetProperty()
364 bool NPJSObject::NP_SetProperty(NPObject* npObject, NPIdentifier propertyName, const NPVariant* val… in NP_SetProperty()
369 bool NPJSObject::NP_RemoveProperty(NPObject* npObject, NPIdentifier propertyName) in NP_RemoveProperty()
374 bool NPJSObject::NP_Enumerate(NPObject* npObject, NPIdentifier** identifiers, uint32_t* identifierC… in NP_Enumerate()