Searched refs:Replace (Results 1 – 2 of 2) sorted by relevance
86 Self& operator =(bit32 v) { Replace(v); return *this; }97 Self& operator =(int v) { Replace(v); return *this; }107 void Replace(bit32 v) { m_FlagsValue = static_cast<StorageT>(v); } in Replace() function117 void Replace(int v) { m_FlagsValue = static_cast<StorageT>(v); } in Replace() function218 FlagsEnum1<EnumT>& operator =(bit32 v) { this->Replace(v); return *this; }219 FlagsEnum1<EnumT>& operator =(int v) { this->Replace(v); return *this; }255 FlagsEnum2<EnumT>& operator =(bit32 v) { this->Replace(v); return *this; }256 FlagsEnum2<EnumT>& operator =(int v) { this->Replace(v); return *this; }292 FlagsEnum4<EnumT>& operator =(bit32 v) { this->Replace(v); return *this; }293 FlagsEnum4<EnumT>& operator =(int v) { this->Replace(v); return *this; }
30 inline T Replace(T& var, T v) in Replace() function82 const f32 prevX = Replace(pos.x, 0.f); in HandleBreak()