Lines Matching refs:CppVariant
17 CppVariant::CppVariant() { in CppVariant() function in CppVariant
23 CppVariant::CppVariant(const CppVariant& original) { in CppVariant() function in CppVariant
29 CppVariant& CppVariant::operator=(const CppVariant& original) { in operator =()
35 CppVariant::~CppVariant() { in ~CppVariant()
39 void CppVariant::FreeData() { in FreeData()
43 bool CppVariant::isEqual(const CppVariant& other) const { in isEqual()
79 void CppVariant::CopyToNPVariant(NPVariant* result) const { in CopyToNPVariant()
105 void CppVariant::Set(const NPVariant& new_value) { in Set()
130 void CppVariant::SetNull() { in SetNull()
135 void CppVariant::Set(bool new_value) { in Set()
141 void CppVariant::Set(int32_t new_value) { in Set()
147 void CppVariant::Set(double new_value) { in Set()
154 void CppVariant::Set(const char* new_value) { in Set()
162 void CppVariant::Set(const std::string& new_value) { in Set()
169 void CppVariant::Set(const NPString& new_value) { in Set()
175 void CppVariant::Set(NPObject* new_value) { in Set()
181 std::string CppVariant::ToString() const { in ToString()
187 int32_t CppVariant::ToInt32() const { in ToInt32()
198 double CppVariant::ToDouble() const { in ToDouble()
209 bool CppVariant::ToBoolean() const { in ToBoolean()
214 std::vector<CppVariant> CppVariant::ToVector() const { in ToVector()
216 std::vector<CppVariant> vector; in ToVector()
221 CppVariant length_value; in ToVector()
238 CppVariant index_value; in ToVector()
250 bool CppVariant::Invoke(const std::string& method, const CppVariant* args, in Invoke()
251 uint32 arg_count, CppVariant& result) const { in Invoke()