Searched refs:Address (Results 1 - 25 of 48) sorted by relevance

12

/frameworks/base/location/java/android/location/
H A DAddress.aidl19 parcelable Address;
H A DIGeocodeProvider.aidl19 import android.location.Address;
30 in GeocoderParams params, out List<Address> addrs);
35 in GeocoderParams params, out List<Address> addrs);
H A DGeocoder.java20 import android.location.Address;
113 * @return a list of Address objects. Returns null or empty list if no matches were
123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults)
132 List<Address> results = new ArrayList<Address>();
162 * @return a list of Address objects. Returns null or empty list if no matches were
169 public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException {
174 List<Address> results = new ArrayList<Address>();
212 * @return a list of Address object
[all...]
H A DAddress.java29 * A class representing an Address, i.e, a set of Strings describing a location.
31 * The address format is a simplified version of xAL (eXtensible Address Language)
34 public class Address implements Parcelable { class in inherits:Parcelable
60 * Constructs a new Address object set to the given Locale and with all
63 public Address(Locale locale) { method in class:Address
288 * Returns true if a latitude has been assigned to this Address,
298 * @throws IllegalStateException if this Address has not been assigned
325 * Returns true if a longitude has been assigned to this Address,
335 * @throws IllegalStateException if this Address has not been assigned
365 * @throws IllegalStateException if this Address ha
[all...]
H A DILocationManager.aidl20 import android.location.Address;
57 in GeocoderParams params, out List<Address> addrs);
61 in GeocoderParams params, out List<Address> addrs);
/frameworks/base/tests/net/java/android/net/
H A DRouteInfoTest.java31 private InetAddress Address(String addr) { method in class:RouteInfoTest
50 r = new RouteInfo((IpPrefix) null, Address("2001:db8::1"), null);
52 assertEquals(Address("2001:db8::1"), r.getGateway());
55 r = new RouteInfo((IpPrefix) null, Address("192.0.2.1"), "wlan0");
57 assertEquals(Address("192.0.2.1"), r.getGateway());
63 assertEquals(Address("::"), r.getGateway());
68 assertEquals(Address("0.0.0.0"), r.getGateway());
88 assertTrue(r.matches(Address("2001:db8:f00::ace:d00c")));
89 assertTrue(r.matches(Address("2001:db8:f00::ace:d00d")));
90 assertFalse(r.matches(Address("200
[all...]
H A DIpPrefixTest.java41 private static InetAddress Address(String addr) { method in class:IpPrefixTest
228 assertTrue(p.contains(Address("2001:db8:f00::ace:d00c")));
229 assertTrue(p.contains(Address("2001:db8:f00::ace:d00d")));
230 assertFalse(p.contains(Address("2001:db8:f00::ace:d00e")));
231 assertFalse(p.contains(Address("2001:db8:f00::bad:d00d")));
232 assertFalse(p.contains(Address("2001:4868:4860::8888")));
234 assertFalse(p.contains(Address("8.8.8.8")));
237 assertTrue(p.contains(Address("192.0.2.43")));
238 assertTrue(p.contains(Address("192.0.3.21")));
239 assertFalse(p.contains(Address("192.
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h29 typedef Relocation::Address Address; typedef in class:mcld::RelocationFactory
43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
H A DRelocator.h27 typedef Relocation::Address Address; typedef in class:mcld::Relocator
H A DEhFrameReader.h30 typedef char* Address; typedef in class:mcld::EhFrameReader
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h31 typedef uint64_t Address; // FIXME: use SizeTrait<T>::Address instead typedef in class:mcld::Relocation
42 Address pAddend,
63 Address pAddend = 0);
72 Address symValue() const;
75 Address addend() const { return m_Addend; }
78 Address place() const;
104 void setAddend(Address pAddend);
122 Address m_Addend;
H A DFragmentRef.h30 typedef NonConstTraits<unsigned char>::pointer Address; typedef in class:mcld::FragmentRef
/frameworks/base/location/lib/java/com/android/location/provider/
H A DGeocodeProvider.java21 import android.location.Address;
42 GeocoderParams params, List<Address> addrs) {
50 GeocoderParams params, List<Address> addrs) {
63 GeocoderParams params, List<Address> addrs);
73 GeocoderParams params, List<Address> addrs);
/frameworks/base/location/tests/locationtests/src/android/location/
H A DGeocoderTest.java19 import android.location.Address;
38 List<Address> addresses1 = g.getFromLocation(37.435067, -122.166767, 2);
42 Address addr = addresses1.get(0);
49 List<Address> addresses2 = g.getFromLocationName("San Francisco, CA", 1);
/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryRegion.h19 typedef NonConstTraits<uint8_t>::pointer Address; typedef in namespace:mcld
H A DSystemUtils.h21 typedef uint8_t* Address; typedef in namespace:mcld::sys
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp49 Address pAddend) {
68 Relocation::Address pAddend,
81 Relocation::Address Relocation::place() const {
82 Address sect_addr = m_TargetAddress.frag()->getParent()->getSection().addr();
86 Relocation::Address Relocation::symValue() const {
130 void Relocation::setAddend(Address pAddend) {
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
H A DAddress.java22 public class Address { class
69 Address address = (Address) o;
H A DSchool.java29 public Address address;
42 public Address getAddress() {
46 public void setAddress(Address address) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.h94 Address getGPAddress();
98 Address getTPOffset();
102 Address getDTPOffset();
106 Address getGP0();
122 Address getGOTOffset(MipsRelocationInfo& pReloc);
125 Address getTLSGOTOffset(MipsRelocationInfo& pReloc);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h32 static inline Relocator::Address helper_get_page_address(
33 Relocator::Address pValue) {
34 return (pValue & ~(Relocator::Address)0xFFF);
37 static inline Relocator::Address helper_get_page_offset(
38 Relocator::Address pValue) {
39 return (pValue & (Relocator::Address)0xFFF);
84 static inline Relocator::Address helper_get_PLT_address(
145 static inline Relocator::Address helper_get_GOT_address(
153 static inline Relocator::Address helper_GOT_ORG(AArch64Relocator& pParent) {
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameHdr.cpp27 typedef std::pair<SizeTraits<32>::Address, SizeTraits<32>::Address> Entry;
89 SizeTraits<32>::Address fde_pc;
90 SizeTraits<32>::Address fde_addr;
167 SizeTraits<32>::Address pc = 0x0;
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java20 import android.location.Address;
72 GeocoderParams params, List<Address> addrs) {
92 GeocoderParams params, List<Address> addrs) {
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DTestUtil.java19 import androidx.room.integration.testapp.vo.Address;
94 private static Address createAddress() {
95 Address address = new Address();
/frameworks/native/libs/vr/libdisplay/include/private/dvr/
H A Dshared_buffer_helpers.h33 void* Address() const { return address_; } function in class:android::dvr::CPUMappedBuffer
34 bool IsMapped() const { return Address() != nullptr; }

Completed in 522 milliseconds

12