Home | History | Annotate | Download | only in location

Lines Matching refs:bearing

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) {
603 bearing += 360.0f;
605 while (bearing >= 360.0f) {
606 bearing -= 360.0f;
608 mBearing = bearing;
613 * Clears the bearing of this fix. Following this call, hasBearing()