/external/clang/utils/analyzer/ |
ubiviz | 11 # display in Ubigraph. 28 def Display(G, data): 66 Display(G,x)
|
/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/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;
|
eglconfig.h | 44 _EGLDisplay *Display;
|
egldisplay.h | 69 * A resource of a display. 73 /* which display the resource belongs to */ 74 _EGLDisplay *Display; 127 _EGLPlatformType Platform; /**< The type of the platform display */ 128 void *PlatformDisplay; /**< A pointer to the platform display */ 130 _EGLDriver *Driver; /**< Matched driver of the display */ 131 EGLBoolean Initialized; /**< True if the display is initialized */ 133 /* options that affect how the driver initializes the display */ 188 * Lookup a handle to find the linked display. 189 * Return NULL if the handle has no corresponding linked display [all...] |
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
LwjglDisplay.java | 55 DisplayMode[] modes = Display.getAvailableDisplayModes();
65 listener.handleError("Failed to acquire fullscreen display mode!", ex);
73 displayMode = Display.getDesktopDisplayMode();
79 throw new RuntimeException("Unable to find fullscreen display mode matching settings");
95 logger.log(Level.INFO, "Selected display mode: {0}", displayMode);
103 Display.destroy();
108 Display.setTitle(settings.getTitle());
111 Display.setDisplayModeAndFullscreen(displayMode);
113 Display.setFullscreen(false);
114 Display.setDisplayMode(displayMode); [all...] |
LwjglAbstractDisplay.java | 50 import org.lwjgl.opengl.Display; 64 * @return Type.Display or Type.Canvas 69 * Set the title if its a windowed display 75 * Restart if its a windowed or full-screen display. 91 * Does LWJGL display initialization in the OpenGL thread 119 if (Display.isCreated()) 120 Display.destroy(); 125 listener.handleError("Failed to create display", ex); 126 return; // if we failed to create display, do not continue 160 Display.update(false) [all...] |
LwjglCanvas.java | 47 import org.lwjgl.opengl.Display;
104 logger.log(Level.INFO, "EDT: Telling OGL to create display ..");
116 // logger.log(Level.INFO, "EDT: OGL has created the display");
129 logger.log(Level.INFO, "EDT: Telling OGL to destroy display ..");
193 logger.log(Level.INFO, "OGL: Creating display ..");
199 logger.log(Level.INFO, "OGL: Destroying display ..");
223 Display.sync(30);
261 logger.log(Level.INFO, "OGL: Creating display context ..");
267 logger.log(Level.INFO, "OGL: Display is active!");
372 if (Display.isCreated()){ [all...] |
/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; } 118 UniquePtr<x11::Display> m_display; 131 Window (Display& display, 146 Window::Window (Display& display, const WindowParams& params, Visual* visual 188 Display& display = *dynamic_cast<Display*>(nativeDisplay); local 201 Display& display = *dynamic_cast<Display*>(nativeDisplay); local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/system/ |
JmeContext.java | 51 * A display can represent a windowed or a fullscreen-exclusive display. 54 * are encouraged to not use AWT or Swing to create the OpenGL display 56 * display with the windowing system. 58 Display, 79 * display, input, or sound support. 90 * @param settings the display settings to use for the created context. If 103 * @return The current display settings. Note that they might be 140 * Sets the title of the display (if available). This does nothing 142 * @param title The new title of the display [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...] |
/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 | 35 public class Display extends Activity implements View.OnClickListener { 40 setContentView(R.layout.display);
|
/external/libvncserver/webclients/novnc/include/ |
display.js | 12 function Display(defaults) { 18 // Private Display namespace variables 44 ['logo', 'rw', 'raw', null, 'Logo to display when cleared: {"width": width, "height": height, "data": data}'], 47 ['scale', 'rw', 'float', 1.0, 'Display area scale factor 0.0 - 1.0'], 49 ['width', 'rw', 'int', null, 'Display area width'], 50 ['height', 'rw', 'int', null, 'Display area height'], 77 Util.Debug(">> Display.constructor"); 144 Util.Debug("<< Display.constructor"); 175 //Util.Debug("Display already scaled to '" + factor + "'"); 210 Util.Debug("Setting viewport to full display region") [all...] |
/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...] |
Display.java | 23 import android.hardware.display.DisplayManagerGlobal; 34 * Provides information about the size and density of a logical display. 36 * The display area is described in two different ways. 38 * <li>The application display area specifies the part of the display that may contain 39 * an application window, excluding the system decorations. The application display area may 40 * be smaller than the real display area because the system subtracts the space needed 42 * application display area: {@link #getSize}, {@link #getRectSize} and {@link #getMetrics}.</li> 43 * <li>The real display area specifies the part of the display that contains conten [all...] |
/hardware/intel/common/utils/ISV/include/ |
isv_worker.h | 30 #define Display unsigned int 35 * top and bottom field and display ordering is top field first. 41 * top and bottom field and display ordering is bottom field first. 113 // set video display mode 116 // get video display mode 164 Display * mDisplay;
|
/hardware/intel/common/libmix/videodecoder/ |
VideoDecoderBase.h | 31 #ifndef Display 33 typedef char Display; 35 typedef unsigned int Display; 126 Display *mDisplay; 142 bool mShowFrame; // indicate whether the decoded frame is for display
|
/external/libvpx/libvpx/third_party/libwebm/ |
mkvparser.cpp | [all...] |
/external/libvpx/libwebm/ |
mkvparser.cpp | [all...] |