OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_foregroundLayer
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderLayerBacking.cpp
127
m_foregroundLayer
= 0;
459
if (
m_foregroundLayer
) {
470
m_foregroundLayer
->setPosition(foregroundPosition);
471
m_foregroundLayer
->setSize(foregroundSize);
472
m_foregroundLayer
->setOffsetFromRenderer(foregroundOffset);
493
//
m_foregroundLayer
has to be inserted in the correct order with child layers,
642
if (!
m_foregroundLayer
) {
643
m_foregroundLayer
= GraphicsLayer::create(this);
645
m_foregroundLayer
->setName(nameForLayer() + " (foreground)");
647
m_foregroundLayer
->setDrawsContent(true)
[
all
...]
RenderLayerBacking.h
87
bool hasContentsLayer() const { return
m_foregroundLayer
!= 0; }
88
GraphicsLayer* foregroundLayer() const { return
m_foregroundLayer
.get(); }
206
OwnPtr<GraphicsLayer>
m_foregroundLayer
; // only used in cases where we need to draw the foreground separately
/external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp
124
m_foregroundLayer
(0),
139
SkSafeUnref(
m_foregroundLayer
);
492
bool hasOverflowScroll =
m_foregroundLayer
|| m_contentLayer->contentIsScrollable();
509
ASSERT(!
m_foregroundLayer
&& !m_foregroundClipLayer);
510
m_foregroundLayer
= new ScrollableLayerAndroid(layer);
513
m_foregroundClipLayer->addChild(
m_foregroundLayer
);
536
if (
m_foregroundLayer
) {
537
m_foregroundLayer
->unref();
538
m_foregroundLayer
= 0;
570
if (
m_foregroundLayer
) {
[
all
...]
GraphicsLayerAndroid.h
154
ScrollableLayerAndroid*
m_foregroundLayer
;
Completed in 451 milliseconds