Lines Matching refs:np_obj
138 /* static */ void CppNPObject::deallocate(NPObject* np_obj) { in deallocate() argument
139 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in deallocate()
143 /* static */ bool CppNPObject::hasMethod(NPObject* np_obj, in hasMethod() argument
145 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasMethod()
149 /* static */ bool CppNPObject::hasProperty(NPObject* np_obj, in hasProperty() argument
151 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasProperty()
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident, in invoke() argument
158 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in invoke()
162 /* static */ bool CppNPObject::getProperty(NPObject* np_obj, in getProperty() argument
165 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in getProperty()
169 /* static */ bool CppNPObject::setProperty(NPObject* np_obj, in setProperty() argument
172 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in setProperty()
311 NPObject* np_obj = WebBindings::createObject(0, &CppNPObject::np_class_); in GetAsCppVariant() local
312 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in GetAsCppVariant()
314 self_variant_.Set(np_obj); in GetAsCppVariant()
315 WebBindings::releaseObject(np_obj); // CppVariant takes the reference. in GetAsCppVariant()