Home
last modified time | relevance | path

Searched refs:error_e (Results 1 – 1 of 1) sorted by relevance

/system/teeui/libteeui/include/teeui/
Derror.h28 enum error_e : uint32_t { enum
44 constexpr Error(error_e v) noexcept : v_(v) {} in Error()
48 Error& operator=(error_e v) {
66 inline bool operator==(error_e v) const { return v_ == v; };
67 inline bool operator!=(error_e v) const { return v_ != v; };
69 constexpr error_e code() const { return v_; } in code()
72 error_e v_;