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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
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;
  /external/bison/src/
reader.h 24 # include "location.h"
35 location type_declaration_location;
45 void grammar_start_symbol_set (symbol *sym, location loc);
46 void grammar_current_rule_begin (symbol *lhs, location loc,
48 void grammar_current_rule_end (location loc);
50 void grammar_current_rule_prec_set (symbol *precsym, location loc);
51 void grammar_current_rule_dprec_set (int dprec, location loc);
52 void grammar_current_rule_merge_set (uniqstr name, location loc);
53 void grammar_current_rule_symbol_append (symbol *sym, location loc,
55 void grammar_current_rule_action_append (const char *action, location loc
    [all...]
complain.h 22 # include "location.h"
44 void warn_at (location loc, char const *format, ...)
50 void warn_at_indent (location loc, unsigned *indent,
59 void complain_at (location loc, char const *format, ...)
65 void complain_at_indent (location loc, unsigned *indent,
72 void yacc_at (location loc, char const *format, ...)
78 void midrule_value_at (location loc, char const *format, ...)
86 void fatal_at (location loc, char const *format, ...)
  /frameworks/base/core/java/android/hardware/location/
IContextHubService.aidl 17 package android.hardware.location;
20 import android.hardware.location.ContextHubMessage;
21 import android.hardware.location.ContextHubInfo;
22 import android.hardware.location.NanoApp;
23 import android.hardware.location.NanoAppInstanceInfo;
24 import android.hardware.location.NanoAppFilter;
25 import android.hardware.location.IContextHubCallback;
IGeofenceHardwareCallback.aidl 17 package android.hardware.location;
19 import android.location.Location;
23 void onGeofenceTransition(int geofenceId, int transition, in Location location,
IFusedLocationHardwareSink.aidl 17 package android.hardware.location;
19 import android.location.Location;
22 * Fused Location hardware event sink interface.
29 * Event generated when a batch of location information is available.
31 * @param locations The batch of location information available.
33 void onLocationAvailable(in Location[] locations) = 0;
49 * Event generated from FLP HAL when the status of location batching
50 * changes (location is successful/unsuccessful).
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/libchrome/base/profiler/
scoped_tracker.cc 22 ScopedTracker::ScopedTracker(const Location& location)
23 : scoped_profile_(location, g_scoped_profile_mode) {
scoped_tracker.h 15 #include "base/location.h"
41 ScopedTracker(const Location& location);
47 // Augments a |callback| with provided |location|. This is useful for
54 const Location& location,
56 return base::Bind(&ScopedTracker::ExecuteAndTrackCallback<P1>, location,
61 // Executes |callback|, augmenting it with provided |location|.
63 static void ExecuteAndTrackCallback(const Location& location,
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedLocationHardwareSink.java 17 package com.android.location.provider;
19 import android.location.Location;
32 public void onLocationAvailable(Location[] locations) {
56 * implementation (the ability to compute location). This
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.
  /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,
  /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/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();
  /external/elfutils/tests/
run-funcretval.sh 34 () fun_char: return value location: {0x50, 0}
35 () fun_short: return value location: {0x50, 0}
36 () fun_int: return value location: {0x50, 0}
37 () fun_ptr: return value location: {0x50, 0}
38 () fun_iptr: return value location: {0x50, 0}
39 () fun_long: return value location: {0x50, 0}
40 () fun_int128: return value location: {0x50, 0} {0x93, 0x8} {0x51, 0} {0x93, 0x8}
41 () fun_large_struct1: return value location: {0x70, 0}
42 () fun_large_struct2: return value location: {0x70, 0}
43 () fun_float: return value location: {0x90, 0x40
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
LocationTest.java 3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in class:LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER);
22 location.setTime(1);
23 location.setLatitude(2);
24 location.setLongitude(3)
    [all...]
  /external/bison/examples/calc++/
location.hh 34 ** \file ../../../../examples/calc++/location.hh
35 ** Define the yy::location class.
45 /* Line 166 of location.cc */
46 #line 47 "../../../../examples/calc++/location.hh"
48 /// Abstract a location.
49 class location class in namespace:yy
53 /// Construct a location from \a b to \a e.
54 location (const position& b, const position& e) function in class:yy::location
60 /// Construct a 0-width location in \a p.
61 explicit location (const position& p = position () function in class:yy::location
68 explicit location (std::string* f, function in class:yy::location
    [all...]
  /external/syslinux/gpxe/src/interface/efi/
efi_pci.c 37 unsigned long location ) {
40 EFIPCI_OFFSET ( location ) );
43 int efipci_read ( struct pci_device *pci, unsigned long location,
47 if ( ( efirc = efipci->Pci.Read ( efipci, EFIPCI_WIDTH ( location ),
48 efipci_address ( pci, location ), 1,
52 PCI_FUNC ( pci->devfn ), EFIPCI_OFFSET ( location ),
60 int efipci_write ( struct pci_device *pci, unsigned long location,
64 if ( ( efirc = efipci->Pci.Write ( efipci, EFIPCI_WIDTH ( location ),
65 efipci_address ( pci, location ), 1,
69 PCI_FUNC ( pci->devfn ), EFIPCI_OFFSET ( location ),
    [all...]

Completed in 285 milliseconds

1 23 4 5 6 7 8 91011>>