OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:compositorSupport
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/
LinkHighlight.cpp
74
WebCompositorSupport*
compositorSupport
= Platform::current()->
compositorSupport
();
75
m_contentLayer = adoptPtr(
compositorSupport
->createContentLayer(this));
76
m_clipLayer = adoptPtr(
compositorSupport
->createLayer());
261
WebCompositorSupport*
compositorSupport
= Platform::current()->
compositorSupport
();
263
OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(
compositorSupport
->createFloatAnimationCurve());
273
OwnPtr<WebAnimation> animation = adoptPtr(
compositorSupport
->createAnimation(*curve, WebAnimation::TargetPropertyOpacity));
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp
149
OwnPtr<WebTransformOperations> operations = adoptPtr(Platform::current()->
compositorSupport
()->createTransformOperations());
154
OwnPtr<WebTransformOperations> lastOperations = adoptPtr(Platform::current()->
compositorSupport
()->createTransformOperations());
171
OwnPtr<WebTransformOperations> operations = adoptPtr(Platform::current()->
compositorSupport
()->createTransformOperations());
176
OwnPtr<WebTransformOperations> lastOperations = adoptPtr(Platform::current()->
compositorSupport
()->createTransformOperations());
206
OwnPtr<WebFilterOperations> operations = adoptPtr(Platform::current()->
compositorSupport
()->createFilterOperations());
223
OwnPtr<WebFilterOperations> operations = adoptPtr(Platform::current()->
compositorSupport
()->createFilterOperations());
317
OwnPtr<blink::WebAnimation> webAnimation = adoptPtr(Platform::current()->
compositorSupport
()->createAnimation(*curve, targetProperty, animationId));
333
OwnPtr<WebTransformAnimationCurve> curve = adoptPtr(Platform::current()->
compositorSupport
()->createTransformAnimationCurve());
338
OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(Platform::current()->
compositorSupport
()->createFloatAnimationCurve());
343
OwnPtr<WebFilterAnimationCurve> curve = adoptPtr(Platform::current()->
compositorSupport
()->createFilterAnimationCurve())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp
95
OwnPtr<WebFloatAnimationCurve> curve = adoptPtr(Platform::current()->
compositorSupport
()->createFloatAnimationCurve());
97
OwnPtr<WebAnimation> floatAnimation(adoptPtr(Platform::current()->
compositorSupport
()->createAnimation(*curve, WebAnimation::TargetPropertyOpacity)));
/external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimations.cpp
445
OwnPtr<blink::WebFilterOperations> ops = adoptPtr(blink::Platform::current()->
compositorSupport
()->createFilterOperations());
461
OwnPtr<blink::WebTransformOperations> ops = adoptPtr(blink::Platform::current()->
compositorSupport
()->createTransformOperations());
500
blink::WebFloatAnimationCurve* floatCurve = blink::Platform::current()->
compositorSupport
()->createFloatAnimationCurve();
507
blink::WebFilterAnimationCurve* filterCurve = blink::Platform::current()->
compositorSupport
()->createFilterAnimationCurve();
514
blink::WebTransformAnimationCurve* transformCurve = blink::Platform::current()->
compositorSupport
()->createTransformAnimationCurve();
525
OwnPtr<blink::WebAnimation> animation = adoptPtr(blink::Platform::current()->
compositorSupport
()->createAnimation(*curve, targetProperty));
CompositorAnimationsTestHelper.h
134
blink::WebCompositorSupport*
compositorSupport
() OVERRIDE { return *m_compositor; }
/external/chromium_org/content/test/
test_webkit_platform_support.h
55
virtual blink::WebCompositorSupport*
compositorSupport
();
test_webkit_platform_support.cc
223
blink::WebCompositorSupport* TestWebKitPlatformSupport::
compositorSupport
() {
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp
114
m_layer = adoptPtr(Platform::current()->
compositorSupport
()->createContentLayer(m_opaqueRectTrackingContentLayerDelegate.get()));
1014
m_imageLayer = adoptPtr(Platform::current()->
compositorSupport
()->createImageLayer());
1038
m_ninePatchLayer = adoptPtr(Platform::current()->
compositorSupport
()->createNinePatchLayer());
[
all
...]
Canvas2DLayerBridge.cpp
91
m_layer = adoptPtr(blink::Platform::current()->
compositorSupport
()->createExternalTextureLayer(this));
/external/chromium_org/content/renderer/
renderer_webkitplatformsupport_impl.h
139
virtual blink::WebCompositorSupport*
compositorSupport
();
renderer_webkitplatformsupport_impl.cc
[
all
...]
/external/chromium_org/third_party/WebKit/public/platform/
Platform.h
555
virtual WebCompositorSupport*
compositorSupport
() { return 0; }
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp
232
OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->
compositorSupport
()->createScrollbarLayer(new blink::WebScrollbarImpl(scrollbar), painter, geometry.leakPtr()));
240
OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->
compositorSupport
()->createSolidColorScrollbarLayer(webOrientation, thumbThickness, isLeftSideVerticalScrollbar));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp
354
m_layer = adoptPtr(blink::Platform::current()->
compositorSupport
()->createExternalTextureLayer(this));
/external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.cpp
219
m_layer = WebScopedPtr<WebExternalTextureLayer>(Platform::current()->
compositorSupport
()->createExternalTextureLayer(this));
Completed in 1113 milliseconds