Lines Matching refs:boundsDelta
159 float boundsDelta) {
164 if (boundsDelta > 0 && currentClipExists) return false;
167 if (boundsDelta < 0 && newClipExists) return false;
210 float boundsDelta = mBounds.left - opBounds.left;
211 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
212 boundsDelta = mBounds.top - opBounds.top;
213 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
216 boundsDelta = opBounds.right - mBounds.right;
217 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
218 boundsDelta = opBounds.bottom - mBounds.bottom;
219 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;