Lines Matching refs:propertyName
159 bool NPJSObject::getProperty(NPIdentifier propertyName, NPVariant* result)
161 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
179 bool NPJSObject::setProperty(NPIdentifier propertyName, const NPVariant* value)
181 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
200 bool NPJSObject::removeProperty(NPIdentifier propertyName)
202 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
354 bool NPJSObject::NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
356 return toNPJSObject(npObject)->hasProperty(propertyName);
359 bool NPJSObject::NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result)
361 return toNPJSObject(npObject)->getProperty(propertyName, result);
364 bool NPJSObject::NP_SetProperty(NPObject* npObject, NPIdentifier propertyName, const NPVariant* value)
366 return toNPJSObject(npObject)->setProperty(propertyName, value);
369 bool NPJSObject::NP_RemoveProperty(NPObject* npObject, NPIdentifier propertyName)
371 return toNPJSObject(npObject)->removeProperty(propertyName);