OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constrainedSize
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp
73
, m_constrainedSize(
constrainedSize
(bounds().size))
92
m_constrainedSize =
constrainedSize
(rect.size);
161
CGSize WebTiledLayer::
constrainedSize
(const CGSize& size) const
166
CGSize
constrainedSize
= size;
168
int tileColumns = ceilf(
constrainedSize
.width / m_tileSize.width);
169
int tileRows = ceilf(
constrainedSize
.height / m_tileSize.height);
182
tileRows = ceilf(sqrtf(cMaxTileCount *
constrainedSize
.height /
constrainedSize
.width));
186
constrainedSize
.width = tileColumns * m_tileSize.width;
187
constrainedSize
.height = tileRows * m_tileSize.height
[
all
...]
WebTiledLayer.h
67
CGSize
constrainedSize
(const CGSize& size) const;
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.h
71
CGSize
constrainedSize
(const CGSize&) const;
PlatformCALayerWinInternal.cpp
47
, m_constrainedSize(
constrainedSize
(owner->bounds().size()))
323
m_constrainedSize =
constrainedSize
(rect.size());
341
CGSize PlatformCALayerWinInternal::
constrainedSize
(const CGSize& size) const
346
CGSize
constrainedSize
= size;
348
int tileColumns = ceilf(
constrainedSize
.width / m_tileSize.width);
349
int tileRows = ceilf(
constrainedSize
.height / m_tileSize.height);
362
tileRows = ceilf(sqrtf(cMaxTileCount *
constrainedSize
.height /
constrainedSize
.width));
366
constrainedSize
.width = tileColumns * m_tileSize.width;
367
constrainedSize
.height = tileRows * m_tileSize.height
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp
956
FloatSize usedSize = m_usingTiledLayer ?
constrainedSize
() : m_size;
[
all
...]
GraphicsLayerCA.h
185
FloatSize
constrainedSize
() const;
Completed in 75 milliseconds