OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tileID
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebKit2/WebProcess/WebPage/
TiledDrawingArea.h
67
void updateTile(int
tileID
, const WebCore::IntRect& dirtyRect, float scale);
80
int
tileID
;
TiledDrawingArea.cpp
137
void TiledDrawingArea::updateTile(int
tileID
, const IntRect& dirtyRect, float scale)
145
WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::TileUpdated, m_webPage->pageID(), CoreIPC::In(
tileID
, updateChunk, scale, pendingUpdateCount));
156
updateTile(update.
tileID
, update.dirtyRect, update.scale);
182
int
tileID
;
183
if (!arguments->decode(CoreIPC::Out(
tileID
)))
185
UpdateMap::iterator it = m_pendingUpdates.find(
tileID
);
197
if (!arguments->decode(CoreIPC::Out(update.
tileID
, update.dirtyRect, update.scale)))
199
UpdateMap::iterator it = m_pendingUpdates.find(update.
tileID
);
203
m_pendingUpdates.add(update.
tileID
, update);
/external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp
128
int
tileID
;
132
if (!arguments->decode(CoreIPC::Out(
tileID
, updateChunk, scale, pendingUpdateCount)))
135
TiledDrawingAreaTile* tile = m_tilesByID.get(
tileID
);
136
ASSERT(!tile || tile->ID() ==
tileID
);
174
void TiledDrawingAreaProxy::requestTileUpdate(int
tileID
, const IntRect& dirtyRect)
176
page()->process()->connection()->deprecatedSend(DrawingAreaLegacyMessage::RequestTileUpdate, page()->pageID(), CoreIPC::In(
tileID
, dirtyRect, contentsScale()));
182
int
tileID
;
190
if (!arguments->decode(CoreIPC::Out(
tileID
, updateChunk, scale, pendingUpdateCount)))
192
TiledDrawingAreaTile* tile = m_tilesByID.get(
tileID
);
193
ASSERT(!tile || tile->ID() ==
tileID
);
[
all
...]
Completed in 338 milliseconds