Searched refs:self_type (Results 1 – 1 of 1) sorted by relevance
78 typedef Result self_type; //!< 自分の型です。 typedef93 self_type operator = (u32 code) { m_Code = code; return *this; }95 self_type operator |= (u32 code) { m_Code |= code; return *this; }97 self_type operator &= (u32 code) { m_Code &= code; return *this; }99 self_type operator = (self_type result) { m_Code = result.GetCode(); return *this; }101 self_type operator |= (self_type result) { m_Code |= result.GetCode(); return *this; }103 self_type operator &= (self_type result) { m_Code &= result.GetCode(); return *this; }