Home | History | Annotate | Download | only in private

Lines Matching defs:find

42     // set(), find() and foreach() all allow mutable access to table entries.
48 // The pointers returned by set() and find() are valid only until the next call to set().
61 T* find(const K& key) const {
80 SkASSERT(this->find(key));
235 // N.B. The pointers returned by set() and find() are valid only until the next call to set().
246 V* find(const K& key) const {
247 if (Pair* p = fTable.find(key)) {
255 SkASSERT(this->find(key));
301 bool contains(const T& item) const { return SkToBool(this->find(item)); }
305 const T* find(const T& item) const { return fTable.find(item); }