Home | History | Annotate | Download | only in core

Lines Matching refs:Pair

12     Pair* p = fList.begin();
13 Pair* stop = fList.end();
21 bool SkPtrSet::Less(const Pair& a, const Pair& b) {
31 Pair pair;
32 pair.fPtr = ptr;
34 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
47 Pair pair;
48 pair.fPtr = ptr;
50 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
54 pair.fIndex = count + 1;
55 *fList.insert(index) = pair;
66 const Pair* p = fList.begin();