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

1 2 3 4

  /external/libvncserver/webclients/novnc/include/
display.js 12 var Display;
17 Display = function (defaults) {
45 Util.Debug(">> Display.constructor");
90 Display.changeCursor(this._target, curDat, curDat, 2, 2, 8, 8);
108 Util.Debug("<< Display.constructor");
111 Display.prototype = {
119 Util.Debug("Setting viewport to full display region");
463 Display.changeCursor(this._target, pixels, mask, hotx, hoty, w, h);
465 Display.changeCursor(this._target, pixels, mask, hotx, hoty, w, h, this._colourMap);
622 Util.make_properties(Display, [
    [all...]
  /external/clang/utils/analyzer/
ubiviz 11 # display in Ubigraph.
28 def Display(G, data):
66 Display(G,x)
  /external/rmi4utils/f54test/
display.h 21 class Display
24 Display() {}
25 virtual ~Display() {}
32 class AnsiConsole : public Display
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
Display.java 25 * Convenience class for getting display related attributes
27 public final class Display {
38 * Returns logical density of the display.
  /hardware/intel/common/libva/test/basic/
test_android.c 24 #define Display unsigned int
25 Display *dpy;
33 dpy = (Display*)malloc(sizeof(Display));
36 status("malloc Display: dpy = %08x\n", dpy);
54 status("free Display\n");
  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiPlatform.hpp 50 class Display
53 virtual ~Display (void) {}
58 Display (void) {}
61 Display (const Display&); // Not allowed
62 Display& operator= (const Display&); // Not allowed
75 struct DisplayInterface : public Display
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanel.java 7 public static interface Display {
12 private Display display; field in class:CheckBoxPanel
14 public void bindDisplay(Display display) {
15 this.display = display;
19 return display.generateCheckBox(checkBoxes.size());
ControlTypeSelect.java 4 public static interface Display {
9 private Display display; field in class:ControlTypeSelect
11 public void bindDisplay(Display display) {
12 this.display = display;
13 display.getClient().setText(TestSelector.CLIENT_TYPE);
14 display.getServer().setText(TestSelector.SERVER_TYPE);
18 if (display.getClient().getValue())
    [all...]
RadioChooser.java 7 public static interface Display {
16 private Display display; field in class:RadioChooser
18 public void bindDisplay(Display display) {
19 this.display = display;
28 IRadioButton button = display.generateRadioButton(groupName, choice);
  /external/mesa3d/src/egl/main/
eglscreen.h 47 * one of several display modes (width/height/scanrate). The screen
49 * as large as the display mode's resolution. If it's larger, the
55 _EGLDisplay *Display;
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.cpp 49 class Display : public eglu::NativeDisplay
52 Display (void) : eglu::NativeDisplay(DISPLAY_CAPABILITIES) {}
53 ~Display (void) {}
89 eglu::NativeWindow* createWindow (eglu::NativeDisplay* display, const eglu::WindowParams& params) const;
102 return new Display();
  /external/deqp/framework/platform/X11/
tcuX11.hpp 59 class Display
62 Display (EventState& platform, const char* name);
63 virtual ~Display (void);
65 ::Display* getXDisplay (void) { return m_display; }
74 ::Display* m_display;
78 Display (const Display&);
79 Display& operator= (const Display&);
85 Window (Display& display, int width, int height
    [all...]
tcuX11.cpp 62 Display::Display (EventState& eventState, const char* name)
69 throw ResourceError("Failed to open display", name, __FILE__, __LINE__);
74 Display::~Display (void)
79 void Display::processEvents (void)
93 bool Display::getVisualInfo (VisualID visualID, XVisualInfo& dst)
114 ::Visual* Display::getVisual (VisualID visualID)
124 Window::Window (Display& display, int width, int height, ::Visual* visual
    [all...]
tcuX11EglPlatform.cpp 37 typedef ::Display* EGLNativeDisplayType;
99 class Display : public NativeDisplay
105 Display (MovePtr<x11::Display> x11Display)
114 x11::Display& getX11Display (void) { return *m_display; }
119 UniquePtr<x11::Display> m_display;
132 Window (Display& display,
147 Window::Window (Display& display, const WindowParams& params, Visual* visual
189 Display& display = *dynamic_cast<Display*>(nativeDisplay); local
202 Display& display = *dynamic_cast<Display*>(nativeDisplay); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDeviceInfo.java 17 package com.android.server.display;
19 import android.hardware.display.DisplayViewport;
21 import android.view.Display;
29 * Describes the characteristics of a physical display device.
33 * Flag: Indicates that this display device should be considered the default display
39 * Flag: Indicates that the orientation of this display device is coupled to the
40 * rotation of its associated logical display.
42 * This flag should be applied to the default display to indicate that the user
43 * physically rotates the display when content is presented in a different orientation
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGraphics.java 28 import org.lwjgl.opengl.Display;
94 return (int)(Display.getHeight() * Display.getPixelScaleFactor());
101 return (int)(Display.getWidth() * Display.getPixelScaleFactor());
157 System.setProperty("org.lwjgl.opengl.Display.enableHighDPI", "true");
161 Display.setParent(canvas);
189 throw new GdxRuntimeException("Couldn't set display mode " + config.width + "x" + config.height + ", fullscreen: "
206 Display.setIcon(icons);
209 Display.setTitle(config.title)
    [all...]
LwjglApplication.java 23 import org.lwjgl.opengl.Display;
156 Display.processMessages();
157 if (Display.isCloseRequested()) exit();
159 boolean isActive = Display.isActive();
194 graphics.config.x = Display.getX();
195 graphics.config.y = Display.getY();
196 if (graphics.resize || Display.wasResized()
197 || (int)(Display.getWidth() * Display.getPixelScaleFactor()) != graphics.config.width
198 || (int)(Display.getHeight() * Display.getPixelScaleFactor()) != graphics.config.height)
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9HWR.h 40 typedef unsigned int Display;
122 Display* mDisplay;
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
RotationBufferProvider.h 33 #define Display unsigned int
74 Display mDisplay;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
RotationBufferProvider.h 33 #define Display unsigned int
74 Display mDisplay;
  /packages/apps/Settings/src/com/android/settings/
Display.java 34 public class Display extends Activity implements View.OnClickListener {
39 setContentView(R.layout.display);
  /frameworks/base/core/java/android/view/
DisplayInfo.java 31 * Describes the characteristics of a particular logical display.
36 * The surface flinger layer stack associated with this logical display.
41 * Display flags.
46 * Display type.
51 * Display address, or null if none.
52 * Interpretation varies by display type.
57 * The human-readable name of the display.
62 * Unique identifier for the display. Shouldn't be displayed to the user.
67 * The width of the portion of the display that is available to applications, in pixels.
68 * Represents the size of the display minus any system decorations
    [all...]
  /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...]
SpreadsheetHeaderSelect.java 24 public interface Display {
32 private Display display; field in class:SpreadsheetHeaderSelect
40 public void bindDisplay(Display display) {
41 this.display = display;
43 headerSelect.bindDisplay(display.getDoubleListDisplay());
44 headerSelect.multiListSelect.bindToggleDisplay(display.getToggleDisplay());
45 display.getFixedValuesToggle().addClickHandler(this)
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/
EmbeddedSpreadsheetPresenter.java 26 public interface Display {
57 private Display display; field in class:EmbeddedSpreadsheetPresenter
59 public void bindDisplay(Display display) {
60 this.display = display;
102 display.showNoResults();
106 display.showSpreadsheet();
108 new SpreadsheetDataProcessor(display.getSpreadsheet())
    [all...]

Completed in 677 milliseconds

1 2 3 4