HomeSort by relevance Sort by last modified time
    Searched full:address (Results 1 - 25 of 11852) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/header/
HeaderAddress.java 3 import javax.sip.address.Address;
6 Address getAddress();
7 void setAddress(Address address);
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 22 import android.location.Address;
32 new Address(Locale.ENGLISH);
34 new Address(Locale.FRANCE);
36 new Address(null);
40 Address address = new Address(Locale.GERMAN); local
42 assertEquals(0, address.describeContents());
46 address.setExtras(extras);
48 assertEquals(extras.describeContents(), address.describeContents())
52 Address address = new Address(Locale.ITALY); local
63 Address address = new Address(Locale.JAPAN); local
74 Address address = new Address(Locale.KOREA); local
85 Address address = new Address(Locale.TAIWAN); local
102 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
113 Address address = new Address(Locale.CHINA); local
131 Address address = new Address(Locale.CHINA); local
149 Address address = new Address(Locale.CHINA); local
160 Address address = new Address(Locale.CHINA); local
171 Address address = new Address(Locale.CHINA); local
182 Address address = new Address(Locale.CHINA); local
193 Address address = new Address(Locale.CHINA); local
204 Address address = new Address(Locale.CHINA); local
216 Address address = new Address(Locale.CHINA); local
251 Address address = new Address(locale); local
263 Address address = new Address(Locale.PRC); local
275 Address address = new Address(locale); local
    [all...]
  /external/nist-sip/java/javax/sip/address/
AddressFactory.java 1 package javax.sip.address;
6 Address createAddress();
7 Address createAddress(String address) throws ParseException;
8 Address createAddress(URI uri);
9 Address createAddress(String displayName, URI uri)
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParameters.java 6 import javax.sip.address.Address;
12 * get the Address field
13 * @return the imbedded Address
15 public abstract Address getAddress();
18 * set the Address field
19 * @param address Address to set
21 public abstract void setAddress(Address address);
    [all...]
  /external/smack/src/org/xbill/DNS/
AAAARecord.java 9 * IPv6 Address Record - maps a domain name to an IPv6 address
18 private InetAddress address; field in class:AAAARecord
29 * @param address The address suffix
32 AAAARecord(Name name, int dclass, long ttl, InetAddress address) {
34 if (Address.familyOf(address) != Address.IPv6)
35 throw new IllegalArgumentException("invalid IPv6 address");
    [all...]
NSAPRecord.java 9 * NSAP Address Record.
18 private byte [] address; field in class:NSAPRecord
28 checkAndConvertAddress(String address) {
29 if (!address.substring(0, 2).equalsIgnoreCase("0x")) {
35 for (int i = 2; i < address.length(); i++) {
36 char c = address.charAt(i);
62 * @param address The NSAP address.
63 * @throws IllegalArgumentException The address is not a valid NSAP address
    [all...]
X25Record.java 8 * X25 - identifies the PSDN (Public Switched Data Network) address in the
18 private byte [] address; field in class:X25Record
28 checkAndConvertAddress(String address) {
29 int length = address.length();
32 char c = address.charAt(i);
42 * @param address The X.25 PSDN address.
43 * @throws IllegalArgumentException The address is not a valid PSDN address.
46 X25Record(Name name, int dclass, long ttl, String address) {
    [all...]
  /external/chromium/chrome/browser/autofill/
address_unittest.cc 9 #include "chrome/browser/autofill/address.h"
15 Address address; local
16 EXPECT_EQ(std::string(), address.country_code());
18 address.set_country_code("US");
19 EXPECT_EQ("US", address.country_code());
21 address.set_country_code("CA");
22 EXPECT_EQ("CA", address.country_code());
27 Address address; local
45 Address address; local
81 Address address; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
package.html 3 Implementation of the address package of the JAIN SIP API.
AddressImpl.java 29 package gov.nist.javax.sip.address;
31 import javax.sip.address.*;
37 * Address structure. Imbeds a URI and adds a display name.
48 implements javax.sip.address.Address {
71 /** address field
73 protected GenericURI address; field in class:AddressImpl
75 /** Match on the address only.
83 if (!(other instanceof Address))
92 return address.match(that.address)
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeCollation.java 23 public static native void closeCollator(int address);
24 public static native int compare(int address, String source, String target);
25 public static native int getAttribute(int address, int type);
26 public static native int getCollationElementIterator(int address, String source);
27 public static native String getRules(int address);
28 public static native byte[] getSortKey(int address, String source);
31 public static native int safeClone(int address);
32 public static native void setAttribute(int address, int type, int value);
35 public static native void closeElements(int address);
36 public static native int getMaxExpansion(int address, int order)
    [all...]
  /external/chromium/net/udp/
udp_server_socket.cc 17 int UDPServerSocket::Listen(const IPEndPoint& address) {
18 return socket_.Bind(address);
23 IPEndPoint* address,
25 return socket_.RecvFrom(buf, buf_len, address, callback);
30 const IPEndPoint& address,
32 return socket_.SendTo(buf, buf_len, address, callback);
39 int UDPServerSocket::GetPeerAddress(IPEndPoint* address) const {
40 return socket_.GetPeerAddress(address);
43 int UDPServerSocket::GetLocalAddress(IPEndPoint* address) const {
44 return socket_.GetLocalAddress(address);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
IPAddress.java 6 * Validate the given IPv4 or IPv6 address.
8 * @param address the IP address as a String.
10 * @return true if a valid address, false otherwise
13 String address)
15 return isValidIPv4(address) || isValidIPv6(address);
19 * Validate the given IPv4 or IPv6 address and netmask.
21 * @param address the IP address as a String
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
AddressHeaderIms.java 33 import javax.sip.address.Address;
35 import gov.nist.javax.sip.address.AddressImpl;
45 protected AddressImpl address; field in class:AddressHeaderIms
48 * get the Address field
49 * @return the imbedded Address
51 public Address getAddress() {
52 return address;
56 * set the Address field
57 * @param address Address to se
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu42.stdout.exp 11 dst address difference: 0 dst len: 2000
15 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
23 dst address difference: 0 dst len: 2000
27 dst address difference: 0 dst len: 2000
28 src address difference: 0 src len: 0
31 dst address difference: 0 dst len: 2000
32 src address difference: 0 src len: 1
35 dst address difference: 0 dst len: 2000
36 src address difference: 0 src len:
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
AddressUnitTests.java 27 * This is a series of unit tests for the Address class. These tests must be locally
43 + "noname@dom.com <noname@dom.com>" // personal == address
47 private static final Address PACK_ADDR_1 = new Address("john@gmail.com", "John Doe");
48 private static final Address PACK_ADDR_2 = new Address("foo@bar.com", null);
49 private static final Address PACK_ADDR_3 = new Address(
51 private static final Address[][] PACK_CASES = {
58 Address mAddress1
102 Address address = new Address(bareAddress); local
113 Address address = new Address("user1@dom1.org"); local
130 Address address = new Address("user1@dom1.net", "simple name"); local
147 Address address = new Address("user1@dom1.co.jp", "=?UTF-8?B?5bK45pys?="); local
373 final Address[] address = Address.parse("noname1@dom1.com"); local
701 Address address = addresses[i]; local
    [all...]
  /external/llvm/lib/Support/
StreamableMemoryObject.cpp 31 virtual int readByte(uint64_t address, uint8_t* ptr) const LLVM_OVERRIDE;
32 virtual int readBytes(uint64_t address,
36 virtual const uint8_t *getPointer(uint64_t address,
38 virtual bool isValidAddress(uint64_t address) const LLVM_OVERRIDE {
39 return validAddress(address);
41 virtual bool isObjectEnd(uint64_t address) const LLVM_OVERRIDE {
42 return objectEnd(address);
51 bool validAddress(uint64_t address) const {
52 return static_cast<ptrdiff_t>(address) < LastChar - FirstChar;
54 bool objectEnd(uint64_t address) const
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
staffNS.dtd 2 <!ELEMENT employee (employeeId,name,position,salary,gender,address) >
19 <!ELEMENT address (#PCDATA) >
20 <!ATTLIST address dmstc:domestic CDATA #IMPLIED>
21 <!ATTLIST address street CDATA #IMPLIED>
22 <!ATTLIST address domestic CDATA #IMPLIED>
23 <!ATTLIST address xmlns CDATA #IMPLIED>
25 <!ELEMENT emp:employee (emp:employeeId,nm:name,emp:position,emp:salary,emp:gender,emp:address) >
40 <!ELEMENT emp:address (#PCDATA) >
41 <!ATTLIST emp:address emp:domestic CDATA #IMPLIED>
42 <!ATTLIST emp:address street CDATA #IMPLIED
    [all...]
  /libcore/dom/src/test/resources/
staffNS.dtd 2 <!ELEMENT employee (employeeId,name,position,salary,gender,address) >
19 <!ELEMENT address (#PCDATA) >
20 <!ATTLIST address dmstc:domestic CDATA #IMPLIED>
21 <!ATTLIST address street CDATA #IMPLIED>
22 <!ATTLIST address domestic CDATA #IMPLIED>
23 <!ATTLIST address xmlns CDATA #IMPLIED>
25 <!ELEMENT emp:employee (emp:employeeId,nm:name,emp:position,emp:salary,emp:gender,emp:address) >
40 <!ELEMENT emp:address (#PCDATA) >
41 <!ATTLIST emp:address emp:domestic CDATA #IMPLIED>
42 <!ATTLIST emp:address street CDATA #IMPLIED
    [all...]
nodtdstaff.xml 9 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address>
  /libcore/luni/src/test/resources/
simple_ns.dtd 2 <!ELEMENT employee (employeeId,name,position,salary,gender,address) >
19 <!ELEMENT address (#PCDATA) >
20 <!ATTLIST address dmstc:domestic CDATA #IMPLIED>
21 <!ATTLIST address street CDATA #IMPLIED>
22 <!ATTLIST address domestic CDATA #IMPLIED>
23 <!ATTLIST address xmlns CDATA #IMPLIED>
25 <!ELEMENT emp:employee (emp:employeeId,nm:name,emp:position,emp:salary,emp:gender,emp:address) >
40 <!ELEMENT emp:address (#PCDATA) >
41 <!ATTLIST emp:address emp:domestic CDATA #IMPLIED>
42 <!ATTLIST emp:address street CDATA #IMPLIED
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGeocoder.java 3 import android.location.Address;
39 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException {
46 Address address = makeAddress(); local
47 address.setAddressLine(0, addressLine1);
48 address.setLocality(city);
49 address.setAdminArea(state);
50 address.setPostalCode(zip);
51 address.setCountryCode(countryCode);
52 return oneElementList(address);
65 Address address = makeAddress(); local
73 Address address = new Address(Locale.getDefault()); local
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcmain_pic.stdout.exp 0 address of main 0x........
3 address of another_func 0x........
  /external/valgrind/main/memcheck/tests/
badjump2.stderr.exp-kfail 1 Jump to the invalid address stated on the next line
3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
menufoot.html 5 <address><a href="mailto:rginda@netscape.com"></a></address>

Completed in 1029 milliseconds

1 2 3 4 5 6 7 8 91011>>