Lines Matching defs:targetInsets
578 protected static void rotateInsets(final Insets topInsets, final Insets targetInsets, final int targetPlacement) {
581 targetInsets.top = topInsets.left;
582 targetInsets.left = topInsets.top;
583 targetInsets.bottom = topInsets.right;
584 targetInsets.right = topInsets.bottom;
587 targetInsets.top = topInsets.bottom;
588 targetInsets.left = topInsets.left;
589 targetInsets.bottom = topInsets.top;
590 targetInsets.right = topInsets.right;
593 targetInsets.top = topInsets.right;
594 targetInsets.left = topInsets.bottom;
595 targetInsets.bottom = topInsets.left;
596 targetInsets.right = topInsets.top;
600 targetInsets.top = topInsets.top;
601 targetInsets.left = topInsets.left;
602 targetInsets.bottom = topInsets.bottom;
603 targetInsets.right = topInsets.right;