Home | History | Annotate | Download | only in core

Lines Matching refs:Pair

39             Pair*   pair = fArray.insert(~index);
43 pair->fName = copy;
44 pair->fValue = value;
74 const Pair* end = fArray.end();
75 for (const Pair* pair = fArray.begin(); pair < end; pair++) {
76 if (pair->fValue != value) {
79 *name = pair->fName;
86 struct Pair {
90 friend int operator<(const Pair& a, const Pair& b) {
94 friend int operator!=(const Pair& a, const Pair& b) {
120 const Pair* fIter;
121 const Pair* fStop;
125 SkTDArray<Pair> fArray;
139 index = SkStrSearch(&fArray.begin()->fName, count, name, len, sizeof(Pair));