Searched defs:Insets (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DInsets.java20 * An Insets instance holds four integer offsets which describe changes to the four
24 * Insets are immutable so may be treated as values.
28 public class Insets { class
29 public static final Insets NONE = new Insets(0, 0, 0, 0);
36 private Insets(int left, int top, int right, int bottom) { method in class:Insets
46 * Return an Insets instance with the appropriate values.
53 * @return Insets instance with the appropriate values
55 public static Insets of(int left, int top, int right, int bottom) {
59 return new Insets(lef
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java305 final Insets mTmpInsets = new Insets();
535 public static final class Insets { class in class:InputMethodService
1029 * insets are {@link Insets#TOUCHABLE_INSETS_VISIBLE}.
1038 public void onComputeInsets(Insets outInsets) {
1057 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_VISIBLE;

Completed in 1197 milliseconds