Home | History | Annotate | Download | only in gmock

Lines Matching refs:ilhs

2849   bool HasEdge(size_t ilhs, size_t irhs) const {
2850 return matched_[SpaceIndex(ilhs, irhs)] == 1;
2852 void SetEdge(size_t ilhs, size_t irhs, bool b) {
2853 matched_[SpaceIndex(ilhs, irhs)] = b ? 1 : 0;
2866 size_t SpaceIndex(size_t ilhs, size_t irhs) const {
2867 return ilhs * num_matchers_ + irhs;
2875 // a (ilhs, irhs) matrix coordinate into an offset.
3021 for (size_t ilhs = 0; ilhs != num_elements; ++ilhs) {
3023 matrix.SetEdge(ilhs, irhs, *did_match_iter++ != 0);