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

1 2

  /external/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.h 57 void SetHoriBearingX(byte_t bearing);
59 void SetHoriBearingY(byte_t bearing);
63 void SetVertBearingX(byte_t bearing);
65 void SetVertBearingY(byte_t bearing);
big_glyph_metrics.cc 96 void BigGlyphMetrics::Builder::SetHoriBearingX(byte_t bearing) {
97 InternalWriteData()->WriteByte(Offset::kHoriBearingX, bearing);
104 void BigGlyphMetrics::Builder::SetHoriBearingY(byte_t bearing) {
105 InternalWriteData()->WriteByte(Offset::kHoriBearingY, bearing);
120 void BigGlyphMetrics::Builder::SetVertBearingX(byte_t bearing) {
121 InternalWriteData()->WriteByte(Offset::kVertBearingX, bearing);
128 void BigGlyphMetrics::Builder::SetVertBearingY(byte_t bearing) {
129 InternalWriteData()->WriteByte(Offset::kVertBearingY, bearing);
small_glyph_metrics.cc 84 void SmallGlyphMetrics::Builder::SetBearingX(byte_t bearing) {
85 InternalWriteData()->WriteByte(Offset::kBearingX, bearing);
92 void SmallGlyphMetrics::Builder::SetBearingY(byte_t bearing) {
93 InternalWriteData()->WriteByte(Offset::kBearingY, bearing);
small_glyph_metrics.h 53 void SetBearingX(byte_t bearing);
55 void SetBearingY(byte_t bearing);
  /external/wpa_supplicant_8/wpa_supplicant/
wnm_sta.h 36 struct bearing { struct
38 u8 bearing[8]; member in struct:bearing
70 struct bearing *bearing; member in struct:neighbor_report
wnm_sta.c 311 os_free(wpa_s->wnm_neighbor_report_elements[i].bearing);
380 "bearing");
383 rep->bearing = os_zalloc(sizeof(struct bearing));
384 if (rep->bearing == NULL)
386 rep->bearing->present = 1;
387 os_memcpy(rep->bearing->bearing, pos, 8);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocation.java 23 private float bearing; field in class:ShadowLocation
60 bearing = l.getBearing();
136 return bearing;
140 public void setBearing(float bearing) {
141 this.bearing = bearing;
147 this.bearing = 0.0f;
347 * shortest path between them. Distance and bearing are defined using the
351 * 2 or greater, the initial bearing is stored in results[1]. If results has
352 * length 3 or greater, the final bearing is stored in results[2]
    [all...]
  /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...]
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 79 float bearing; local
88 bearing = zeroLocation.bearingTo(zeroLocation);
89 assertEquals(0.0f, bearing, DELTA);
91 bearing = zeroLocation.bearingTo(testLocation);
92 assertEquals(90.0f, bearing, DELTA);
96 bearing = zeroLocation.bearingTo(testLocation);
97 assertEquals(0.0f, bearing, DELTA);
  /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);
  /frameworks/base/location/java/android/location/
Location.java 33 * and other information such as bearing, altitude and velocity.
111 * has no bearing, altitude, speed, accuracy or extras.
391 * shortest path between them. Distance and bearing are defined using the
395 * 2 or greater, the initial bearing is stored in results[1]. If results has
396 * length 3 or greater, the final bearing is stored in results[2].
442 * Returns the approximate initial bearing in degrees East of true
449 * @return the initial bearing in degrees
653 * True if this location has a bearing.
660 * Get the bearing, in degrees.
662 * <p>Bearing is the horizontal direction of travel of this device
    [all...]
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 289 * @param bearing The bearing between the offset and the coordinate
526 * Computes the bearing between two points.
534 int bearing; local
539 bearing = (int) Math.toDegrees(Math.atan2(y, x));
540 return bearing;
  /hardware/libhardware/include/hardware/
fused_location.h 109 /** FlpLocation has valid bearing. */
140 float bearing; member in struct:__anon32888
gps.h 86 /** GpsLocation has valid bearing. */
255 float bearing; member in struct:__anon32904
  /external/chromium_org/third_party/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/services/jni/
com_android_server_location_GpsLocationProvider.cpp 85 (jfloat)location->speed, (jfloat)location->bearing,
252 (jfloat)location->speed, (jfloat)location->bearing,
266 jfloat bearing = 0; local
275 bearing = location->bearing;
281 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
com_android_server_location_FlpHardwareProvider.cpp 205 location.bearing = env->CallFloatMethod(locationObject, getBearing);
405 sCallbackEnv->CallVoidMethod(locationObject, setBearing, location->bearing);
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java     [all...]
  /device/generic/goldfish/gps/
gps_qemu.c 379 Token bearing )
382 Token tok = bearing;
388 r->fix.bearing = str2float(tok.p, tok.end);
523 p += snprintf(p, end-p, " bearing=%g", r->fix.bearing);
  /external/chromium_org/third_party/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/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_
342 /* horiBearingX :: The horizontal left bearing. */
344 /* horiBearingY :: The horizontal top bearing. */
348 /* vertBearingX :: The vertical left bearing. */
350 /* vertBearingY :: The vertical top bearing. */
385 /* bearingX :: The left-side bearing. */
387 /* bearingY :: The top-side bearing. */
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 533 milliseconds

1 2