Lines Matching full:not_found
179 Type *lsearch (const T &x, Type *not_found = nullptr) in lsearch()
182 return lfind (x, &i) ? &this->arrayZ[i] : not_found; in lsearch()
185 const Type *lsearch (const T &x, const Type *not_found = nullptr) const in lsearch()
188 return lfind (x, &i) ? &this->arrayZ[i] : not_found; in lsearch()
192 hb_not_found_t not_found = HB_NOT_FOUND_DONT_STORE, in lfind()
205 switch (not_found) in lfind()
395 Type *bsearch (const T &x, Type *not_found = nullptr) in bsearch()
398 return bfind (x, &i) ? &this->arrayZ[i] : not_found; in bsearch()
401 const Type *bsearch (const T &x, const Type *not_found = nullptr) const in bsearch()
404 return bfind (x, &i) ? &this->arrayZ[i] : not_found; in bsearch()
408 hb_not_found_t not_found = HB_NOT_FOUND_DONT_STORE, in bfind()
422 switch (not_found) in bfind()