OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_tiledBackingStore
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/page/
Frame.h
264
TiledBackingStore* tiledBackingStore() const { return
m_tiledBackingStore
.get(); }
276
OwnPtr<TiledBackingStore>
m_tiledBackingStore
;
/external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp
266
TiledBackingStore*
m_tiledBackingStore
;
337
,
m_tiledBackingStore
(0)
364
delete
m_tiledBackingStore
;
398
if (requiresTiling && !
m_tiledBackingStore
) {
399
m_tiledBackingStore
= new TiledBackingStore(this);
400
m_tiledBackingStore
->setTileCreationDelay(0);
402
} else if (!requiresTiling &&
m_tiledBackingStore
) {
403
delete
m_tiledBackingStore
;
404
m_tiledBackingStore
= 0;
408
if (
m_tiledBackingStore
) {
[
all
...]
Completed in 279 milliseconds