Lines Matching defs:other
114 VarType::VarType(const VarType& other) : m_type(TYPE_LAST), m_flags(0)
116 *this = other;
141 VarType& VarType::operator=(const VarType& other)
143 if (this == &other)
149 m_type = other.m_type;
150 m_flags = other.m_flags;
155 m_data.array.elementType = new VarType(*other.m_data.array.elementType);
156 m_data.array.size = other.m_data.array.size;
159 m_data = other.m_data;
1294 UniformBufferManager(const UniformBufferManager& other);
1295 UniformBufferManager& operator=(const UniformBufferManager& other);
1333 // \todo [2013-05-25 pyry] Support other versions as well.
1727 // \todo [2012-11-26 pyry] Should we check other properties as well?