HomeSort by relevance Sort by last modified time
    Searched refs:coordinate (Results 1 - 25 of 34) sorted by null

1 2

  /external/icu4c/layout/
GlyphDefinitionTables.h 65 le_int16 coordinate; member in struct:CaretValueFormat1Table
75 le_int16 coordinate; member in struct:CaretValueFormat3Table
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardActionListener.java 47 * @param x x-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
51 * @param y y-coordinate pixel of touched event. If {@link #onCodeInput} is not called by
117 public static boolean isInvalidCoordinate(int coordinate) {
121 return coordinate < 0;
  /external/mesa3d/src/glsl/
lower_texture_projection.cpp 72 ir->coordinate = new(mem_ctx) ir_expression(ir_binop_mul,
73 ir->coordinate->type,
74 ir->coordinate,
ir_rvalue_visitor.cpp 53 handle_rvalue(&ir->coordinate);
ir_clone.cpp 213 new_tex->coordinate = this->coordinate->clone(mem_ctx, ht);
ir_to_llvm.cpp 921 llvm::Value * coordinate = llvm_value(ir->coordinate); local
    [all...]
opt_tree_grafting.cpp 246 if (do_graft(&ir->coordinate) ||
ir_hv_accept.cpp 174 s = this->coordinate->accept(v);
ir_print_visitor.cpp 193 ir->coordinate->accept(this);
ir.h 1168 * (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
1224 * Coordinate used for comparison on shadow look-ups.
1238 ir_rvalue *dPdx; /**< Partial derivative of coordinate wrt X */
1239 ir_rvalue *dPdy; /**< Partial derivative of coordinate wrt Y *
    [all...]
ir_reader.cpp 1037 // Read coordinate (any rvalue)
1039 tex->coordinate = read_rvalue(st, coordinate_expr);
1040 if (tex->coordinate == NULL) {
1041 ir_read_error(st, NULL, "when reading coordinate in (%s ...)",
    [all...]
  /frameworks/base/location/java/android/location/
Location.java 166 * Converts a coordinate to a String representation. The outputType
168 * The coordinate must be a valid double between -180.0 and 180.0.
170 * @throws IllegalArgumentException if coordinate is less than
175 public static String convert(double coordinate, int outputType) {
176 if (coordinate < -180.0 || coordinate > 180.0 ||
177 Double.isNaN(coordinate)) {
178 throw new IllegalArgumentException("coordinate=" + coordinate);
189 if (coordinate < 0)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.cpp 76 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
77 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
81 RefPtr<Tile> currentTile = tileAt(Tile::Coordinate(xCoordinate, yCoordinate));
135 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
136 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
140 Tile::Coordinate currentCoordinate(xCoordinate, yCoordinate);
186 double TiledBackingStore::tileDistance(const IntRect& viewport, const Tile::Coordinate& tileCoordinate)
192 Tile::Coordinate centerCoordinate = tileCoordinateForPoint(viewCenter);
230 Vector<Tile::Coordinate> tilesToCreate;
232 Tile::Coordinate topLeft = tileCoordinateForPoint(coverRect.location())
255 Tile::Coordinate coordinate = tilesToCreate[n]; local
294 Tile::Coordinate coordinate = it->second->coordinate(); local
    [all...]
Tile.h 45 typedef IntPoint Coordinate;
47 static PassRefPtr<Tile> create(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) { return adoptRef(new Tile(backingStore, tileCoordinate)); }
57 const Tile::Coordinate& coordinate() const { return m_coordinate; } function in class:WebCore::Tile
63 Tile(TiledBackingStore*, const Coordinate&);
66 Coordinate m_coordinate;
TiledBackingStore.h 87 PassRefPtr<Tile> tileAt(const Tile::Coordinate&) const;
88 void setTile(const Tile::Coordinate& coordinate, PassRefPtr<Tile> tile);
89 void removeTile(const Tile::Coordinate& coordinate);
96 IntRect tileRectForCoordinate(const Tile::Coordinate&) const;
97 Tile::Coordinate tileCoordinateForPoint(const IntPoint&) const;
98 double tileDistance(const IntRect& viewport, const Tile::Coordinate&);
100 void paintCheckerPattern(GraphicsContext*, const IntRect&, const Tile::Coordinate&);
105 typedef HashMap<Tile::Coordinate, RefPtr<Tile> > TileMap
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 200 PassRefPtr<TiledDrawingAreaTile> TiledDrawingAreaProxy::createTile(const TiledDrawingAreaTile::Coordinate& coordinate)
202 RefPtr<TiledDrawingAreaTile> tile = TiledDrawingAreaTile::create(this, coordinate);
203 setTile(coordinate, tile);
238 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
239 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
243 Vector<TiledDrawingAreaTile::Coordinate> tilesToRemove;
247 RefPtr<TiledDrawingAreaTile> currentTile = tileAt(TiledDrawingAreaTile::Coordinate(xCoordinate, yCoordinate));
254 tilesToRemove.append(currentTile->coordinate());
336 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location())
512 TiledDrawingAreaTile::Coordinate coordinate = it->second->coordinate(); local
    [all...]
TiledDrawingAreaTile.h 48 typedef WebCore::IntPoint Coordinate;
50 static PassRefPtr<TiledDrawingAreaTile> create(TiledDrawingAreaProxy* proxy, const Coordinate& tileCoordinate) { return adoptRef(new TiledDrawingAreaTile(proxy, tileCoordinate)); }
62 const TiledDrawingAreaTile::Coordinate& coordinate() const { return m_coordinate; } function in class:WebKit::TiledDrawingAreaTile
71 TiledDrawingAreaTile(TiledDrawingAreaProxy* proxy, const TiledDrawingAreaTile::Coordinate& tileCoordinate);
74 Coordinate m_coordinate;
TiledDrawingAreaProxy.h 126 PassRefPtr<TiledDrawingAreaTile> createTile(const TiledDrawingAreaTile::Coordinate&);
140 PassRefPtr<TiledDrawingAreaTile> tileAt(const TiledDrawingAreaTile::Coordinate&) const;
141 void setTile(const TiledDrawingAreaTile::Coordinate& coordinate, RefPtr<TiledDrawingAreaTile> tile);
142 void removeTile(const TiledDrawingAreaTile::Coordinate& coordinate);
150 WebCore::IntRect tileRectForCoordinate(const TiledDrawingAreaTile::Coordinate&) const;
151 TiledDrawingAreaTile::Coordinate tileCoordinateForPoint(const WebCore::IntPoint&) const;
152 double tileDistance(const WebCore::IntRect& viewport, const TiledDrawingAreaTile::Coordinate&);
163 typedef HashMap<TiledDrawingAreaTile::Coordinate, RefPtr<TiledDrawingAreaTile> > TileMap
    [all...]
  /external/mesa3d/docs/
MESA_window_pos.spec 32 coordinate with the RasterPos command, the modelview matrix, projection
34 desired window coordinate is outside of the window's bounds one must
44 position to a specific window coordinate prior to calling DrawPixels,
97 color, color index and texture coordinate update the current raster
MESA_texture_array.spec 75 coordinate.
134 reflects the fact that the R coordinate is not always used.)
278 "Let s(x,y) be the function that associates an s texture coordinate
448 texture coordinate, clamped to the range [0, 1]. For texture lookups
450 <q> texture coordinate, clamped to the range [0, 1]. Then the
553 coordinate mappings. The "coordinates used" column indicate the
554 input values used for each coordinate of the texture lookup, the
558 -- Section 3.11.6.2 "TXP: Project coordinate and map to color"
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.cpp 68 QGeoCoordinate coord = geoPosition.coordinate();
71 bool providesAltitude = (geoPosition.coordinate().type() == QGeoCoordinate::Coordinate3D);
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 46 The lower-left corner has texture coordinate (0,0,r,q).
55 texgen that the r coordinate could be used to select a slice in the
127 vertex window coordinate texture coordinate
135 size. The other vertex attributes (such as the color and fog coordinate)
146 If multiple texture units are present the same texture coordinate is
  /external/skia/third_party/glu/libtess/
alg-outline 36 perpendicular to the coordinate axis whose dot product with N
49 when the polygon is projected along the three coordinate axes. We
70 coordinate axes. This helps numerical accuracy by removing a
74 than the original 2D distance. However by choosing the coordinate
79 we are projecting perpendicular to a coordinate axis anyway), the
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java     [all...]
  /external/qemu-pc-bios/vgabios/
vbe.c 133 ; convert offset to (X, Y) coordinate
    [all...]

Completed in 955 milliseconds

1 2