Lines Matching defs:targetInsets
1973 protected static void rotateInsets(final Insets topInsets, final Insets targetInsets, final int targetPlacement) {
1977 targetInsets.top = topInsets.left;
1978 targetInsets.left = topInsets.top;
1979 targetInsets.bottom = topInsets.right;
1980 targetInsets.right = topInsets.bottom;
1983 targetInsets.top = topInsets.bottom;
1984 targetInsets.left = topInsets.left;
1985 targetInsets.bottom = topInsets.top;
1986 targetInsets.right = topInsets.right;
1989 targetInsets.top = topInsets.left;
1990 targetInsets.left = topInsets.bottom;
1991 targetInsets.bottom = topInsets.right;
1992 targetInsets.right = topInsets.top;
1996 targetInsets.top = topInsets.top;
1997 targetInsets.left = topInsets.left;
1998 targetInsets.bottom = topInsets.bottom;
1999 targetInsets.right = topInsets.right;