Searched defs:Tile (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DTile.h43 class Tile : public RefCounted<Tile> { class in namespace:WebCore
47 static PassRefPtr<Tile> create(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) { return adoptRef(new Tile(backingStore, tileCoordinate)); }
48 ~Tile();
57 const Tile::Coordinate& coordinate() const { return m_coordinate; }
63 Tile(TiledBackingStore*, const Coordinate&);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTileQt.cpp21 #include "Tile.h"
58 Tile::Tile(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) function in class:WebCore::Tile
68 Tile::~Tile()
75 bool Tile::isDirty() const
80 bool Tile::isReadyToPaint() const
85 void Tile::invalidate(const IntRect& dirtyRect)
94 Vector<IntRect> Tile::updateBackBuffer()
133 void Tile
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTile.cpp26 #define LOG_TAG "Tile"
30 #include "Tile.h"
50 Tile::Tile(bool isLayerTile) function in class:WebCore::Tile
65 ClassTracker::instance()->increment("Tile");
70 Tile::~Tile()
80 ClassTracker::instance()->decrement("Tile");
86 void Tile::setContents(int x, int y, float scale, bool isExpandedPrefetchTile)
105 void Tile
[all...]
H A DTile.h62 class Tile : public TextureOwner { class in namespace:WebCore
92 Tile(bool isLayerTile = false);
93 ~Tile();
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTilerChromium.h92 class Tile : public RefCounted<Tile> { class in class:WebCore::LayerTilerChromium
93 WTF_MAKE_NONCOPYABLE(Tile);
95 explicit Tile(PassOwnPtr<LayerTexture> tex) : m_tex(tex), m_i(-1), m_j(-1) {} function in class:WebCore::LayerTilerChromium::Tile
125 Tile* createTile(int i, int j);
133 Tile* tileAt(int, int) const;
134 IntRect tileContentRect(const Tile*) const;
135 IntRect tileLayerRect(const Tile*) const;
153 // refcount of a Tile should never be more than 1. However, HashMap
155 typedef HashMap<TileMapKey, RefPtr<Tile>, DefaultHas
[all...]

Completed in 270 milliseconds