Lines Matching refs:rhs
62 CachableEntry(CachableEntry&& rhs) in CachableEntry() argument
63 : value_(rhs.value_) in CachableEntry()
64 , cache_(rhs.cache_) in CachableEntry()
65 , cache_handle_(rhs.cache_handle_) in CachableEntry()
66 , own_value_(rhs.own_value_) in CachableEntry()
73 rhs.ResetFields(); in CachableEntry()
76 CachableEntry& operator=(CachableEntry&& rhs) {
77 if (UNLIKELY(this == &rhs)) {
83 value_ = rhs.value_;
84 cache_ = rhs.cache_;
85 cache_handle_ = rhs.cache_handle_;
86 own_value_ = rhs.own_value_;
93 rhs.ResetFields();