Home | History | Annotate | Download | only in src

Lines Matching defs:last

58      * legal to decerement end() if the tree is not empty to get the last
59 * element. However, a last() helper is provided.
90 * Gets the last valid iterator. This is always valid, even on an empty.
92 * @return an iterator that is just beyond the last item in sorted order.
96 * @return an iterator that to the last item in sorted order, or end() if
99 Iter last();
115 * Finds the last of an item in iterator order.
117 * @return an iterator to the last element equal to t or end() if
215 *this = fTree->last();
255 typename GrRedBlackTree<T,C>::Iter GrRedBlackTree<T,C>::last() {
367 bool last = true;
372 last = last && kRight_Child == pc;
377 if (last) {
603 // first and last can't have two children.
976 GrAssert(*tree.last() == 99);
978 GrAssert(--tree.end() == tree.last());
1025 // the first, last, or any entry for each.
1063 // remove all the 99 entries (tests removing last()).
1073 GrAssert(tree.last() == --tree.end());