Searched refs:backing (Results 1 - 25 of 51) sorted by relevance

123

/external/qemu/distrib/jpeg-6b/
H A DAndroid.mk16 # use ashmem as libjpeg decoder's backing store
22 # use sdcard as libjpeg decoder's backing store
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzWindow.h40 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
H A DSDL_QuartzWindow.m185 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag
197 return [ super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag ];
/external/jpeg/
H A DAndroid.mk16 # use ashmem as libjpeg decoder's backing store
22 # use sdcard as libjpeg decoder's backing store
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTreeWindow.mm58 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
65 return [super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:deferCreation];
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestalpha.c176 static SDL_Surface *backing; variable
209 backing = SDL_CreateRGBSurface(SDL_SWSURFACE, sprite->w, sprite->h, 8,
211 if ( backing == NULL ) {
219 converted = SDL_DisplayFormat(backing);
220 SDL_FreeSurface(backing);
227 backing = converted;
255 SDL_BlitSurface(backing, NULL, screen, &updates[0]);
296 SDL_BlitSurface(screen, &updates[1], backing, NULL);
312 SDL_BlitSurface(backing, NULL, screen, &updates[0]);
316 SDL_BlitSurface(screen, &updates[1], backing, NUL
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebRenderLayer.mm85 RenderLayerBacking* backing = layer->backing();
86 switch (backing->compositingLayerType()) {
101 if (backing->hasClippingLayer())
104 if (backing->hasAncestorClippingLayer())
H A DWebVideoFullscreenController.mm78 NSWindow *window = [[WebVideoFullscreenWindow alloc] initWithContentRect:NSZeroRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
271 NSWindow *window = [[NSWindow alloc] initWithContentRect:frame styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
495 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
498 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
H A DWebFullScreenController.mm130 NSWindow *window = [[WebFullscreenWindow alloc] initWithContentRect:NSZeroRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
442 GraphicsLayer* rendererGraphics = _renderer->layer()->backing()->graphicsLayer();
504 CALayer* rendererLayer = _renderer->layer()->backing()->graphicsLayer()->platformLayer();
578 GraphicsLayer* rendererGraphics = _renderer->layer()->backing()->graphicsLayer();
800 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
803 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
H A DWebVideoFullscreenHUDWindowController.mm81 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
84 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
151 styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerCompositor.cpp373 if (!layer->backing()) {
375 // If we need to repaint, do so before making backing
383 layer->backing()->graphicsLayer()->setAcceleratesDrawing(true);
387 layer->backing()->graphicsLayer()->setAcceleratesDrawing(true);
393 if (layer->backing()) {
394 // If we're removing backing on a reflection, clear the source GraphicsLayer's pointer to
399 if (RenderLayerBacking* backing = sourceLayer->backing()) {
400 ASSERT(backing->graphicsLayer()->replicaLayer() == layer->backing()
[all...]
H A DRenderLayerBacking.cpp280 if (m_owningLayer->reflectionLayer()->backing()) {
281 GraphicsLayer* reflectionLayer = m_owningLayer->reflectionLayer()->backing()->graphicsLayer();
352 ASSERT(compAncestor->backing());
353 ancestorCompositingBounds = compAncestor->backing()->compositedBounds();
364 if (compAncestor && compAncestor->backing()->hasClippingLayer()) {
476 RenderLayerBacking* reflectionBacking = m_owningLayer->reflectionLayer()->backing();
776 // This is a useful optimization, because it allows us to avoid allocating backing store.
897 // and set background color on the layer in that case, instead of allocating backing store and painting.
912 // that require painting. Direct compositing saves backing store.
/external/webkit/Tools/WebKitTestRunner/mac/
H A DPlatformWebViewMac.mm36 m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
/external/guava/guava/src/com/google/common/collect/
H A DTreeBasedTable.java225 SortedMap<C, V> backing = backingRowMap();
226 if (backing == null) {
233 SortedMap<C, V> backing = backingRowMap();
234 if (backing == null) {
/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.cpp115 return layer->backing()->startTransition(timeOffset, m_animatingProperty, m_fromStyle.get(), m_toStyle.get());
132 layer->backing()->transitionPaused(timeOffset, m_animatingProperty);
148 layer->backing()->transitionFinished(m_animatingProperty);
H A DKeyframeAnimation.cpp254 return layer->backing()->startAnimation(timeOffset, m_animation.get(), m_keyframes);
271 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
290 layer->backing()->animationFinished(m_keyframes.animationName());
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DVideoLayerChromium.cpp102 RenderLayerBacking* backing = static_cast<RenderLayerBacking*>(m_owner->client());
103 if (!backing || backing->paintingGoesToWindow())
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebTextInputWindowController.m56 self = [super initWithContentRect:NSZeroRect styleMask:WKGetInputPanelWindowStyle() backing:NSBackingStoreBuffered defer:YES];
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKTextInputWindowController.mm55 self = [super initWithContentRect:NSZeroRect styleMask:WKGetInputPanelWindowStyle() backing:NSBackingStoreBuffered defer:YES];
/external/webkit/Source/WebKit2/UIProcess/Plugins/mac/
H A DPluginProcessProxyMac.mm159 m_placeholderWindow.adoptNS([[WKPlaceholderModalWindow alloc] initWithContentRect:NSMakeRect(0, 0, 1, 1) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]);
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebInspectorProxyMac.mm101 NSWindow *window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, initialWindowWidth, initialWindowHeight) styleMask:styleMask backing:NSBackingStoreBuffered defer:NO];
H A DWKFullScreenWindowController.mm98 NSWindow *window = [[WKFullScreenWindow alloc] initWithContentRect:NSZeroRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
537 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
540 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
/external/webkit/Tools/TestWebKitAPI/mac/
H A DPlatformWebViewMac.mm38 m_window = [[NSWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES];
/external/webkit/Source/WebKit/mac/Carbon/
H A DCarbonWindowAdapter.mm84 - (id)_initContent:(const NSRect *)contentRect styleMask:(unsigned int)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag contentView:aView;
120 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)style backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag {
123 self = [super initWithContentRect:contentRect styleMask:style backing:bufferingType defer:flag];
166 // Figure out the window's backing store type.
190 self = (CarbonWindowAdapter*)[super _initContent:NULL styleMask:styleMask backing:backingStoreType defer:YES contentView:carbonWindowContentView];
516 // There's no override of _commonInitFrame:styleMask:backing:defer:, despite the fact that NSWindow's modifies quite a few instance variables, because it gets called in a harmless way if the class instance is properly initialized with -[NSCarbonWindow initWithCarbonWindowRef:takingOwnership:].
541 // There's no override of _initContent:styleMask:backing:defer:contentView:, despite the fact that NSWindow's modifies _auxiliaryStorage->_auxWFlags.hasShadow, because it will never get called if the class instance is properly initialized with -[NSCarbonWindow initWithCarbonWindowRef:takingOwnership:].
544 // There's no override of _initContent:styleMask:backing:defer:counterpart:, despite the fact that NSWindow's modifies _auxiliaryStorage->_auxWFlags.hasShadow, because it will never get called if the class instance is properly initialized with -[NSCarbonWindow initWithCarbonWindowRef:takingOwnership:].
/external/webkit/Source/WebKit/mac/WebInspector/
H A DWebNodeHighlight.mm56 _highlightWindow = [[NSWindow alloc] initWithContentRect:contentRect styleMask:styleMask backing:NSBackingStoreBuffered defer:NO];

Completed in 3823 milliseconds

123