Searched defs:_BracketState (Results 1 – 2 of 2) sorted by relevance
126 struct _BracketState in _GLIBCXX_VISIBILITY() struct128 enum class _Type : char { _None, _Char, _Class } _M_type = _Type::_None; in _GLIBCXX_VISIBILITY()129 _CharT _M_char; in _GLIBCXX_VISIBILITY()132 set(_CharT __c) noexcept { _M_type = _Type::_Char; _M_char = __c; } in _GLIBCXX_VISIBILITY()135 get() const noexcept { return _M_char; } in _GLIBCXX_VISIBILITY()145 _M_is_char() const noexcept { return _M_type == _Type::_Char; } in _GLIBCXX_VISIBILITY()150 _M_is_class() const noexcept { return _M_type == _Type::_Class; } in _GLIBCXX_VISIBILITY()
125 struct _BracketState in _GLIBCXX_VISIBILITY() struct127 enum class _Type : char { _None, _Char, _Class } _M_type = _Type::_None; in _GLIBCXX_VISIBILITY()128 _CharT _M_char = _CharT(); in _GLIBCXX_VISIBILITY()131 set(_CharT __c) noexcept { _M_type = _Type::_Char; _M_char = __c; } in _GLIBCXX_VISIBILITY()134 get() const noexcept { return _M_char; } in _GLIBCXX_VISIBILITY()144 _M_is_char() const noexcept { return _M_type == _Type::_Char; } in _GLIBCXX_VISIBILITY()149 _M_is_class() const noexcept { return _M_type == _Type::_Class; } in _GLIBCXX_VISIBILITY()