/frameworks/base/location/tests/locationtests/src/android/location/ |
LocationTest.java | 126 float bearing; local 135 bearing = zeroLocation.bearingTo(zeroLocation); 136 message = "bearingToTest: Bearing should be 0, actual value is " + String.valueOf(bearing); 137 assertEquals(message, 0, bearing, 0); 139 bearing = zeroLocation.bearingTo(testLocation); 140 message = "bearingToTest: Bearing should be 180, actual value is " + 141 String.valueOf(bearing); 142 assertEquals(message, 180, bearing, 0); 146 bearing = zeroLocation.bearingTo(testLocation) [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
ScheduledFuture.java | 10 * A delayed result-bearing action that can be cancelled.
|
/dalvik/docs/opcodes/ |
opcode-27-throw.html | 34 <td><code>A:</code> exception-bearing register (8 bits)<br/></td> 46 Register vA must be a reference-bearing register
|
opcode-07-move-object.html | 17 Move the contents of one object-bearing register to another.
|
opcode-11-return-object.html | 49 Register vA must be known to be reference-bearing.
|
opcode-21-array-length.html | 36 <code>B:</code> array reference-bearing register (4 bits)</td>
|
opcode-1d-monitor-enter.html | 34 <td><code>A:</code> reference-bearing register (8 bits)</td>
|
opcode-1e-monitor-exit.html | 45 <td><code>A:</code> reference-bearing register (8 bits)</td>
|
opcode-1f-check-cast.html | 35 <td><code>A:</code> reference-bearing register (8 bits)<br/>
|
opcode-20-instance-of.html | 37 <code>B:</code> reference-bearing register (4 bits)<br/>
|
opcode-26-fill-array-data.html | 54 vA must be a reference-bearing register (according to data flow) and contain
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
TrackerEntry.java | 47 static final String BEARING = "Bearing"; 59 ALTITUDE, SPEED, BEARING, DIST_NET_LOCATION, LOC_TIME, DEBUG_INFO}; 187 cValues.put(BEARING, mLocation.getBearing()); 229 Float bearing = getNullableFloat(cursor, BEARING); local 230 if (bearing != null) { 231 location.setBearing(bearing);
|
/external/freetype/src/sfnt/ |
ttmtx.c | 195 cur->bearing = FT_NEXT_SHORT( p ); 332 /* given glyph. The metrics are the left side bearing (resp. top */ 333 /* side bearing) and advance width (resp. advance height). */ 342 /* bearing :: The bearing, either left side or top side. */ 453 *abearing = longs_m->bearing;
|
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
Glyph.java | 64 // top side bearing 67 // left side bearing 147 * 1st element = left side bearing of the glyph 149 * 3d element = right side bearing of the glyph
|
/frameworks/base/location/java/android/location/ |
Criteria.java | 26 * and bearing, and monetary cost. 71 * require altitude, speed, or bearing; and will not allow monetary 195 * Indicates whether the provider must provide bearing information. 203 * Returns whether the provider must provide bearing information.
|
Location.java | 31 * bearing. 376 * shortest path between them. Distance and bearing are defined using the 380 * 2 or greater, the initial bearing is stored in results[1]. If results has 381 * length 3 or greater, the final bearing is stored in results[2]. 427 * Returns the approximate initial bearing in degrees East of true 434 * @return the initial bearing in degrees 582 * Returns true if the provider is able to report bearing information, 598 * Sets the bearing of this fix. Following this call, hasBearing() 601 public void setBearing(float bearing) { 602 while (bearing < 0.0f) [all...] |
LocationProvider.java | 143 * Returns true if the provider is able to provide bearing 144 * information, false otherwise. A provider that reports bearing
|
/external/skia/include/core/ |
SkBounder.h | 61 SkIPoint fLSB; //!< fixed-point left-side-bearing of the glyph 62 SkIPoint fRSB; //!< fixed-point right-side-bearing of the glyph
|
/frameworks/base/location/java/com/android/internal/location/ |
DummyLocationProvider.java | 140 * Returns true if the provider is able to provide bearing 141 * information, false otherwise. A provider that reports bearing
|
/cts/tests/tests/location/src/android/location/cts/ |
LocationTest.java | 110 float bearing; local 119 bearing = zeroLocation.bearingTo(zeroLocation); 120 assertEquals(0.0f, bearing, DELTA); 122 bearing = zeroLocation.bearingTo(testLocation); 123 assertEquals(90.0f, bearing, DELTA); 127 bearing = zeroLocation.bearingTo(testLocation); 128 assertEquals(0.0f, bearing, DELTA);
|
/external/freetype/include/freetype/internal/ |
tttypes.h | 152 /* bearing :: The left-side or top-side bearing for the glyph. */ 157 FT_Short bearing; member in struct:TT_LongMetricsRec_ 423 /* horiBearingX :: The horizontal left bearing. */ 425 /* horiBearingY :: The horizontal top bearing. */ 429 /* vertBearingX :: The vertical left bearing. */ 431 /* vertBearingY :: The vertical top bearing. */ 466 /* bearingX :: The left-side bearing. */ 468 /* bearingY :: The top-side bearing. */ [all...] |
/external/freetype/src/cff/ |
cffgload.h | 61 /* left_bearing :: The left side bearing point. */
|
/external/freetype/include/freetype/ |
ftincrem.h | 98 * Left bearing, in font units. 101 * Top bearing, in font units.
|
/frameworks/base/docs/html/guide/topics/location/ |
index.jd | 9 <li>Android provides a location framework that your application can use to determine the device's location and bearing and register for updates.</li> 32 determine location and bearing if the underlying device (if it supports location
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
gps.h | 69 /** GpsLocation has valid bearing. */ 146 float bearing; member in struct:__anon7598
|