HomeSort by relevance Sort by last modified time
    Searched defs:display (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /cts/tests/tests/view/src/android/view/cts/
DisplayTest.java 22 import android.view.Display;
30 @TestTargetClass(Display.class)
51 notes = "don't know what orientation the default display has",
72 * Test the properties of Display, they are:
73 * 1 index of this display
74 * 2 height of this display in pixels
75 * 3 width of this display in pixels
76 * 4 orientation of this display
77 * 5 pixel format of this display
78 * 6 refresh rate of this display in frames per secon
85 Display display = windowManager.getDefaultDisplay(); local
    [all...]
GravityTest.java 191 Rect display = new Rect(20, 30, 40, 50); local
193 Gravity.applyDisplay(Gravity.DISPLAY_CLIP_VERTICAL, display, inoutRect);
199 display = new Rect(20, 30, 40, 50);
201 Gravity.applyDisplay(Gravity.DISPLAY_CLIP_HORIZONTAL, display, inoutRect);
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysyuv.h 57 SDL_Surface *display; member in struct:private_yuvhwdata
65 extern SDL_Overlay* BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface* display);
  /external/quake/quake/src/QW/client/
console.h 31 int display; // bottom of console displays this line member in struct:__anon4971
  /cts/tests/tests/util/src/android/util/cts/
DisplayMetricsTest.java 21 import android.view.Display;
30 private Display initDisplay() {
34 Display display = windowManager.getDefaultDisplay(); local
35 assertNotNull(display);
36 return display;
70 Display display = initDisplay(); local
71 display.getMetrics(outMetrics);
74 assertEquals(display.getHeight(), metrics.heightPixels)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_OrganizationsTest.java 37 String display = Organizations.getDisplayLabel(getContext(), local
39 assertEquals(label, display);
43 display = Organizations.getDisplayLabel(getContext(),
45 assertEquals(labels[Organizations.TYPE_OTHER - 1], display);
47 display = Organizations.getDisplayLabel(getContext(),
49 assertEquals(labels[Organizations.TYPE_WORK - 1], display);
Contacts_ContactMethodsTest.java 96 String display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL, local
98 assertEquals(label, display);
102 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
104 assertEquals(labels[ContactMethods.TYPE_HOME - 1], display);
106 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
108 assertEquals(labels[ContactMethods.TYPE_OTHER - 1], display);
110 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
112 assertEquals(labels[ContactMethods.TYPE_WORK - 1], display);
115 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_IM,
117 assertEquals(untitled, display);
    [all...]
Contacts_PhonesTest.java 37 String display = Phones.getDisplayLabel(getContext(), local
39 assertEquals(label, display);
43 display = Phones.getDisplayLabel(getContext(),
45 assertEquals(labels[Phones.TYPE_HOME - 1], display);
47 display = Phones.getDisplayLabel(getContext(),
49 assertEquals(labels[Phones.TYPE_MOBILE - 1], display);
51 display = Phones.getDisplayLabel(getContext(),
53 assertEquals(labels[Phones.TYPE_WORK - 1], display);
55 display = Phones.getDisplayLabel(getContext(),
57 assertEquals(labels[Phones.TYPE_FAX_WORK - 1], display);
90 String display = Phones.getDisplayLabel(getContext(), local
    [all...]
  /external/clearsilver/java-jni/servlet/
CSPage.java 71 // then call display method
72 this.display();
114 public void display() { method in class:CSPage
  /external/qemu/android/
android.h 37 const char* display; member in struct:__anon4088
47 const char* display; member in struct:__anon4089
  /external/webkit/WebCore/platform/brew/
ScreenBrew.cpp 50 IDisplay* display = reinterpret_cast<AEEApplet*>(GETAPPINSTANCE())->m_pIDisplay; local
51 IBitmap* bitmap = IDisplay_GetDestination(display);
  /external/webkit/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.h 45 EGLDisplay display() const { return m_display; } function in class:WebCore::EGLDisplayOpenVG
72 EGLDisplayOpenVG(const EGLDisplay& display);
  /sdk/ddms/app/src/com/android/ddms/
AboutDialog.java 32 import org.eclipse.swt.widgets.Display;
60 * Prepare and display the dialog.
72 Display display = parent.getDisplay(); local
74 if (!display.readAndDispatch())
75 display.sleep();
84 * This depends on Display, so I'm not sure what the rules are for
95 Display display = shell.getDisplay(); local
96 return ImageHelper.createPlaceHolderArt(display, 100, 50
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkVars.java 20 import android.view.Display;
67 VAR_MAP.put("build.display", new StaticVarGetter(Build.DISPLAY));
84 // Display
85 Display display = WindowManagerImpl.getDefault().getDefaultDisplay(); typedefs
86 VAR_MAP.put("display.width", new StaticVarGetter(Integer.toString(display.getWidth())));
87 VAR_MAP.put("display.height", new StaticVarGetter(Integer.toString(display.getHeight())))
    [all...]
  /external/dropbear/
svr-x11fwd.c 131 char display[20]; /* space for "localhost:12345.123" */ local
139 /* create the DISPLAY string */
140 val = snprintf(display, sizeof(display), "localhost:%d.%d",
142 if (val < 0 || val >= (int)sizeof(display)) {
147 addnewvar("DISPLAY", display);
150 val = snprintf(display, sizeof(display), "unix:%d.%d",
152 if (val < 0 || val >= (int)sizeof(display)) {
    [all...]
  /external/webkit/WebCore/platform/gtk/
PlatformScreenGtk.cpp 133 GdkDisplay* display = gdk_drawable_get_display(rootWindow); local
134 Atom xproperty = gdk_x11_get_xatom_by_name_for_display(display, "_NET_WORKAREA");
141 int xRes = XGetWindowProperty(GDK_DISPLAY_XDISPLAY(display), GDK_WINDOW_XWINDOW(rootWindow), xproperty,
  /external/clearsilver/python/examples/base/
CSPage.py 61 ncgi.display("dbg/redirect.cs")
76 def display(self): member in class:CSPage
77 raise NoDisplayMethod, "no display method present in %s" % repr(self)
82 self.display()
135 handle_error.handleException("Display Failed!")
173 # default display
178 ncgi.display(template_name)
195 # ncgi.display("debug.cs")
  /external/expat/tests/
minicheck.c 152 int display = (int) (percentage * 100); local
154 display, runner->nchecks, runner->nfailures);
  /frameworks/base/core/jni/
android_view_Display.cpp 35 jfieldID display; member in struct:android::offsets_t
71 DisplayID dpy = env->GetIntField(clazz, offsets.display);
78 DisplayID dpy = env->GetIntField(clazz, offsets.display);
85 DisplayID dpy = env->GetIntField(clazz, offsets.display);
97 const char* const kClassPathName = "android/view/Display";
118 offsets.display = env->GetFieldID(clazz, "mDisplay", "I");
  /frameworks/base/core/tests/coretests/src/android/view/
BigCache.java 27 import android.view.Display;
45 final Display display = getWindowManager().getDefaultDisplay(); local
46 final int screenWidth = display.getWidth();
47 final int screenHeight = display.getHeight();
  /packages/apps/Calculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 131 CalculatorDisplay display = (CalculatorDisplay) mActivity.findViewById(R.id.display); local
132 assertNotNull(display);
134 EditText box = (EditText) display.getCurrentView();
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetConfigure.java 55 DisplayMetrics display = getResources().getDisplayMetrics(); local
56 int maxDimension = Math.max(display.heightPixels, display.widthPixels);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ScreenShotDialog.java 38 import org.eclipse.swt.widgets.Display;
75 * Prepare and display the dialog.
91 Display display = parent.getDisplay(); local
93 if (!display.readAndDispatch())
94 display.sleep();
190 Display display = shell.getDisplay(); local
192 display, 50, 50, display.getSystemColor(SWT.COLOR_BLUE)))
230 Display display = shell.getDisplay(); local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdDetailsDialog.java 32 import org.eclipse.swt.widgets.Display;
69 Display display = getParent().getDisplay(); local
71 if (!display.readAndDispatch()) {
72 display.sleep();
114 // display some extra values.
130 // display other hardware
132 // remove stuff we already displayed (or that we don't want to display)
167 * @param parent the parent Composite in which to display the value. This Composite must use a
169 * @param label the label of the value to display
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtPlugin.java 80 import org.eclipse.swt.widgets.Display;
231 Display display = getDisplay(); local
241 mRed = new Color(display, 0xFF, 0x00, 0x00);
246 display.asyncExec(new Runnable() {
405 public static Display getDisplay() {
610 // get the current Display
611 final Display display = getDisplay(); local
614 display.asyncExec(new Runnable()
630 final Display display = getDisplay(); local
650 final Display display = getDisplay(); local
    [all...]

Completed in 3075 milliseconds

1 2 3 4 5