Home
last modified time | relevance | path

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

/system/teeui/libteeui/include/teeui/
Derror.h43 constexpr Error() noexcept : v_(OK) {} in Error()
44 constexpr Error(error_e v) noexcept : v_(v) {} in Error()
49 v_ = v;
53 v_ = other.v_;
62 operator bool() const { return v_ != OK; }
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_;
/system/extras/simpleperf/
Dutils.cpp50 for (auto& p : v_) { in Clear()
53 v_.clear(); in Clear()
63 v_.push_back(p); in AllocateString()
Dutils.h70 std::vector<char*> v_; variable