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

1 2 3 4 5 6 7 8 91011>>

  /hardware/qcom/display/
Android.mk 0 display-hals := libgralloc libgenlock libcopybit liblight
2 display-hals += libhwcomposer liboverlay libqdutils libexternal libqservice
4 include $(call all-named-subdir-makefiles,$(display-hals))
8 include $(call all-named-subdir-makefiles,$(display-hals))
  /ndk/tests/device/issue35933-lambda/jni/
issue35933-lambda.cpp 12 static void display(const char message[]) function
31 display("total");
  /external/qemu/distrib/sdl-1.2.15/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:__anon14124
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.h 17 #include "libEGL/Display.h"
26 egl::Display *display; member in struct:gl::Current
29 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface);
32 egl::Display *getDisplay();
  /frameworks/base/services/java/com/android/server/display/
DisplayTransactionListener.java 17 package com.android.server.display;
21 * display may have changed. Provides an opportunity for the client to
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/
TraceviewLauncher.java 26 import org.eclipse.swt.widgets.Display;
44 Display display = workbench.getDisplay(); local
46 display.syncExec(new Runnable() {
  /cts/tests/tests/util/src/android/util/cts/
DisplayMetricsTest.java 21 import android.view.Display;
25 private Display initDisplay() {
29 Display display = windowManager.getDefaultDisplay(); local
30 assertNotNull(display);
31 return display;
45 Display display = initDisplay(); local
46 display.getMetrics(outMetrics);
49 assertEquals(display.getHeight(), metrics.heightPixels)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_OrganizationsTest.java 26 String display = Organizations.getDisplayLabel(getContext(), local
28 assertEquals(label, display);
32 display = Organizations.getDisplayLabel(getContext(),
34 assertEquals(labels[Organizations.TYPE_OTHER - 1], display);
36 display = Organizations.getDisplayLabel(getContext(),
38 assertEquals(labels[Organizations.TYPE_WORK - 1], display);
Contacts_ContactMethodsTest.java 56 String display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL, local
58 assertEquals(label, display);
62 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
64 assertEquals(labels[ContactMethods.TYPE_HOME - 1], display);
66 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
68 assertEquals(labels[ContactMethods.TYPE_OTHER - 1], display);
70 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_EMAIL,
72 assertEquals(labels[ContactMethods.TYPE_WORK - 1], display);
75 display = ContactMethods.getDisplayLabel(getContext(), Contacts.KIND_IM,
77 assertEquals(untitled, display);
    [all...]
Contacts_PhonesTest.java 26 String display = Phones.getDisplayLabel(getContext(), local
28 assertEquals(label, display);
32 display = Phones.getDisplayLabel(getContext(),
34 assertEquals(labels[Phones.TYPE_HOME - 1], display);
36 display = Phones.getDisplayLabel(getContext(),
38 assertEquals(labels[Phones.TYPE_MOBILE - 1], display);
40 display = Phones.getDisplayLabel(getContext(),
42 assertEquals(labels[Phones.TYPE_WORK - 1], display);
44 display = Phones.getDisplayLabel(getContext(),
46 assertEquals(labels[Phones.TYPE_FAX_WORK - 1], display);
72 String display = Phones.getDisplayLabel(getContext(), local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DisplayTest.java 4 import android.view.Display;
17 Display display = Robolectric.newInstanceOf(Display.class); local
18 ShadowDisplay shadow = Robolectric.shadowOf(display);
30 display.getMetrics(metrics);
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.h 21 EGLDisplay display; member in struct:egl::Current
  /frameworks/support/v4/jellybean-mr1/android/support/v4/hardware/display/
DisplayManagerJellybeanMr1.java 17 package android.support.v4.hardware.display;
20 import android.view.Display;
27 public static Display getDisplay(Object displayManagerObj, int displayId) {
28 return ((android.hardware.display.DisplayManager)displayManagerObj).getDisplay(displayId);
31 public static Display[] getDisplays(Object displayManagerObj) {
32 return ((android.hardware.display.DisplayManager)displayManagerObj).getDisplays();
35 public static Display[] getDisplays(Object displayManagerObj, String category) {
36 return ((android.hardware.display.DisplayManager)displayManagerObj).getDisplays(category);
  /frameworks/support/v4/java/android/support/v4/hardware/display/
DisplayManagerCompat.java 17 package android.support.v4.hardware.display;
20 import android.view.Display;
26 * Helper for accessing features in {@link android.hardware.display.DisplayManager}
34 * Display category: Presentation displays.
45 "android.hardware.display.category.PRESENTATION";
51 * Gets an instance of the display manager given the context.
70 * Gets information about a logical display.
72 * The display metrics may be adjusted to provide compatibility
75 * @param displayId The logical display id.
76 * @return The display object, or null if there is no valid display with the given id
114 Display display = mWindowManager.getDefaultDisplay(); local
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 17 package android.display.cts;
22 import android.hardware.display.DisplayManager;
25 import android.view.Display;
29 // This test is called from DisplayTestRunner which brings up an overlay display on the target
30 // device. The overlay display parameters must match the ones defined there which are
53 private boolean isSecondarySize(Display display) {
55 display.getSize(p);
59 private Display getSecondaryDisplay(Display[] displays)
100 Display display = getSecondaryDisplay(mDisplayManager.getDisplays()); local
109 Display display = getSecondaryDisplay(mDisplayManager.getDisplays()); local
132 Display display = getSecondaryDisplay(mDisplayManager.getDisplays()); local
159 Display display = getSecondaryDisplay(mDisplayManager.getDisplays()); local
175 Display display = getSecondaryDisplay(mDisplayManager.getDisplays()); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorApplication.java 35 import org.eclipse.swt.widgets.Display;
48 Display display = PlatformUI.createDisplay(); local
56 String sdkPath = findSdkPath(display);
67 boolean install = MessageDialog.openQuestion(new Shell(display),
74 AdtUpdateDialog window = new AdtUpdateDialog(new Shell(display), sdkLog, sdkPath);
82 stats.checkUserPermissionForPing(new Shell(display));
86 int returnCode = PlatformUI.createAndRunWorkbench(display,
93 display.dispose();
102 final Display display = workbench.getDisplay() local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/draw2d/
IColorConstants.java 15 import org.eclipse.swt.widgets.Display;
84 * Invokes {@link Display#getSystemColor(int)} in UI thread.
88 final Display display = Display.getDefault(); local
89 display.syncExec(new Runnable() {
92 color[0] = display.getSystemColor(id);
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationTest.java 22 import android.view.Display;
36 Display display = windowManager.getDefaultDisplay(); local
38 display.getMetrics(metrics);
  /cts/tests/tests/holo/src/android/holo/cts/
DisplayInfoActivity.java 24 import android.view.Display;
36 Display display = windowManager.getDefaultDisplay(); local
38 display.getMetrics(metrics);
  /external/chromium/chrome/browser/chromeos/input_method/
xkeyboard_unittest.cc 51 // Returns true if X display is available.
53 Display* display = XOpenDisplay(NULL); local
54 if (!display) {
57 XCloseDisplay(display);
  /external/chromium/chrome/browser/notifications/
balloon_collection_linux.cc 55 GdkDisplay* display = gdk_screen_get_display(screen); local
57 gdk_display_get_pointer(display, NULL, &x, &y, NULL);
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_x.cc 30 Display* display = GDK_WINDOW_XDISPLAY(gdk_window); local
33 if (XGetWindowAttributes(display, win, &attr) == 0) {
38 display, win, 0, 0, attr.width, attr.height, AllPlanes, ZPixmap);
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
RenderFontJme.java 41 private NiftyJmeDisplay display; field in class:RenderFontJme
50 public RenderFontJme(String name, NiftyJmeDisplay display) {
51 this.display = display;
52 font = display.getAssetManager().loadFont(name);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindowManager.java 3 import android.view.Display;
15 private Display display; field in class:TestWindowManager
33 public Display getDefaultDisplay() {
34 return display == null ? display = newInstanceOf(Display.class) : display;

Completed in 1191 milliseconds

1 2 3 4 5 6 7 8 91011>>