Searched refs:self_type (Results 1 – 1 of 1) sorted by relevance
67 typedef Result self_type; //!< 自分の型です。 typedef82 self_type operator = (u32 code) { m_Code = code; return *this; }84 self_type operator |= (u32 code) { m_Code |= code; return *this; }86 self_type operator &= (u32 code) { m_Code &= code; return *this; }88 self_type operator = (self_type result) { m_Code = result.GetCode(); return *this; }90 self_type operator |= (self_type result) { m_Code |= result.GetCode(); return *this; }92 self_type operator &= (self_type result) { m_Code &= result.GetCode(); return *this; }