Searched defs:Insets (Results 1 - 3 of 3) 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/service/voice/
H A DVoiceInteractionSession.java147 final Insets mTmpInsets = new Insets();
900 public static final class Insets { class in class:VoiceInteractionSession
1587 * sets {@link Insets#contentInsets outInsets.contentInsets.top} to the height
1589 * insets are {@link Insets#TOUCHABLE_INSETS_FRAME}, meaning it consumes all touch
1594 public void onComputeInsets(Insets outInsets) {
1600 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_FRAME;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java339 final Insets mTmpInsets = new Insets();
606 public static final class Insets { class in class:InputMethodService
1215 * insets are {@link Insets#TOUCHABLE_INSETS_VISIBLE}.
1224 public void onComputeInsets(Insets outInsets) {
1243 outInsets.touchableInsets = Insets.TOUCHABLE_INSETS_VISIBLE;

Completed in 1159 milliseconds