Lines Matching defs:other
122 VarType::VarType (const VarType& other)
126 *this = other;
157 VarType& VarType::operator= (const VarType& other)
159 if (this == &other)
165 m_type = other.m_type;
166 m_flags = other.m_flags;
171 m_data.array.elementType = new VarType(*other.m_data.array.elementType);
172 m_data.array.size = other.m_data.array.size;
175 m_data = other.m_data;
1347 UniformBufferManager (const UniformBufferManager& other);
1348 UniformBufferManager& operator= (const UniformBufferManager& other);
1772 // \todo [2012-11-26 pyry] Should we check other properties as well?