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

1 2 3 4

  /frameworks/base/location/java/android/location/
Location.aidl 17 package android.location;
19 parcelable Location;
ILocationListener.aidl 1 /* //device/java/android/android/location/ILocationListener.aidl
18 package android.location;
20 import android.location.Location;
28 void onLocationChanged(in Location location);
IGpsStatusListener.aidl 17 package android.location;
19 import android.location.Location;
LocationListener.java 17 package android.location;
23 * the location has changed. These methods are called if the
24 * LocationListener has been registered with the location manager service
31 * Called when the location has changed.
33 * <p> There are no restrictions on the use of the supplied Location object.
35 * @param location The new location, as a Location object.
37 void onLocationChanged(Location location);
    [all...]
ILocationProvider.aidl 17 package android.location;
19 import android.location.Criteria;
20 import android.location.Location;
26 * Binder interface for services that implement location providers.
49 void updateLocation(in Location location);
ILocationManager.aidl 17 package android.location;
20 import android.location.Address;
21 import android.location.Criteria;
22 import android.location.GeocoderParams;
23 import android.location.IGeocodeProvider;
24 import android.location.IGpsStatusListener;
25 import android.location.ILocationListener;
26 import android.location.Location;
30 * System private API for talking with the location service
    [all...]
  /external/webkit/WebCore/page/
Location.h 41 class Location : public RefCounted<Location> {
43 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); }
62 Location(Frame*);
Location.cpp 30 #include "Location.h"
39 Location::Location(Frame* frame)
44 void Location::disconnectFrame()
49 inline const KURL& Location::url() const
60 String Location::href() const
69 String Location::protocol() const
77 String Location::host() const
88 String Location::hostname() const
96 String Location::port() cons
    [all...]
  /external/chromium/base/
tracked.h 9 // to as its Location. The Location is a file and line number, most
12 // do additonal things), its Location may be redefined to that later location.
34 // Location provides basic info where of an object was constructed, or was
37 class Location {
42 Location(const char* function_name, const char* file_name, int line_number)
48 Location()
59 bool operator < (const Location& other) const {
85 // Define a macro to record the current source location
    [all...]
worker_pool.h 20 static bool PostTask(const tracked_objects::Location& from_here,
tracked.cc 15 void Location::Write(bool display_filename, bool display_function_name,
27 void Location::WriteFunctionName(std::string* output) const {
53 void Tracked::SetBirthPlace(const Location& from_here) {}
62 SetBirthPlace(Location("NoFunctionName", "NeedToSetBirthPlace", -1));
72 void Tracked::SetBirthPlace(const Location& from_here) {
88 return -1 == tracked_births_->location().line_number();
worker_pool_win.cc 21 bool WorkerPool::PostTask(const tracked_objects::Location& from_here,
tracked_objects.h 40 // created. That data is used to create a transient Location instance
49 // BirthOnThread) references to the static data provided in a Location instance,
51 // Hence there is at most one Births instance for each Location on each thread.
53 // instances born at the same location. Statistics currently include only the
66 // out its location of birth, and thread of birth, without using any locks, as
73 // instance at a Location. In many cases, instances (such as Tasks) are only
79 // collection of DeathData instances. For each birth place Location that is
94 // STL maps, which are indexed by Location. As noted earlier, we can compare
119 // For a given birth location, information about births are spread across data
122 // birth thread, death thread, and location, along with the count of suc
164 const Location location() const { return location_; } function in class:tracked_objects::BirthOnThread
263 const Location location() const { return birth_->location(); } function in class:tracked_objects::Snapshot
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
25 import android.location.Location;
34 @TestTargetClass(Location.class)
53 method = "Location",
54 args = {android.location.Location.class}
58 method = "Location",
65 new Location("LocationProvider");
67 Location l = createTestLocation()
68 Location location = new Location(l); local
87 Location location = new Location("LocationProvider"); local
101 Location location = new Location(""); local
252 Location location = new Location(""); local
333 Location location = new Location(""); local
368 Location location = new Location(""); local
403 Location location = new Location(""); local
436 Location location = createTestLocation(); local
457 Location location = new Location(""); local
482 Location location = new Location(""); local
507 Location location = new Location(""); local
540 Location location = new Location(""); local
565 Location location = new Location(""); local
590 Location location = new Location(""); local
619 Location location = createTestLocation(); local
630 Location location = createTestLocation(); local
    [all...]
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationManagerTest.java 17 package android.location;
20 import android.location.Criteria;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
88 String loc1 = Location.convert(-80.075, Location.FORMAT_DEGREES);
92 String loc1b = Location.convert(-80.0, Location.FORMAT_DEGREES)
    [all...]
LocationTest.java 17 package android.location;
24 * Unit tests for android.location.Location
29 // ***** Tests for Location.convert
35 result = Location.convert(testDegreesCoord);
46 result = Location.convert(testMinutesCoord);
57 result = Location.convert(testSecondsCoord);
68 result = Location.convert(testSecondsCoord);
79 result = Location.convert(-80.075, Location.FORMAT_DEGREES)
    [all...]
  /frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/src/com/android/framework/externalsharedpermsfltestapp/
ExternalSharedPermsFLTest.java 20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
28 /** The use of location manager below is simply to simulate an app that
37 public void onLocationChanged(Location location) {}
  /frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPerms/src/com/android/framework/externalsharedpermstestapp/
ExternalSharedPermsTest.java 20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
33 /** The use of location manager and bluetooth below are simply to simulate an app that
42 public void onLocationChanged(Location location) {}
  /frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsDiffKey/src/com/android/framework/externalsharedpermsdiffkeytestapp/
ExternalSharedPermsDiffKeyTest.java 21 import android.location.Location;
22 import android.location.LocationListener;
23 import android.location.LocationManager;
31 /** The use of location manager and bluetooth below are simply to simulate an app that
40 public void onLocationChanged(Location location) {}
  /frameworks/base/services/java/com/android/server/location/
LocationProviderInterface.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.Location;
26 * Location Manager's interface for location providers.
53 void updateLocation(Location location);
PassiveProvider.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.ILocationManager;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
31 * A passive location provider reports locations received from other providers
33 * location updates.
133 public void updateLocation(Location location)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
SuppressableTask.java 17 import org.apache.tools.ant.Location;
80 public static BuildException newBuildException (final String msg, final Location location)
86 return new BuildException (prefixedMsg, location);
89 public static BuildException newBuildException (final String msg, final Throwable cause, final Location location)
95 return new BuildException (prefixedMsg, cause, location);
  /external/v8/src/
parser.h 40 ParserMessage(Scanner::Location loc, const char* message,
46 Scanner::Location location() { return loc_; } function in class:v8::internal::ParserMessage
50 Scanner::Location loc_;
98 Scanner::Location MessageLocation();
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 21 import android.location.Location;
25 * Class that holds a tracker entry. An entry can be either a valid location, or
37 private Location mLocation;
65 // location extra keys used to retrieve debug info
87 private TrackerEntry(Location loc) {
89 mLocation = new Location(loc);
93 * Creates a TrackerEntry from a Location
95 static TrackerEntry createEntry(Location loc, float distFromNetLocation) {
131 private void setLocation(Location location)
215 Location location = new Location(tag); local
    [all...]
KMLFormatter.java 21 import android.location.Location;
48 Location loc = entry.getLocation();
52 builder.addLine("distance from last network location = "

Completed in 4405 milliseconds

1 2 3 4