/cts/tests/tests/provider/src/android/provider/cts/ |
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...] |
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
Utils.java | 23 import android.view.Display; 39 * Returns the screen/display size 46 Display display = wm.getDefaultDisplay(); local 48 display.getSize(size);
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ |
Utils.java | 21 import android.view.Display; 37 * Returns the screen/display size 41 Display display = wm.getDefaultDisplay(); local 43 display.getSize(size);
|
/development/ndk/platforms/android-8/samples/bitmap-plasma/src/com/example/plasma/ |
Plasma.java | 24 import android.view.Display; 34 Display display = getWindowManager().getDefaultDisplay(); local 35 setContentView(new PlasmaView(this, display.getWidth(), display.getHeight()));
|
/external/drm_hwcomposer/ |
drmcomposition.cpp | 51 int display = (*iter)->display(); local 52 composition_map_[display].reset(new DrmDisplayComposition()); 53 if (!composition_map_[display]) { 54 ALOGE("Failed to allocate new display composition\n"); 57 int ret = composition_map_[(*iter)->display()]->Init(drm_, importer_); 59 ALOGE("Failed to init display composition for %d", (*iter)->display()); 66 unsigned DrmComposition::GetRemainingLayers(int display, 68 DrmCrtc *crtc = drm_->GetCrtcForDisplay(display); [all...] |
drmcompositor.cpp | 39 int display = (*iter)->display(); local 40 int ret = compositor_map_[display].Init(drm_, display); 42 ALOGE("Failed to initialize display compositor for %d", display); 69 int display = (*iter)->display(); local 70 int ret = compositor_map_[display].QueueComposition( 71 drm_composition->TakeDisplayComposition(display)); [all...] |
drmcrtc.cpp | 68 int DrmCrtc::display() const { function in class:android::DrmCrtc 72 void DrmCrtc::set_display(int display) { 73 display_ = display; 76 bool DrmCrtc::can_bind(int display) const { 77 return display_ == -1 || display_ == display;
|
/external/gptfdisk/ |
parttypes.h | 28 int display; // 1 to show to users as available type, 0 not to member in struct:AType
|
/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/libpng/contrib/libtests/ |
readpng.c | 39 png_bytep row = NULL, display = NULL; local 48 if (display != NULL) free(display); 66 display = malloc(rowbytes); 68 if (row == NULL || display == NULL) 86 png_read_row(png_ptr, row, display); 95 free(display);
|
/external/mesa3d/src/egl/main/ |
eglscreen.c | 40 * To actually display a screen surface on a screen, the eglShowSurface() 90 screen->Display = dpy; 103 * Link a screen to its display and return the handle of the link. 109 _EGLDisplay *display; local 112 assert(screen && screen->Display); 113 display = screen->Display; 115 if (!display->Screens) { 116 display->Screens = _eglCreateArray("Screen", 4); 117 if (!display->Screens [all...] |
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
test_context.c | 37 Display *display; local 44 display = XOpenDisplay(NULL); 48 display, 60 XCloseDisplay(display); 66 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0); 67 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey); 72 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, NULL) == XvMCBadContext); 75 assert(XvMCCreateContext(display, -1, surface_type_id, width, height, XVMC_DIRECT, &context) == XvBadPort); 77 assert(XvMCCreateContext(display, port_num, -1, width, height, XVMC_DIRECT, &context) == BadMatch) [all...] |
test_surface.c | 37 Display *display; local 45 display = XOpenDisplay(NULL); 49 display, 61 XCloseDisplay(display); 67 Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0); 68 XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey); 71 assert(XvMCCreateContext(display, port_num, surface_type_id, width, height, XVMC_DIRECT, &context) == Success); 74 assert(XvMCCreateSurface(display, NULL, &surface) == XvMCBadContext); 76 assert(XvMCCreateSurface(display, &context, NULL) == XvMCBadSurface) [all...] |
/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;
|
/frameworks/base/core/java/android/hardware/display/ |
DisplayViewport.java | 17 package android.hardware.display; 22 * Describes how the pixels of physical display device reflects the content of 23 * a logical display. 26 * physical display coordinates into logical display coordinates. 35 // The logical display id. 41 // The portion of the logical display that are presented on this physical display. 44 // The portion of the (rotated) physical display that shows the logical display contents [all...] |
/frameworks/base/libs/hwui/ |
Image.cpp | 29 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local 33 mImage = eglCreateImageKHR(display, EGL_NO_CONTEXT,
|
/frameworks/base/libs/hwui/tests/ |
TestContext.cpp | 26 DisplayInfo display; local 29 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display); 30 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n"); 31 return display;
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
AttachInfo_Accessor.java | 34 Display display = wm.getDefaultDisplay(); local 35 ViewRootImpl root = new ViewRootImpl(context, display); 37 display, root, new Handler(), null); 40 info.mInTouchMode = false; // this is so that we can display selections.
|
/hardware/intel/common/libmix/mix_video/src/ |
mixdisplayx11.h | 74 Display *display; member in struct:_MixDisplayX11 130 Display * display); 133 Display ** dislay);
|
/packages/apps/Gallery2/jni/ |
jni_egl_fence.cpp | 40 EGLDisplay display = eglGetCurrentDisplay(); local 60 EGLDisplay display = eglGetCurrentDisplay(); 65 EGLSyncKHR fence = FuncEglCreateSyncKHR(display, EGL_SYNC_FENCE_KHR, NULL); 70 EGLint result = FuncEglClientWaitSyncKHR(display, 77 FuncEglDestroySyncKHR(display, fence);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/ |
DisplayActivity.java | 17 package com.android.tv.settings.device.display; 25 * Activity allowing the management of display settings.
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/ |
DaydreamVoiceAction.java | 17 package com.android.tv.settings.device.display.daydream;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
XShm.h | 44 Display *display; /* Display the event was read from */ member in struct:__anon30259 62 Display* /* dpy */ 66 Display* /* dpy */ 70 Display* /* dpy */, 77 Display* /* dpy */ 81 Display* /* dpy */, 86 Display* /* dpy */, 91 Display* /* dpy */ [all...] |
security.h | 40 Display *dpy, 59 Display *dpy, 66 Display *dpy, 75 Display *display; /* Display the event was read from */ member in struct:__anon30355
|