HomeSort by relevance Sort by last modified time
    Searched refs:m_tiledBackingStore (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/page/
Frame.h 264 TiledBackingStore* tiledBackingStore() const { return m_tiledBackingStore.get(); }
276 OwnPtr<TiledBackingStore> m_tiledBackingStore;
Frame.cpp 886 m_tiledBackingStore.clear();
889 if (m_tiledBackingStore)
891 m_tiledBackingStore.set(new TiledBackingStore(this));
    [all...]
  /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 45 milliseconds