HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 51 - 75 of 6472) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
IGeofenceProvider.aidl 17 package android.location;
19 import android.hardware.location.IGeofenceHardware;
22 * An interface for location providers implementing the Geofencing service
IGnssMeasurementsListener.aidl 17 package android.location;
19 import android.location.GnssMeasurementsEvent;
IGnssNavigationMessageListener.aidl 17 package android.location;
19 import android.location.GnssNavigationMessage;
IGnssStatusProvider.aidl 17 package android.location;
19 import android.location.IGnssStatusListener;
22 * An interface for location providers that provide GNSS status information.
OnNmeaMessageListener.java 17 package android.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);
  /libcore/ojluni/src/main/java/java/net/
HttpRetryException.java 43 private String location; field in class:HttpRetryException
59 * responseCode and the contents of the Location response header field.
63 * @param location the URL to be redirected to
65 public HttpRetryException(String detail, int code, String location) {
68 this.location = location;
91 * Returns the value of the Location header field if the
94 * @return The location string
97 return location;
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardwareCallback.aidl 17 package android.hardware.location;
19 import android.location.Location;
23 void onGeofenceTransition(int geofenceId, int transition, in Location location,
IContextHubService.aidl 17 package android.hardware.location;
20 import android.hardware.location.ContextHubInfo;
21 import android.hardware.location.ContextHubMessage;
22 import android.hardware.location.NanoApp;
23 import android.hardware.location.NanoAppBinary;
24 import android.hardware.location.NanoAppFilter;
25 import android.hardware.location.NanoAppInstanceInfo;
26 import android.hardware.location.IContextHubCallback;
27 import android.hardware.location.IContextHubClient;
28 import android.hardware.location.IContextHubClientCallback
    [all...]
IContextHubTransactionCallback.aidl 17 package android.hardware.location;
19 import android.hardware.location.NanoAppState;
GeofenceHardwareCallback.java 17 package android.hardware.location;
20 import android.location.Location;
36 * @param location The last known location according to the monitoring system.
41 public void onGeofenceTransition(int geofenceId, int transition, Location location,
IGeofenceHardware.aidl 17 package android.hardware.location;
19 import android.location.IFusedGeofenceHardware;
20 import android.location.IGpsGeofenceHardware;
21 import android.hardware.location.GeofenceHardwareRequestParcelable;
22 import android.hardware.location.IGeofenceHardwareCallback;
23 import android.hardware.location.IGeofenceHardwareMonitorCallback;
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
21 import android.location.Location;
22 import android.location.SettingInjectorService;
59 new Location("LocationProvider");
61 Location l = createTestLocation();
62 Location location = new Location(l); local
63 assertTestLocation(location);
76 Location location = new Location("LocationProvider"); local
82 Location location = new Location(""); local
217 Location location = new Location(""); local
266 Location location = new Location(""); local
279 Location location = new Location(""); local
288 Location location = new Location(""); local
297 Location location = new Location(""); local
307 Location location = new Location(""); local
320 Location location = new Location(""); local
341 Location location = createTestLocation(); local
350 Location location = new Location(""); local
363 Location location = new Location(""); local
376 Location location = new Location(""); local
387 Location location = new Location(""); local
400 Location location = new Location(""); local
413 Location location = new Location(""); local
426 Location location = new Location(""); local
459 Location location = createTestLocation(); local
465 Location location = createTestLocation(); local
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/el/
InnerTypeLocation.java 16 * An {@link InnerTypeLocation} holds the location information for an
17 * inner type (namely the location string) inside its {@link ATypeElement}.
28 * The location numbers of the inner type as defined in the extended
29 * annotation specification. For example, the location numbers of @X
33 public final List<TypePathEntry> location; field in class:InnerTypeLocation
36 * Constructs an {@link InnerTypeLocation} from the given location string,
38 * {@link ATypeElement} with zero-length location string is the
41 public InnerTypeLocation(List<TypePathEntry> location) {
42 this.location = Collections.unmodifiableList(
43 new ArrayList<TypePathEntry>(location));
    [all...]
  /external/libchrome/base/profiler/
scoped_tracker.cc 22 ScopedTracker::ScopedTracker(const Location& location)
23 : scoped_profile_(location, g_scoped_profile_mode) {
  /frameworks/base/core/java/android/os/strictmode/
ContentUriWithoutPermissionViolation.java 22 public ContentUriWithoutPermissionViolation(Uri uri, String location) {
26 + location
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSessionFactory.java 19 import android.location.Location;
31 * @param location the location of the new session.
35 long sessionStartMillis, Location location);
  /art/tools/dexfuzz/src/dexfuzz/program/
MInsn.java 22 * Base class that is a thin wrapper for Instructions currently, also tracking location
33 * The location of this instruction, as an offset in code words from the beginning.
36 public int location; field in class:MInsn
39 * Denotes if the currently associated location can be trusted.
50 newInsn.location = location;
60 location,
  /frameworks/base/location/lib/java/com/android/location/provider/
GeofenceProvider.java 17 package com.android.location.provider;
19 import android.hardware.location.GeofenceHardware;
20 import android.hardware.location.IGeofenceHardware;
23 import android.location.IGeofenceProvider;
29 * {@link com.android.location.provider.GeofenceProvider#getBinder()} in its getBinder() method.
  /frameworks/support/core/ktx/src/main/java/androidx/core/location/
Location.kt 19 package androidx.core.location
21 import android.location.Location
24 * Returns the latitude of this [Location].
26 * This method allows to use destructuring declarations when working with [Location],
32 inline operator fun Location.component1() = this.latitude
35 * Returns the longitude of this [Location].
37 * This method allows to use destructuring declarations when working with [Location],
43 inline operator fun Location.component2() = this.longitude
  /external/mockito/src/main/java/org/mockito/internal/debugging/
Localized.java 8 import org.mockito.invocation.Location;
13 private final Location location; field in class:Localized
17 location = new LocationImpl();
24 public Location getLocation() {
25 return location;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
throw_error.hpp 26 const char* location);
35 const char* location)
38 do_throw_error(err, location);
  /external/pdfium/core/fxcrt/
autorestorer.h 13 explicit AutoRestorer(T* location)
14 : m_Location(location), m_OldValue(*location) {}
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderDebugItem.java 39 @Nullable MethodLocation location; field in class:BuilderDebugItem
45 if (location == null) {
49 return location.getCodeAddress();
  /art/test/1911-get-local-var-table/src/art/
Breakpoint.java 28 public final long location; field in class:Breakpoint.Manager.BP
34 public BP(Executable method, long location) {
36 this.location = location;
43 location == ((BP)other).location;
53 return Objects.hash(method, location);
61 if (l.location > location) {
79 Breakpoint.setBreakpoint(b.method, b.location);
121 public final long location; field in class:Breakpoint.LineNumber
157 long[] location = (long[])(nativeTable[0]); local
    [all...]

Completed in 389 milliseconds

1 23 4 5 6 7 8 91011>>