HomeSort by relevance Sort by last modified time
    Searched defs:Insets (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/ui/gfx/
insets.cc 5 #include "ui/gfx/insets.h"
15 template class InsetsBase<Insets, int>;
17 Insets::Insets() : InsetsBase<Insets, int>(0, 0, 0, 0) {}
19 Insets::Insets(int top, int left, int bottom, int right)
20 : InsetsBase<Insets, int>(top, left, bottom, right) {}
23 Insets::Insets(const GtkBorder& border
    [all...]
insets.h 20 // An integer version of gfx::Insets.
21 class UI_EXPORT Insets : public InsetsBase<Insets, int> {
23 Insets();
24 Insets(int top, int left, int bottom, int right);
26 explicit Insets(const GtkBorder& border);
29 ~Insets();
31 Insets Scale(float scale) const {
35 Insets Scale(float x_scale, float y_scale) const {
36 return Insets(static_cast<int>(top() * y_scale)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Insets.java 20 * 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 {
29 public static final Insets NONE = new Insets(0, 0, 0, 0);
36 private Insets(int left, int top, int right, int bottom) {
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(left, top, right, bottom)
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 306 final Insets mTmpInsets = new Insets();
541 public static final class Insets {
581 * the content insets can be touched.
588 * the visible insets can be touched.
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 112 milliseconds