/frameworks/base/core/tests/coretests/src/android/net/ |
D | RouteInfoTest.java | 31 private InetAddress Address(String addr) { in Address() method in RouteInfoTest 50 r = new RouteInfo((IpPrefix) null, Address("2001:db8::1"), null); in testConstructor() 52 assertEquals(Address("2001:db8::1"), r.getGateway()); in testConstructor() 55 r = new RouteInfo((IpPrefix) null, Address("192.0.2.1"), "wlan0"); in testConstructor() 57 assertEquals(Address("192.0.2.1"), r.getGateway()); in testConstructor() 63 assertEquals(Address("::"), r.getGateway()); in testConstructor() 68 assertEquals(Address("0.0.0.0"), r.getGateway()); in testConstructor() 88 assertTrue(r.matches(Address("2001:db8:f00::ace:d00c"))); in testMatches() 89 assertTrue(r.matches(Address("2001:db8:f00::ace:d00d"))); in testMatches() 90 assertFalse(r.matches(Address("2001:db8:f00::ace:d00e"))); in testMatches() [all …]
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
D | Relocation.h | 31 typedef uint64_t Address; // FIXME: use SizeTrait<T>::Address instead typedef 42 Address pAddend, 62 Address pAddend = 0); 72 Address symValue() const; 75 Address addend() const in addend() 79 Address place() const; 105 void setAddend(Address pAddend); 123 Address m_Addend;
|
/frameworks/base/location/java/android/location/ |
D | Geocoder.java | 20 import android.location.Address; 123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) in getFromLocation() 132 List<Address> results = new ArrayList<Address>(); in getFromLocation() 169 … public List<Address> getFromLocationName(String locationName, int maxResults) throws IOException { in getFromLocationName() 174 List<Address> results = new ArrayList<Address>(); in getFromLocationName() 223 public List<Address> getFromLocationName(String locationName, int maxResults, in getFromLocationName() 246 ArrayList<Address> result = new ArrayList<Address>(); in getFromLocationName()
|
D | IGeocodeProvider.aidl | 19 import android.location.Address; 30 in GeocoderParams params, out List<Address> addrs); in getFromLocation() 35 in GeocoderParams params, out List<Address> addrs); in getFromLocationName()
|
D | Address.java | 34 public class Address implements Parcelable { class 63 public Address(Locale locale) { in Address() method in Address 475 public static final Parcelable.Creator<Address> CREATOR = 476 new Parcelable.Creator<Address>() { 477 public Address createFromParcel(Parcel in) { 483 Address a = new Address(locale); 524 public Address[] newArray(int size) { 525 return new Address[size];
|
D | ILocationManager.aidl | 20 import android.location.Address; 56 in GeocoderParams params, out List<Address> addrs); in getFromLocation() 60 in GeocoderParams params, out List<Address> addrs); in getFromLocationName()
|
D | Address.aidl | 19 parcelable Address;
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
D | GeocodeProvider.java | 21 import android.location.Address; 41 GeocoderParams params, List<Address> addrs) { 49 GeocoderParams params, List<Address> addrs) { 62 GeocoderParams params, List<Address> addrs); in onGetFromLocation() 72 GeocoderParams params, List<Address> addrs); in onGetFromLocationName()
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64RelocationHelpers.h | 33 static inline Relocator::Address 34 helper_get_page_address(Relocator::Address pValue) in helper_get_page_address() 36 return (pValue & ~ (Relocator::Address) 0xFFF); in helper_get_page_address() 39 static inline Relocator::Address 40 helper_get_page_offset(Relocator::Address pValue) in helper_get_page_offset() 42 return (pValue & (Relocator::Address) 0xFFF); in helper_get_page_offset() 96 static inline Relocator::Address 164 static inline Relocator::Address 172 static inline Relocator::Address
|
D | AArch64Relocator.cpp | 477 Relocator::Address S = pReloc.symValue(); in rel() 510 Relocator::Address value = 0x0; in add_abs_lo12() 511 Relocator::Address S = pReloc.symValue(); in add_abs_lo12() 526 Relocator::Address S = pReloc.symValue(); in adr_prel_pg_hi21() 557 Relocator::Address S = pReloc.symValue(); in call() 559 Relocator::Address P = pReloc.place(); in call() 588 Relocator::Address S = pReloc.symValue(); in condbr() 590 Relocator::Address P = pReloc.place(); in condbr() 611 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in adr_got_page() 613 Relocator::Address P = pReloc.place(); in adr_got_page() [all …]
|
/frameworks/rs/scriptc/ |
D | rs_atomic.rsh | 32 * @param addr Address of value to increment 42 * @param addr Address of value to decrement 52 * @param addr Address of value to modify 63 * @param addr Address of value to modify 74 * @param addr Address of value to modify 85 * @param addr Address of value to modify 96 * @param addr Address of value to modify 108 * @param addr Address of value to modify 119 * @param addr Address of value to modify 131 * @param addr Address of value to modify [all …]
|
/frameworks/compile/mclinker/lib/Fragment/ |
D | Relocation.cpp | 49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) in Create() 70 Relocation::Address pAddend, in Relocation() 85 Relocation::Address Relocation::place() const in place() 87 Address sect_addr = m_TargetAddress.frag()->getParent()->getSection().addr(); in place() 91 Relocation::Address Relocation::symValue() const in symValue() 138 void Relocation::setAddend(Address pAddend) in setAddend()
|
/frameworks/base/location/tests/locationtests/src/android/location/ |
D | GeocoderTest.java | 19 import android.location.Address; 38 List<Address> addresses1 = g.getFromLocation(37.435067, -122.166767, 2); in testGeocoder() 42 Address addr = addresses1.get(0); in testGeocoder() 49 List<Address> addresses2 = g.getFromLocationName("San Francisco, CA", 1); in testGeocoder()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | RelocationFactory.h | 29 typedef Relocation::Address Address; typedef 45 Address pAddend = 0);
|
D | Relocator.h | 30 typedef Relocation::Address Address; typedef
|
/frameworks/compile/mclinker/lib/LD/ |
D | EhFrameHdr.cpp | 28 typedef std::pair<SizeTraits<32>::Address, SizeTraits<32>::Address> Entry; 88 SizeTraits<32>::Address fde_pc; in emitOutput() 89 SizeTraits<32>::Address fde_addr; in emitOutput() 170 SizeTraits<32>::Address pc = 0x0; in computePCBegin()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMRelocator.cpp | 82 Relocator::Address helper_get_GOT_address(ResolveInfo& pSym, in helper_get_GOT_address() 128 Relocator::Address helper_GOT_ORG(ARMRelocator& pParent) in helper_GOT_ORG() 134 Relocator::Address helper_get_PLT_address(ResolveInfo& pSym, in helper_get_PLT_address() 879 Relocator::Address S = pReloc.symValue(); in rel32() 914 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotoff32() 915 Relocator::Address S = pReloc.symValue(); in gotoff32() 929 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in got_brel() 931 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in got_brel() 948 Relocator::Address GOT_S = helper_get_GOT_address(*pReloc.symInfo(), pParent); in got_prel() 950 Relocator::Address P = pReloc.place(); in got_prel() [all …]
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | GeocoderProxy.java | 20 import android.location.Address; 75 GeocoderParams params, List<Address> addrs) { in getFromLocation() 90 GeocoderParams params, List<Address> addrs) { in getFromLocationName()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsRelocator.h | 85 Address getGPAddress(); 89 Address getGP0(); 101 Address getGOTOffset(MipsRelocationInfo& pReloc);
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocator.cpp | 85 static Relocator::Address helper_get_GOT_address(ResolveInfo &pSym, in helper_get_GOT_address() 115 static Relocator::Address helper_get_PLT_address(ResolveInfo& pSym, in helper_get_PLT_address() 491 Relocator::Address S = pReloc.symValue(); in applyAbs() 682 Relocator::Address S = pReloc.symValue(); in relocAbs() 724 Relocator::Address S = pReloc.symValue(); in relocPCREL() 753 Relocator::Address S = pReloc.symValue(); in relocGPREL() 805 Relocator::Address PLT_S; in relocPLTB22PCREL() 810 Relocator::Address P = pReloc.place(); in relocPLTB22PCREL() 831 Relocator::Address GOT_S = in relocGOT() 833 Relocator::Address GOT = pParent.getTarget().getGOTSymbolAddr(); in relocGOT() [all …]
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86Relocator.cpp | 99 Relocator::Address helper_GOT_ORG(X86_32Relocator& pParent) in helper_GOT_ORG() 105 Relocator::Address helper_get_GOT_address(Relocation& pReloc, in helper_get_GOT_address() 138 static Relocator::Address 962 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotoff32() 963 Relocator::Address S = pReloc.symValue(); in gotoff32() 973 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in gotpc32() 993 Relocator::Address GOT_S = helper_get_GOT_address(pReloc, pParent); in got32() 995 Relocator::Address GOT_ORG = helper_GOT_ORG(pParent); in got32() 1005 Relocator::Address PLT_S; in plt32() 1011 Relocator::Address P = pReloc.place(); in plt32() [all …]
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipProfile.java | 30 import javax.sip.address.Address; 53 private Address mAddress; 312 mAddress = (Address) in.readSerializable(); in SipProfile() 376 public Address getSipAddress() { in getSipAddress()
|
/frameworks/base/docs/html/training/location/ |
D | display-address.jd | 1 page.title=Displaying a Location Address 14 <li><a href="#DefineTask">Define the Address Lookup Task</a></li> 55 <strong>Note:</strong> Address lookup requires a backend service that is not included in the 69 <h2 id="DefineTask">Define the Address Lookup Task</h2> 150 List<Address> addresses = null; 176 Address address = addresses.get(0); 241 following snippet starts the address lookup when the user clicks the "Get Address" button: 247 * The "Get Address" button in the UI is defined with
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | SystemUtils.h | 19 typedef uint8_t* Address; typedef
|
D | MemoryRegion.h | 18 typedef NonConstTraits<uint8_t>::pointer Address; typedef
|