HomeSort by relevance Sort by last modified time
    Searched refs:display (Results 226 - 250 of 1752) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
testlib.h 42 * display: IN A valid X display
43 * width, height: IN Surface size that the port must display
44 * chroma_format: IN Chroma format that the port must display
53 Display *display,
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
HoughCircle_Demo.cpp 37 Mat display = src_display.clone(); local
43 circle( display, center, 3, Scalar(0,255,0), -1, 8, 0 );
45 circle( display, center, radius, Scalar(0,0,255), 3, 8, 0 );
49 imshow( windowName, display);
90 // infinite loop to display
101 //runs the detection, and update the display
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DumpCommand.java 21 import android.hardware.display.DisplayManagerGlobal;
23 import android.view.Display;
94 Display display = local
95 DisplayManagerGlobal.getInstance().getRealDisplay(Display.DEFAULT_DISPLAY);
96 int rotation = display.getRotation();
98 display.getSize(size);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
RecentsComponent.java 20 import android.view.Display;
26 void toggleRecents(Display display);
  /frameworks/support/compat/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...]
  /hardware/bsp/intel/peripheral/displays/Grove_LCD_RGB/
groveLCD.cpp 18 * This is an example to display text on the Grove
19 * LCD RGB Display panel.
57 printf("Prints a message on the Grove LCD RGB Display\n");
116 upm::Jhd1313m1 display(mraa_get_default_i2c_bus(MRAA_MAIN_PLATFORM_OFFSET));
117 display.write(options.display_text.c_str());
118 display.setColor(options.red, options.green, options.blue);
121 display.displayOff();
  /hardware/intel/img/hwcomposer/merrifield/include/
IDisplayContext.h 34 virtual bool commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList) = 0;
IDisplayDevice.h 26 // display config
51 // display device interface
54 // display device type
74 virtual bool prePrepare(hwc_display_contents_1_t *display) = 0;
75 virtual bool prepare(hwc_display_contents_1_t *display) = 0;
76 virtual bool commit(hwc_display_contents_1_t *display,
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
IDisplayContext.h 34 virtual bool commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList) = 0;
  /hardware/libhardware/tests/hwc/
util.h 28 void egl_destroy(EGLDisplay display, EGLSurface surface);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DaydreamActivity.java 17 package com.android.tv.settings.device.display.daydream;
  /external/libpng/contrib/gregbook/
rpng-x.c 3 rpng - simple PNG display program rpng-x.c
28 - 2.01: fixed improper display of usage screen on PNG error(s)
58 software must display the following acknowledgment:
142 static Display *display; variable
175 double default_display_exponent; /* whole display system */
184 /* First set the default value for our display-system exponent, i.e.,
238 if (!strncmp(*argv, "-display", 2)) {
281 "Usage: %s [-display xdpy] [-gamma exp] [-bgcolor bg] file.png\n"
282 " xdpy\tname of the target X display (e.g., ``hostname:0'')\n
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_session.cpp 82 const char *qservice_name = "display.qservice";
100 DLOGE("Display core initialization failed. Error = %d", error);
104 // Read which display is first, and create it and store it in primary slot
110 // HDMI is primary display. If already connected, then create it and store in
111 // primary display slot. If not connected, create a NULL display for now.
115 // Create and power on primary display
152 DLOGE("Display core de-initialization failed. Error = %d", error);
218 static int32_t AcceptDisplayChanges(hwc2_device_t *device, hwc2_display_t display) {
219 return HWCSession::CallDisplayFunction(device, display, &HWCDisplay::AcceptDisplayChanges)
1213 auto display = static_cast<hwc2_display_t >(input_parcel->readInt32()); local
    [all...]
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 22 import android.view.Display;
32 * It displays the name of the display in which it has been embedded (see
34 * background color and display its text.
42 public SamplePresentation(Context outerContext, Display display) {
43 super(outerContext, display);
51 setContentView(R.layout.display);
58 * Show the name of the display this presentation was embedded in.
66 * Set the background color of the layout and display the color as a String.
73 // Display the color as a string on scree
    [all...]
  /developers/samples/android/media/BasicMediaRouter/Application/src/main/java/com/example/android/basicmediarouter/
SamplePresentation.java 22 import android.view.Display;
32 * It displays the name of the display in which it has been embedded (see
34 * background color and display its text.
42 public SamplePresentation(Context outerContext, Display display) {
43 super(outerContext, display);
51 setContentView(R.layout.display);
58 * Show the name of the display this presentation was embedded in.
66 * Set the background color of the layout and display the color as a String.
73 // Display the color as a string on scree
    [all...]
  /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()));
  /development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/
SamplePresentation.java 22 import android.view.Display;
32 * It displays the name of the display in which it has been embedded (see
34 * background color and display its text.
42 public SamplePresentation(Context outerContext, Display display) {
43 super(outerContext, display);
51 setContentView(R.layout.display);
58 * Show the name of the display this presentation was embedded in.
66 * Set the background color of the layout and display the color as a String.
73 // Display the color as a string on scree
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DemoKitLaunch.java 8 import android.view.Display;
14 Display display = activity.getWindowManager().getDefaultDisplay(); local
15 int maxExtent = Math.max(display.getWidth(), display.getHeight());
  /external/autotest/frontend/client/src/autotest/tko/
ParameterizedFieldListPresenter.java 20 public interface Display {
32 private Display display; field in class:ParameterizedFieldListPresenter
34 private Map<ParameterizedField, Display.FieldWidget> fieldInputMap =
35 new HashMap<ParameterizedField, Display.FieldWidget>();
47 public void bindDisplay(Display display) {
48 this.display = display;
49 display.getAddLink().addClickHandler(this)
    [all...]
  /external/deqp/framework/egl/
egluConfigFilter.hpp 46 CandidateConfig (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config);
80 eglw::EGLDisplay display; member in struct:eglu::CandidateConfig::__anon10564::__anon10565
98 bool match (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config) const;
  /external/deqp/modules/egl/
teglMultiContextTests.cpp 94 eglw::EGLConfig getConfig (const eglw::Library& egl, eglw::EGLDisplay display)
98 return eglu::chooseSingleConfig(egl, display, filters);
123 const eglu::UniqueDisplay display (egl, eglu::getAndInitDisplay(m_eglTestCtx.getNativeDisplay()));
124 const eglw::EGLConfig config = getConfig(egl, *display);
126 const eglu::UniqueSurface surface (egl, *display, m_use != USE_NONE ? egl.createPbufferSurface(*display, config, pbufferAttribList) : EGL_NO_SURFACE);
147 const eglw::EGLContext context = egl.createContext(*display, config, sharedContext, attribList);
175 const eglw::EGLBoolean result = egl.makeCurrent(*display, *surface, *surface, context);
198 EGLU_CHECK_CALL(egl, destroyContext(*display, contexts[contextNdx]));
203 EGLU_CHECK_CALL(egl, makeCurrent(*display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT))
    [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);
  /external/robolectric/v1/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);
  /frameworks/base/libs/hwui/tests/common/
TestContext.cpp 40 DisplayInfo display; local
43 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display);
44 LOG_ALWAYS_FATAL_IF(status, "Failed to get display info\n");
45 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.

Completed in 1743 milliseconds

1 2 3 4 5 6 7 8 91011>>