Lines Matching full:ident
169 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
172 return obj->boundClass->hasMethod(ident);
175 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
178 return obj->boundClass->hasProperty(ident);
181 bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident,
186 return obj->boundClass->invoke(ident, arguments, argumentCount, result);
189 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result)
192 return obj->boundClass->getProperty(ident, result);
195 bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value)
198 return obj->boundClass->setProperty(ident, value);
214 bool CppBoundClass::hasMethod(NPIdentifier ident) const
216 return m_methods.find(ident) != m_methods.end();
219 bool CppBoundClass::hasProperty(NPIdentifier ident) const
221 return m_properties.find(ident) != m_properties.end();
224 bool CppBoundClass::invoke(NPIdentifier ident,
229 MethodList::const_iterator method = m_methods.find(ident);
252 bool CppBoundClass::getProperty(NPIdentifier ident, NPVariant* result) const
254 PropertyList::const_iterator callback = m_properties.find(ident);
267 bool CppBoundClass::setProperty(NPIdentifier ident, const NPVariant* value)
269 PropertyList::iterator callback = m_properties.find(ident);
280 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
281 MethodList::iterator oldCallback = m_methods.find(ident);
290 m_methods.set(ident, callback);
307 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
308 PropertyList::iterator oldCallback = m_properties.find(ident);
317 m_properties.set(ident, callback);
322 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
323 MethodList::const_iterator callback = m_methods.find(ident);