Home | History | Annotate | Download | only in inputmethodservice

Lines Matching refs:clipRegion

658         final Rect clipRegion = mClipRegion;
667 if (invalidKey != null && canvas.getClipBounds(clipRegion)) {
668 // Is clipRegion completely contained within the invalidated key?
669 if (invalidKey.x + kbdPaddingLeft - 1 <= clipRegion.left &&
670 invalidKey.y + kbdPaddingTop - 1 <= clipRegion.top &&
671 invalidKey.x + invalidKey.width + kbdPaddingLeft + 1 >= clipRegion.right &&
672 invalidKey.y + invalidKey.height + kbdPaddingTop + 1 >= clipRegion.bottom) {