Searched defs:coordinate (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DTile.h57 const Tile::Coordinate& coordinate() const { return m_coordinate; } function in class:WebCore::Tile
H A DTiledBackingStore.cpp255 Tile::Coordinate coordinate = tilesToCreate[n]; local
256 setTile(coordinate, Tile::create(this, coordinate));
276 Tile::Coordinate tileCoordinate = it->second->coordinate();
294 Tile::Coordinate coordinate = it->second->coordinate(); local
297 toRemove.append(coordinate);
304 PassRefPtr<Tile> TiledBackingStore::tileAt(const Tile::Coordinate& coordinate) const
306 return m_tiles.get(coordinate);
309 void TiledBackingStore::setTile(const Tile::Coordinate& coordinate, PassRefPt argument
314 removeTile(const Tile::Coordinate& coordinate) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DTiledDrawingAreaTile.h62 const TiledDrawingAreaTile::Coordinate& coordinate() const { return m_coordinate; } function in class:WebKit::TiledDrawingAreaTile
H A DTiledDrawingAreaProxy.cpp200 PassRefPtr<TiledDrawingAreaTile> TiledDrawingAreaProxy::createTile(const TiledDrawingAreaTile::Coordinate& coordinate) argument
202 RefPtr<TiledDrawingAreaTile> tile = TiledDrawingAreaTile::create(this, coordinate);
203 setTile(coordinate, tile);
254 tilesToRemove.append(currentTile->coordinate());
377 removeTile(tilesToRemove[n]->coordinate());
489 TiledDrawingAreaTile::Coordinate tileCoordinate = it->second->coordinate();
512 TiledDrawingAreaTile::Coordinate coordinate = it->second->coordinate(); local
515 toRemove.append(coordinate);
522 PassRefPtr<TiledDrawingAreaTile> TiledDrawingAreaProxy::tileAt(const TiledDrawingAreaTile::Coordinate& coordinate) cons
527 setTile(const TiledDrawingAreaTile::Coordinate& coordinate, RefPtr<TiledDrawingAreaTile> tile) argument
533 removeTile(const TiledDrawingAreaTile::Coordinate& coordinate) argument
[all...]
/external/icu4c/layout/
H A DGlyphDefinitionTables.h65 le_int16 coordinate; member in struct:CaretValueFormat1Table
75 le_int16 coordinate; member in struct:CaretValueFormat3Table
/external/mesa3d/src/glsl/
H A Dir_to_llvm.cpp921 llvm::Value * coordinate = llvm_value(ir->coordinate); local
925 unsigned width = ((llvm::VectorType*)coordinate->getType())->getNumElements();
926 llvm::Value * div = llvm::Constant::getNullValue(coordinate->getType());
929 coordinate = bld.CreateFDiv(coordinate, div, "texProj");
963 result = texCube(bld, coordinate, sampler->location, gglCtx);
965 result = tex2D(bld, coordinate, sampler->location, gglCtx);
H A Dir.h1168 * (tex (sampler) (coordinate) (0 0 0) (1) ( ))
1169 * (txb (sampler) (coordinate) (0 0 0) (1) ( ) (bias))
1170 * (txl (sampler) (coordinate) (0 0 0) (1) ( ) (lod))
1171 * (txd (sampler) (coordinate) (0 0 0) (1) ( ) (dPdx dPdy))
1172 * (txf (sampler) (coordinate) (0 0 0) (lod))
1211 /** Texture coordinate to sample */
1212 ir_rvalue *coordinate; member in class:ir_texture
1238 ir_rvalue *dPdx; /**< Partial derivative of coordinate wrt X */
1239 ir_rvalue *dPdy; /**< Partial derivative of coordinate wrt Y */

Completed in 155 milliseconds