Lines Matching refs:ret
67 auto ret = map_.insert(std::pair<K, V>(key, value)); in Insert() local
68 return ret.second; in Insert()
74 auto ret = map_.insert(std::pair<K, V>(key, value)); in EnsureInsert() local
76 if (!ret.second) { in EnsureInsert()
77 map_.erase(ret.first); in EnsureInsert()
86 bool ret = false; in Find() local
92 ret = true; in Find()
95 return ret; in Find()
100 bool ret = false; in FindOldAndSetNew() local
108 ret = true; in FindOldAndSetNew()
112 return ret; in FindOldAndSetNew()