Home | History | Annotate | Download | only in src

Lines Matching refs:cmp_

500     explicit RawComparer(int (*cmp)(const T*, const T*)) : cmp_(cmp) {}
502 return cmp_(&a, &b) < 0;
506 int (*cmp_)(const T*, const T*);