HomeSort by relevance Sort by last modified time
    Searched refs:Location (Results 1 - 25 of 933) 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;
  /frameworks/data-binding/compilerCommon/src/test/java/android/databinding/tool/store/
LocationTest.java 30 assertFalse(new Location().isValid());
35 Location location = new Location(0, 0, 1, 1); local
36 assertTrue(location.isValid());
41 Location location1 = new Location(0, 0, 10, 1);
42 Location location2 = new Location(0, 0, 9, 1);
52 Location loc = new Location(1, 2, 3, 4)
    [all...]
  /external/libchrome/base/threading/
post_task_and_reply_impl.h 12 #include "base/location.h"
32 bool PostTaskAndReply(const tracked_objects::Location& from_here,
37 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/libweave/third_party/chromium/base/
location.h 17 // Location provides basic info where of an object was constructed, or was
19 class BASE_EXPORT Location {
24 Location(const char* function_name,
30 Location();
33 Location(const Location& other);
37 // identify this location.
38 bool operator==(const Location& other) const {
67 // A "snapshotted" representation of the Location class that can safely be
72 explicit LocationSnapshot(const tracked_objects::Location& location)
    [all...]
location.cc 11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 Location::Location(const Location& other)
41 std::string Location::ToString() const {
46 void Location::Write(bool display_filename, bool display_function_name
    [all...]
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 9 import org.mockito.invocation.Location;
20 Location getLocation();
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorCallback.java 17 package android.hardware.location;
20 import android.location.Location;
41 * @param location The last known location according to the monitoring system.
44 public void onMonitoringSystemChange(int monitoringType, boolean available, Location location) {
54 * {@link #onMonitoringSystemChange(int, boolean, android.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).
  /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
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/scopes/
LocationScopeProvider.java 20 import android.databinding.tool.store.Location;
28 List<Location> provideScopeLocation();
  /packages/apps/Camera2/src/com/android/camera/app/
LocationProvider.java 19 import android.location.Location;
22 * A generic interface for a location provider {Fused, GPS, Network}.
27 * Report when connection fails so another location provider may be used.
37 * Get the current location.
39 public Location getCurrentLocation();
42 * Turn on/off recording of location.
44 * @param recordLocation Whether or not to record location.
49 * Disconnect the location provider after use. The location provider can no longer acquir
    [all...]
  /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/compiler/optimizing/
locations.cc 30 output_overlaps_(Location::kOutputOverlap),
45 Location Location::RegisterOrConstant(HInstruction* instruction) {
47 ? Location::ConstantLocation(instruction->AsConstant())
48 : Location::RequiresRegister();
51 Location Location::RegisterOrInt32Constant(HInstruction* instruction) {
56 return Location::ConstantLocation(constant);
59 return Location::RequiresRegister();
62 Location Location::FpuRegisterOrInt32Constant(HInstruction* instruction)
    [all...]
locations.h 30 class Location;
32 std::ostream& operator<<(std::ostream& os, const Location& location);
35 * A Location is an abstraction over the potential location
38 class Location : public ValueObject {
65 // Unallocated location represents a location that is not fixed and can be
66 // allocated by a register allocator. Each unallocated location has
67 // a policy that specifies what kind of location is suitable. Payloa
    [all...]
parallel_move_test.cc 36 static void DumpLocationForTest(std::ostream& os, Location location) {
37 if (location.IsConstant()) {
39 } else if (location.IsPair()) {
40 DumpRegisterForTest(os, location.low());
42 DumpRegisterForTest(os, location.high());
43 } else if (location.IsRegister()) {
44 DumpRegisterForTest(os, location.reg());
45 } else if (location.IsStackSlot()) {
46 os << location.GetStackIndex() << "(sp)"
    [all...]
  /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;
  /external/libchrome/base/
location.cc 11 #include "base/location.h"
17 Location::Location(const char* function_name,
27 Location::Location()
34 Location::Location(const Location& other)
41 std::string Location::ToString() const {
46 void Location::Write(bool display_filename, bool display_function_name
    [all...]
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 16 class Location;
67 bool PostTask(const tracked_objects::Location& from_here,
75 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
128 bool PostTaskAndReply(const tracked_objects::Location& from_here,
  /packages/apps/Camera2/src/com/android/camera/data/
Location.java 22 * Encapsulate latitude and longitude into a single location object.
24 * TODO: Add tests. Consider removing "ZERO" location and using UNKNOWN.
26 public final class Location {
27 public static final Location UNKNOWN = new Location(Double.NaN, Double.NaN);
28 public static final Location ZERO = new Location(0.0, 0.0);
33 private Location(double latitude, double longitude) {
59 return "Location: " + getLocationString();
71 Location location = (Location) o local
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Location.java 31 * This class represents Location value in JDWP packet.
33 public class Location {
40 * Creates new Location value with empty data.
42 public Location() {
50 * Creates new Location value with specified data.
52 public Location(byte tag, long classID, long methodID, long index) {
60 * Converts Location to string format for printing.
63 return "Location: tag="+tag+", classID="+classID+", methodID="+methodID+", index="+index;
67 * Compares this with other Location object.
70 if (!(obj instanceof Location))
    [all...]

Completed in 269 milliseconds

1 2 3 4 5 6 7 8 91011>>