Home | History | Annotate | Download | only in core

Lines Matching defs:pair

11     Pair* p = fList.begin();
12 Pair* stop = fList.end();
20 bool SkPtrSet::Less(const Pair& a, const Pair& b) {
30 Pair pair;
31 pair.fPtr = ptr;
33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
46 Pair pair;
47 pair.fPtr = ptr;
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
53 pair.fIndex = count + 1;
54 *fList.insert(index) = pair;
65 const Pair* p = fList.begin();