Searched defs:display (Results 101 - 125 of 425) sorted by path

1234567891011>>

/external/chromium_org/gpu/gles2_conform_support/native/
H A Degl_native_windowless.cc5 #include "gpu/gles2_conform_support/egl/display.h"
27 egl::Display* display = static_cast<egl::Display*>(eglDisplay); local
28 display->SetCreateOffscreen(width, height);
/external/chromium_org/media/tools/player_x11/
H A Dgl_video_renderer.cc18 static GLXContext InitGLContext(Display* display, Window window) { argument
29 XGetWindowAttributes(display, window, &attributes);
33 XVisualInfo* visual_info_list = XGetVisualInfo(display, VisualIDMask,
38 context = glXCreateContext(display, visual_info_list + i, 0,
47 if (!glXMakeCurrent(display, window, context)) {
48 glXDestroyContext(display, context);
103 GlVideoRenderer::GlVideoRenderer(Display* display, Window window) argument
104 : display_(display),
H A Dx11_video_renderer.cc18 static XImage* CreateImage(Display* display, int width, int height) { argument
20 return XCreateImage(display,
21 DefaultVisual(display, DefaultScreen(display)),
22 DefaultDepth(display, DefaultScreen(display)),
71 X11VideoRenderer::X11VideoRenderer(Display* display, Window window) argument
72 : display_(display),
/external/chromium_org/media/video/capture/linux/
H A Dvideo_capture_device_chromeos.cc10 #include "ui/gfx/display.h"
50 virtual void OnDisplayMetricsChanged(const gfx::Display& display,
55 SendDisplayRotation(display);
77 void SendDisplayRotation(const gfx::Display& display) { argument
82 this, display));
85 void SendDisplayRotationOnCaptureThread(const gfx::Display& display) { argument
88 capture_device_->SetDisplayRotation(display);
111 const gfx::Display& display) {
112 if (display.IsInternal())
113 SetRotation(display
110 SetDisplayRotation( const gfx::Display& display) argument
[all...]
/external/chromium_org/mojo/services/surfaces/
H A Dsurfaces_service_application.cc7 #include "cc/surfaces/display.h"
44 void SurfacesServiceApplication::SetDisplay(cc::Display* display) { argument
45 display_ = display;
/external/chromium_org/remoting/host/
H A Dcurtain_mode_linux.cc50 Display* display = XOpenDisplay(NULL); local
52 if (!XQueryExtension(display, "XInputExtension", &opcode, &event, &error)) {
55 XCloseDisplay(display);
63 devices = XListInputDevices(display, &num_devices);
97 XCloseDisplay(display);
H A Ddesktop_resizer_linux.cc76 bool Refresh(Display* display, Window window) { argument
78 resources_ = XRRGetScreenResources(display, window);
112 XRROutputInfo* GetOutputInfo(Display* display, RROutput output_id) { argument
114 return XRRGetOutputInfo(display, resources_, output_id);
235 // Ignore X errors encountered while resizing the display. We might hit an
241 // Grab the X server while we're changing the display resolution. This ensures
242 // that the display configuration doesn't change under our feet.
H A Ddesktop_resizer_mac.cc34 // If there is a single display, get its id and return true, otherwise return
36 bool GetSoleDisplayId(CGDirectDisplayID* display);
48 CGDirectDisplayID display; local
49 if (!base::mac::IsOSSnowLeopard() && GetSoleDisplayId(&display)) {
50 CGRect rect = CGDisplayBounds(display);
67 CGDirectDisplayID display; local
68 if (base::mac::IsOSSnowLeopard() || !GetSoleDisplayId(&display)) {
112 CGDisplaySetDisplayMode(display, best_mode, NULL);
123 CGDirectDisplayID display; local
124 if (!GetSoleDisplayId(&display)) {
155 GetSoleDisplayId(CGDirectDisplayID* display) argument
[all...]
H A Dinput_injector_linux.cc36 bool FindKeycodeForKeySym(Display* display, argument
40 *keycode = XKeysymToKeycode(display, key_sym);
57 display, *keycode, kModifiersToTry[i], NULL, &key_sym_with_mods) &&
69 bool FindKeycodeForUnicode(Display* display, argument
78 if (FindKeycodeForKeySym(display, *it, keycode, modifiers)) {
/external/chromium_org/remoting/host/linux/
H A Dx11_util.cc31 void IgnoreXErrors(Display* display, XErrorEvent* error) {} argument
39 int ScopedXErrorHandler::HandleXErrors(Display* display, XErrorEvent* error) { argument
42 g_handler->handler_.Run(display, error);
47 ScopedXGrabServer::ScopedXGrabServer(Display* display) argument
48 : display_(display) {
H A Dx_server_clipboard.cc33 void XServerClipboard::Init(Display* display, argument
35 display_ = display;
223 selection_event.display = event->xselectionrequest.display;
H A Dx_server_clipboard_unittest.cc25 void Init(Display* display) { argument
26 display_ = display;
27 clipboard_.Init(display,
56 Display* display() const { return display_; } function in class:remoting::__anon10440::ClipboardTestClient
82 XCloseDisplay(client1_.display());
83 XCloseDisplay(client2_.display());
/external/chromium_org/remoting/webapp/
H A Dhost_list.js23 * @param {Element} errorMsg The HTML <div> to display error messages.
24 * @param {Element} errorButton The HTML <button> to display the error
100 that.refresh(that.display.bind(that));
189 * include a JSON-encoded list of host descriptions, which we display if we're
260 remoting.HostList.prototype.display = function() {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js1579 return $(element).style.display != 'none';
1590 element.style.display = 'none';
1596 element.style.display = '';
1943 var display = element.getStyle('display');
1944 if (display != 'none' && display != null) // Safari bug
1947 // All *Width and *Height properties give 0 on elements with display none,
1952 var originalDisplay = els.display;
1955 els.display
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp59 static EDisplay equivalentBlockDisplay(EDisplay display, bool isFloating, bool strictParsing) argument
61 switch (display) {
67 return display;
73 return display;
107 return style->display() == TABLE || style->display() == INLINE_TABLE
108 || style->display() == INLINE_BLOCK || style->display() == INLINE_BOX || isAtShadowBoundary(e)
159 if (style->display() != NONE) {
167 // Absolute/fixed positioned elements, floating elements and the document element need block-like outside display
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4283 ConsoleDisplayPreference display = (mode == RealLostContext) ? DisplayInConsole: DontDisplayInConsole; local
4284 synthesizeGLError(GC3D_CONTEXT_LOST_WEBGL, "loseContext", "context lost", display);
5645 void WebGLRenderingContextBase::synthesizeGLError(GLenum error, const char* functionName, const char* description, ConsoleDisplayPreference display) argument
5648 if (m_synthesizedErrorsToConsole && display == DisplayInConsole) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp3540 // Force inline display (except for floating first-letters).
3599 if (pseudoStyle->display() == INLINE)
3676 if (pseudoStyle->display() == INLINE)
4035 return createAnonymousWithParentRendererAndDisplay(parent, style()->display());
4216 RenderBlock* RenderBlock::createAnonymousWithParentRendererAndDisplay(const RenderObject* parent, EDisplay display) argument
4221 if (display == FLEX || display == INLINE_FLEX) {
H A DRenderTable.cpp123 EDisplay display = object->style()->display(); local
124 return display != TABLE_CAPTION && display != TABLE_COLUMN_GROUP && display != TABLE_COLUMN;
137 switch (child->style()->display()) {
820 switch (child->style()->display()) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp86 PassRefPtr<RenderStyle> RenderStyle::createAnonymousStyleWithDisplay(const RenderStyle* parentStyle, EDisplay display) argument
91 newStyle->setDisplay(display);
180 if (oldStyle->display() != newStyle->display()
H A DRenderStyle.h435 EDisplay display() const { return static_cast<EDisplay>(noninherited_flags.effectiveDisplay); } function in class:blink::RenderStyle
1503 bool isDisplayReplacedType() const { return isDisplayReplacedType(display()); }
1504 bool isDisplayInlineType() const { return isDisplayInlineType(display()); }
1506 bool isDisplayFlexibleOrGridBox() const { return isDisplayFlexibleBox(display()) || isDisplayGridBox(display()); }
1758 bool isDisplayFlexibleBox(EDisplay display) const
1760 return display == FLEX || display == INLINE_FLEX;
1763 bool isDisplayGridBox(EDisplay display) const
1765 return display
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DStylesSidebarPane.js1924 this._alwaysShowComputedProperties = { "display": true, "height": true, "width": true };
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js396 CodeMirror.prototype.display;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js377 "display": { values: [
796 "display": 210,
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/angle/samples/angle/post_sub_buffer/
H A DPostSubBuffer.cpp146 EGLDisplay display = getDisplay(); local
148 mPostSubBufferNV(display, surface, 60, 60, windowWidth - 120, windowHeight - 120);

Completed in 1036 milliseconds

1234567891011>>