Home | History | Annotate | Download | only in glue

Lines Matching defs:ident

89   static bool hasProperty(NPObject *obj, NPIdentifier ident);
93 static bool hasMethod(NPObject *obj, NPIdentifier ident);
98 static bool invoke(NPObject *obj, NPIdentifier ident,
105 static bool getProperty(NPObject *obj, NPIdentifier ident,
111 static bool setProperty(NPObject *obj, NPIdentifier ident,
144 NPIdentifier ident) {
146 return obj->bound_class->HasMethod(ident);
150 NPIdentifier ident) {
152 return obj->bound_class->HasProperty(ident);
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident,
159 return obj->bound_class->Invoke(ident, args, arg_count, result);
163 NPIdentifier ident,
166 return obj->bound_class->GetProperty(ident, result);
170 NPIdentifier ident,
173 return obj->bound_class->SetProperty(ident, value);
194 bool CppBoundClass::HasMethod(NPIdentifier ident) const {
195 return (methods_.find(ident) != methods_.end());
198 bool CppBoundClass::HasProperty(NPIdentifier ident) const {
199 return (properties_.find(ident) != properties_.end());
202 bool CppBoundClass::Invoke(NPIdentifier ident,
206 MethodList::const_iterator method = methods_.find(ident);
231 bool CppBoundClass::GetProperty(NPIdentifier ident, NPVariant* result) const {
232 PropertyList::const_iterator callback = properties_.find(ident);
245 bool CppBoundClass::SetProperty(NPIdentifier ident,
247 PropertyList::iterator callback = properties_.find(ident);
257 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
258 MethodList::iterator old_callback = methods_.find(ident);
267 methods_[ident] = callback;
287 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
288 PropertyList::iterator old_callback = properties_.find(ident);
297 properties_[ident] = callback;
301 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str());
302 MethodList::const_iterator callback = methods_.find(ident);