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

1 2 3

  /external/chromium_org/content/common/gpu/
x_util.h 31 typedef struct _XDisplay Display;
  /external/clang/utils/analyzer/
ubiviz 11 # display in Ubigraph.
28 def Display(G, data):
66 Display(G,x)
  /external/chromium_org/chrome/browser/notifications/
notification_object_proxy.cc 26 void NotificationObjectProxy::Display() {
  /external/chromium_org/third_party/skia/gm/
display_json_results.py 6 """Utility to display a summary of JSON-format GM results, and exit with
75 def Display(filepath):
114 sys.exit(0 if Display(sys.argv[1]) else 1)
  /external/chromium_org/cc/surfaces/
display.cc 5 #include "cc/surfaces/display.h"
22 Display::Display(DisplayClient* client,
33 Display::~Display() {
37 void Display::Resize(SurfaceId id, const gfx::Size& size) {
43 void Display::InitializeOutputSurface() {
90 bool Display::Draw() {
105 TRACE_EVENT0("cc", "Display::Draw");
135 void Display::DidSwapBuffers()
    [all...]
display.h 34 // A Display produces a surface that can be used to draw to a physical display
36 // surface IDs used to draw into the display and deciding when to draw.
37 class CC_SURFACES_EXPORT Display : public OutputSurfaceClient,
41 Display(DisplayClient* client,
44 virtual ~Display();
95 DISALLOW_COPY_AND_ASSIGN(Display);
  /external/chromium_org/ui/gfx/
display.cc 5 #include "ui/gfx/display.h"
42 const int64 Display::kInvalidDisplayID = -1;
45 float Display::GetForcedDeviceScaleFactor() {
52 bool Display::HasForceDeviceScaleFactor() {
58 Display::Display()
65 Display::Display(int64 id)
72 Display::Display(int64 id, const gfx::Rect& bounds
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
MixedContentChecker.h 55 return canDisplayInsecureContentInternal(securityOrigin, url, MixedContentChecker::Display);
74 Display,
  /external/chromium_org/third_party/angle/src/libEGL/
Display.h 7 // Display.h: Defines the egl::Display class, representing the abstract
8 // display on which graphics are drawn. Implements EGLDisplay.
28 class Display
31 ~Display();
36 static egl::Display *getDisplay(EGLNativeDisplayType displayId, EGLint displayType);
38 static const char *getExtensionString(egl::Display *display);
69 DISALLOW_COPY_AND_ASSIGN(Display);
71 Display(EGLNativeDisplayType displayId, EGLint displayType)
    [all...]
  /external/chromium_org/third_party/mesa/src/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/chromium_org/ui/events/x/
device_list_cache_x.h 18 typedef struct _XDisplay Display;
44 void UpdateDeviceList(Display* display);
46 // Returns the list of devices associated with |display|. Uses the old X11
48 const XDeviceList& GetXDeviceList(Display* display);
50 // Returns the list of devices associated with |display|. Uses the newer
54 const XIDeviceList& GetXI2DeviceList(Display* display);
62 std::map<Display*, XDeviceList> x_dev_list_map_
    [all...]
touch_factory_x11.h 22 typedef struct _XDisplay Display;
41 void UpdateDeviceList(Display* display);
106 void CacheTouchscreenIds(Display* display, int id);
  /external/chromium_org/ui/message_center/
notification_delegate.cc 25 void HandleNotificationClickedDelegate::Display() {
57 void HandleNotificationButtonClickDelegate::Display() {
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_x11.h 15 class Display;
20 typedef struct _XDisplay Display;
40 virtual std::vector<gfx::Display> GetAllDisplays() const OVERRIDE;
41 virtual gfx::Display GetDisplayNearestWindow(
43 virtual gfx::Display GetDisplayNearestPoint(
45 virtual gfx::Display GetDisplayMatching(
47 virtual gfx::Display GetPrimaryDisplay() const OVERRIDE;
59 DesktopScreenX11(const std::vector<gfx::Display>& test_displays);
63 std::vector<gfx::Display> BuildDisplaysFromXRandRInfo();
65 // We delay updating the display so we can coalesce events
    [all...]
  /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/chromium_org/gpu/gles2_conform_support/egl/
display.cc 5 #include "gpu/gles2_conform_support/egl/display.h"
27 Display::Display(EGLNativeDisplayType display_id)
35 Display::~Display() {
39 bool Display::Initialize() {
45 bool Display::IsValidConfig(EGLConfig config) {
49 bool Display::ChooseConfigs(EGLConfig* configs,
64 bool Display::GetConfigs(EGLConfig* configs,
79 bool Display::GetConfigAttrib(EGLConfig config
    [all...]
  /external/deqp/framework/egl/
tcuEgl.cpp 39 Display::Display (EGLDisplay display, EGLint majorVersion, EGLint minorVersion)
40 : m_display(display)
46 Display::Display (EGLNativeDisplayType nativeDisplay)
56 Display::~Display ()
62 void Display::getConfigs (std::vector<EGLConfig>& configs) const
71 void Display::chooseConfig (const EGLint* attribList, std::vector<EGLConfig>& configs) cons
    [all...]
  /external/deqp/framework/platform/X11/
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...]
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...]
  /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/chromium_org/ash/system/locale/
locale_notification_controller.cc 35 virtual void Display() OVERRIDE;
57 void LocaleNotificationDelegate::Display() {
  /external/chromium_org/chrome/browser/ui/cocoa/apps/
quit_with_apps_controller_mac.cc 73 void QuitWithAppsController::Display() {}
  /external/chromium_org/chrome/browser/chromeos/net/
network_portal_notification_controller.cc 57 virtual void Display() OVERRIDE;
70 void NetworkPortalNotificationControllerDelegate::Display() {
  /external/chromium_org/chrome/browser/signin/
signin_error_notifier_ash.cc 53 virtual void Display() OVERRIDE;
86 void SigninNotificationDelegate::Display() {
  /external/chromium_org/chrome/browser/sync/
sync_error_notifier_ash.cc 48 virtual void Display() OVERRIDE;
81 void SyncNotificationDelegate::Display() {

Completed in 622 milliseconds

1 2 3