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

1 2 3

  /external/webkit/WebCore/page/
Geoposition.idl 29 readonly attribute Coordinates coords;
GeolocationPositionCache.cpp 149 statement.bindDouble(1, position->coords()->latitude());
150 statement.bindDouble(2, position->coords()->longitude());
151 if (position->coords()->canProvideAltitude())
152 statement.bindDouble(3, position->coords()->altitude());
155 statement.bindDouble(4, position->coords()->accuracy());
156 if (position->coords()->canProvideAltitudeAccuracy())
157 statement.bindDouble(5, position->coords()->altitudeAccuracy());
160 if (position->coords()->canProvideHeading())
161 statement.bindDouble(6, position->coords()->heading());
164 if (position->coords()->canProvideSpeed()
    [all...]
Geoposition.h 46 Coordinates* coords() const { return m_coordinates.get(); } function in class:WebCore::Geoposition
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11Ext.java 55 float[] coords,
60 java.nio.FloatBuffer coords
72 int[] coords,
77 java.nio.IntBuffer coords
89 short[] coords,
94 java.nio.ShortBuffer coords
106 int[] coords,
111 java.nio.IntBuffer coords
  /external/freetype/include/freetype/
ftmm.h 165 /* coords :: The design coordinates for this style. */
172 FT_Fixed* coords; member in struct:FT_Var_Named_Style_
290 /* coords :: An array of design coordinates. */
298 FT_Long* coords );
317 /* coords :: An array of design coordinates. */
325 FT_Fixed* coords );
344 /* coords :: The design coordinates array (each element must be */
353 FT_Fixed* coords );
367 FT_Fixed* coords );
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
reentrant-success.js 22 shouldBe('position.coords.latitude', 'mockLatitude');
23 shouldBe('position.coords.longitude', 'mockLongitude');
24 shouldBe('position.coords.accuracy', 'mockAccuracy');
39 shouldBe('position.coords.latitude', 'mockLatitude');
40 shouldBe('position.coords.longitude', 'mockLongitude');
41 shouldBe('position.coords.accuracy', 'mockAccuracy');
success.js 15 shouldBe('position.coords.latitude', 'mockLatitude');
16 shouldBe('position.coords.longitude', 'mockLongitude');
17 shouldBe('position.coords.accuracy', 'mockAccuracy');
timeout.js 15 shouldBe('position.coords.latitude', 'mockLatitude');
16 shouldBe('position.coords.longitude', 'mockLongitude');
17 shouldBe('position.coords.accuracy', 'mockAccuracy');
position-string.js 16 shouldBe('position.coords.latitude', 'mockLatitude');
17 shouldBe('position.coords.longitude', 'mockLongitude');
18 shouldBe('position.coords.accuracy', 'mockAccuracy');
20 shouldBe('position.coords.toString()', '"[object Coordinates]"');
callback-exception.js 15 shouldBe('position.coords.latitude', 'mockLatitude');
16 shouldBe('position.coords.longitude', 'mockLongitude');
17 shouldBe('position.coords.accuracy', 'mockAccuracy');
watch.js 15 shouldBe('position.coords.latitude', 'mockLatitude');
16 shouldBe('position.coords.longitude', 'mockLongitude');
17 shouldBe('position.coords.accuracy', 'mockAccuracy');
maximum-age.js 16 shouldBe('position.coords.latitude', 'mockLatitude');
17 shouldBe('position.coords.longitude', 'mockLongitude');
18 shouldBe('position.coords.accuracy', 'mockAccuracy');
  /external/freetype/src/base/
ftmm.c 112 FT_Long* coords )
123 error = service->set_mm_design( face, num_coords, coords );
135 FT_Fixed* coords )
146 error = service->set_var_design( face, num_coords, coords );
158 FT_Fixed* coords )
169 error = service->set_mm_blend( face, num_coords, coords );
184 FT_Fixed* coords )
195 error = service->set_mm_blend( face, num_coords, coords );
  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 171 double delta = fabs(position1->coords()->latitude() - position2->coords()->latitude())
172 + fabs(position1->coords()->longitude() - position2->coords()->longitude());
177 int maxAccuracy = max(position1->coords()->accuracy(), position2->coords()->accuracy());
184 return position2->coords()->accuracy() < position1->coords()->accuracy();
  /external/freetype/include/freetype/internal/services/
svmm.h 49 FT_Long* coords );
54 FT_Fixed* coords );
59 FT_Long* coords );
  /external/freetype/src/truetype/
ttgxvar.h 147 FT_Fixed* coords );
152 FT_Fixed* coords );
ttgxvar.c 729 mmvar->namedstyle[i].coords = next_coords;
776 ns->coords[j] = FT_GET_ULONG(); /* A Fixed */
800 mmvar->namedstyle[n].coords = next_coords;
    [all...]
  /external/webkit/WebCore/html/
HTMLAreaElement.idl 26 attribute [ConvertNullToNullString, Reflect] DOMString coords;
  /external/freetype/include/freetype/internal/
pshints.h 159 * coords ::
167 * `coords[0]' is the absolute stem position (lowest coordinate);
168 * `coords[1]' is the length.
175 * the real stem position is `coords[0]+coords[1]'.
181 FT_Fixed* coords );
200 * coords ::
215 FT_Fixed* coords );
449 * coords ::
456 * There are `2*count' elements in the `coords' array. Each eve
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES11Ext.java 192 // C function void glDrawTexsvOES ( const GLshort *coords )
195 short[] coords,
199 // C function void glDrawTexsvOES ( const GLshort *coords )
202 java.nio.ShortBuffer coords
205 // C function void glDrawTexivOES ( const GLint *coords )
208 int[] coords,
212 // C function void glDrawTexivOES ( const GLint *coords )
215 java.nio.IntBuffer coords
218 // C function void glDrawTexxvOES ( const GLfixed *coords )
221 int[] coords,
    [all...]
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 133 float[] coords = { local
142 mFVertexBuffer.put(coords[i*3+j] * 2.0f);
  /frameworks/base/opengl/tools/glgen/specs/gles11/
checks.spec 30 glDrawTexfvOES check coords 5
31 glDrawTexivOES check coords 5
32 glDrawTexsvOES check coords 5
33 glDrawTexxvOES check coords 5
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 696 public void glDrawTexfvOES(float[] coords, int offset) {
697 mgl11Ext.glDrawTexfvOES(coords, offset);
700 public void glDrawTexfvOES(FloatBuffer coords) {
701 mgl11Ext.glDrawTexfvOES(coords);
708 public void glDrawTexivOES(int[] coords, int offset) {
709 mgl11Ext.glDrawTexivOES(coords, offset);
712 public void glDrawTexivOES(IntBuffer coords) {
713 mgl11Ext.glDrawTexivOES(coords);
721 public void glDrawTexsvOES(short[] coords, int offset) {
722 mgl11Ext.glDrawTexsvOES(coords, offset)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 308 private void logPointerCoords(MotionEvent.PointerCoords coords, int id) {
311 .append(": (").append(coords.x, 3).append(", ").append(coords.y, 3)
312 .append(") Pressure=").append(coords.pressure, 3)
313 .append(" Size=").append(coords.size, 3)
314 .append(" TouchMajor=").append(coords.touchMajor, 3)
315 .append(" TouchMinor=").append(coords.touchMinor, 3)
316 .append(" ToolMajor=").append(coords.toolMajor, 3)
317 .append(" ToolMinor=").append(coords.toolMinor, 3)
318 .append(" Orientation=").append((float)(coords.orientation * 180 / Math.PI), 1
    [all...]
  /frameworks/base/opengl/libagl/
texture.cpp     [all...]

Completed in 321 milliseconds

1 2 3