Lines Matching defs:match
91 * Returns true if colors match.
95 bool match =
100 match &= profileMatches( icc, other.icc );
102 return match;
111 bool match = (fabs((v.c[0]) - (other.v.c[0])) < epsilon)
115 match &= profileMatches( icc, other.icc );
117 return match;
121 bool match = false;
123 match = true;
125 match = first && second
128 if ( match ) {
130 match &= (fabs(first->colors[i] - second->colors[i]) < PROFILE_EPSILON);
134 return match;