Home | History | Annotate | Download | only in chromium

Lines Matching refs:npObj

163 void CppNPObject::deallocate(NPObject* npObj)
165 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
169 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
171 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
175 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
177 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
181 bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident,
185 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
189 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result)
191 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
195 bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value)
197 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
333 NPObject* npObj = WebBindings::createObject(0, &CppNPObject::npClass);
334 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
336 m_selfVariant.set(npObj);
337 WebBindings::releaseObject(npObj); // CppVariant takes the reference.