Home | History | Annotate | Download | only in chromium

Lines Matching defs:CppVariant

32 #include "CppVariant.h"
42 CppVariant::CppVariant()
49 CppVariant::CppVariant(const CppVariant& original)
56 CppVariant& CppVariant::operator=(const CppVariant& original)
63 CppVariant::~CppVariant()
68 void CppVariant::freeData()
73 bool CppVariant::isEqual(const CppVariant& other) const
106 void CppVariant::copyToNPVariant(NPVariant* result) const
133 void CppVariant::set(const NPVariant& newValue)
159 void CppVariant::setNull()
165 void CppVariant::set(bool newValue)
172 void CppVariant::set(int32_t newValue)
179 void CppVariant::set(double newValue)
187 void CppVariant::set(const char* newValue)
196 void CppVariant::set(const string& newValue)
205 void CppVariant::set(const NPString& newValue)
212 void CppVariant::set(NPObject* newValue)
219 string CppVariant::toString() const
226 int32_t CppVariant::toInt32() const
236 double CppVariant::toDouble() const
246 bool CppVariant::toBoolean() const
252 Vector<string> CppVariant::toStringVector() const
298 bool CppVariant::invoke(const string& method, const CppVariant* arguments,
299 uint32_t argumentCount, CppVariant& result) const