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

  /external/webkit/Source/WebCore/platform/graphics/openvg/
TiledImageOpenVG.h 51 void setTile(int xIndex, int yIndex, VGImage);
52 VGImage tile(int xIndex, int yIndex) const;
53 IntRect tileRect(int xIndex, int yIndex) const;
TiledImageOpenVG.cpp 83 void TiledImageOpenVG::setTile(int xIndex, int yIndex, VGImage image)
85 ASSERT(xIndex < m_numColumns);
86 int i = (yIndex * m_numColumns) + xIndex;
112 VGImage TiledImageOpenVG::tile(int xIndex, int yIndex) const
114 ASSERT(xIndex < m_numColumns);
115 int i = (yIndex * m_numColumns) + xIndex;
120 IntRect TiledImageOpenVG::tileRect(int xIndex, int yIndex) const
122 ASSERT(xIndex < m_numColumns);
123 ASSERT((yIndex * m_numColumns) + xIndex < m_tiles.size());
125 int x = xIndex * m_maxTileSize.width()
    [all...]
PainterOpenVG.cpp 1080 for (int xIndex = drawnTiles.x(); xIndex < drawnTiles.right(); ++xIndex) {
1082 FloatRect tile(tiledImage->tileRect(xIndex, yIndex));
    [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/openvg/
ImageDecoderOpenVG.cpp 56 for (int xIndex = 0; xIndex < numColumns; ++xIndex) {
57 IntRect tileRect = tiledImage->tileRect(xIndex, yIndex);
70 tiledImage->setTile(xIndex, yIndex, image);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp 135 int TilingData::tilePositionX(int xIndex) const
137 ASSERT(xIndex >= 0 && xIndex < numTilesX());
140 for (int i = 0; i < xIndex; i++)
157 int TilingData::tileSizeX(int xIndex) const
159 ASSERT(xIndex >= 0 && xIndex < numTilesX());
161 if (!xIndex && m_numTilesX == 1)
163 if (!xIndex && m_numTilesX > 1)
165 if (xIndex < numTilesX() - 1
    [all...]
TilingData.h 65 int tilePositionX(int xIndex) const;
67 int tileSizeX(int xIndex) const;
77 IntPoint textureOffset(int xIndex, int yIndex) const;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
NinePatchTexture.java 299 int xIndex = (pntCount++) << 1;
300 int yIndex = xIndex + 1;
301 xy[xIndex] = x[i];
303 uv[xIndex] = u[i];
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 995 milliseconds