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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
Location.aidl 17 package android.location;
19 parcelable Location;
  /external/qemu/
qemu-error.h 16 typedef struct Location {
21 struct Location *prev;
22 } Location;
24 Location *loc_push_restore(Location *loc);
25 Location *loc_push_none(Location *loc);
26 Location *loc_pop(Location *loc);
27 Location *loc_save(Location *loc)
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorCallback.java 17 package android.hardware.location;
19 import android.location.Location;
33 * @param location The last known location according to the monitoring system.
35 public void onMonitoringSystemChange(int monitoringType, boolean available, 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);
IGeofenceHardwareMonitorCallback.aidl 17 package android.hardware.location;
19 import android.location.Location;
23 void onMonitoringSystemChange(int monitoringType, boolean available, in Location location);
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedLocationHardwareSink.java 17 package com.android.location.provider;
19 import android.location.Location;
28 public abstract void onLocationAvailable(Location[] locations);
  /external/chromium_org/base/threading/
post_task_and_reply_impl.h 12 #include "base/location.h"
30 bool PostTaskAndReply(const tracked_objects::Location& from_here,
35 virtual bool PostTask(const tracked_objects::Location& from_here,
worker_pool.h 15 class Location;
36 static bool PostTask(const tracked_objects::Location& from_here,
42 static bool PostTaskAndReply(const tracked_objects::Location& from_here,
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 9 import org.mockito.invocation.Location;
20 Location getLocation();
  /external/chromium_org/sync/internal_api/public/util/
unrecoverable_error_info.h 7 // TODO(lipalani): Figure out the right location for this class so it is
12 #include "base/location.h"
20 const tracked_objects::Location& location,
24 void Reset(const tracked_objects::Location& location,
29 const tracked_objects::Location& location() const;
33 tracked_objects::Location location_;
unrecoverable_error_handler.h 10 #include "base/location.h"
20 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
  /external/mockito/src/org/mockito/invocation/
Location.java 10 * Describes the location of something in the source code.
13 public interface Location {
16 * @return the location
StubInfo.java 10 * The information about stubbing, for example the location of stubbing.
16 * @return the location where the invocation was stubbed.
18 Location stubbedAt();
  /external/mockito/src/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;
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
20 import android.location.Location;
45 new Location("LocationProvider");
47 Location l = createTestLocation();
48 Location location = new Location(l); local
49 assertTestLocation(location);
52 new Location((Location) null)
62 Location location = new Location("LocationProvider"); local
68 Location location = new Location(""); local
203 Location location = new Location(""); local
252 Location location = new Location(""); local
265 Location location = new Location(""); local
278 Location location = new Location(""); local
299 Location location = createTestLocation(); local
308 Location location = new Location(""); local
321 Location location = new Location(""); local
334 Location location = new Location(""); local
345 Location location = new Location(""); local
358 Location location = new Location(""); local
371 Location location = new Location(""); local
395 Location location = createTestLocation(); local
401 Location location = createTestLocation(); local
    [all...]
  /external/chromium_org/tools/gn/
location.h 15 class Location {
17 Location()
22 Location(const InputFile* file, int line_number, int char_offset)
32 bool operator==(const Location& other) const {
38 bool operator<(const Location& other) const {
56 LocationRange(const Location& begin, const Location& end)
62 const Location& begin() const { return begin_; }
63 const Location& end() const { return end_; }
73 Location begin_
    [all...]
  /external/chromium/base/
message_loop_proxy.h 34 virtual bool PostTask(const tracked_objects::Location& from_here,
36 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
38 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
41 const tracked_objects::Location& from_here,
49 bool DeleteSoon(const tracked_objects::Location& from_here,
54 bool ReleaseSoon(const tracked_objects::Location& from_here,
tracked.cc 16 Location::Location(const char* function_name, const char* file_name,
23 Location::Location()
29 void Location::Write(bool display_filename, bool display_function_name,
41 void Location::WriteFunctionName(std::string* output) const {
67 void Tracked::SetBirthPlace(const Location& from_here) {}
68 const Location Tracked::GetBirthPlace() const {
69 static Location kNone("NoFunctionName", "NeedToSetBirthPlace", -1);
82 SetBirthPlace(Location("NoFunctionName", "NeedToSetBirthPlace", -1))
    [all...]
  /external/chromium_org/base/
sequenced_task_runner.h 111 bool PostNonNestableTask(const tracked_objects::Location& from_here,
115 const tracked_objects::Location& from_here,
123 bool DeleteSoon(const tracked_objects::Location& from_here,
134 bool ReleaseSoon(const tracked_objects::Location& from_here,
148 bool DeleteSoonInternal(const tracked_objects::Location& from_here,
152 bool ReleaseSoonInternal(const tracked_objects::Location& from_here,
sequenced_task_runner.cc 12 const tracked_objects::Location& from_here,
18 const tracked_objects::Location& from_here,
25 const tracked_objects::Location& from_here,
task_runner.h 15 class Location;
66 bool PostTask(const tracked_objects::Location& from_here,
74 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
127 bool PostTaskAndReply(const tracked_objects::Location& from_here,
  /external/chromium/base/threading/
worker_pool.h 30 static bool PostTask(const tracked_objects::Location& from_here,
  /external/chromium/chrome/browser/sync/
unrecoverable_error_handler.h 21 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
pywebsocket.conf 39 <Location /ws>
41 </Location>
  /external/chromium_org/components/autofill/content/browser/wallet/
form_field_error.h 44 enum Location {
56 FormFieldError(ErrorType error_type, Location location);
60 Location location() const { return location_; } function in class:autofill::wallet::FormFieldError
62 // Gets the appropriate field type for |location| and |error_type|.
65 // Gets a user facing error message appropriate for |location| and
79 // The location of the error as defined by the Wallet server.
80 Location location_;

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>