HomeSort by relevance Sort by last modified time
    Searched full:address (Results 1 - 25 of 5564) 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);
  /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/bluetooth/bluez/audio/
bluetooth.conf 16 @args [ ADDRESS ]
17 @args.ADDRESS {
21 device $ADDRESS
25 @args [ ADDRESS ]
26 @args.ADDRESS {
33 device $ADDRESS
  /packages/apps/Email/tests/src/com/android/email/mail/
AddressUnitTests.java 27 * This is a series of unit tests for the Address class. These tests must be locally
45 private static final Address PACK_ADDR_1 = new Address("john@gmail.com", "John Doe");
46 private static final Address PACK_ADDR_2 = new Address("foo@bar.com", null);
47 private static final Address PACK_ADDR_3 = new Address("mar.y+test@gmail.com", "Mar-y, B; B*arr");
48 private static final Address[][] PACK_CASES = {
55 Address mAddress1;
56 Address mAddress2
99 Address address = new Address(bareAddress); local
110 Address address = new Address("user1@dom1.org"); local
127 Address address = new Address("user1@dom1.net", "simple name"); local
144 Address address = new Address("user1@dom1.co.jp", "=?UTF-8?B?5bK45pys?="); local
664 Address address = addresses[i]; local
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 49 boolean createBond(in String address);
50 boolean createBondOutOfBand(in String address, in byte[] hash, in byte[] randomizer);
51 boolean cancelBondProcess(in String address);
52 boolean removeBond(in String address);
54 int getBondState(in String address);
55 boolean setDeviceOutOfBandData(in String address, in byte[] hash, in byte[] randomizer);
57 String getRemoteName(in String address);
58 int getRemoteClass(in String address);
59 ParcelUuid[] getRemoteUuids(in String address);
60 boolean fetchRemoteUuids(in String address, in ParcelUuid uuid, in IBluetoothCallback callback)
    [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...]
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 22 import android.location.Address;
35 @TestTargetClass(Address.class)
40 method = "Address",
44 new Address(Locale.ENGLISH);
46 new Address(Locale.FRANCE);
48 new Address(null);
58 Address address = new Address(Locale.GERMAN); local
60 assertEquals(0, address.describeContents())
84 Address address = new Address(Locale.ITALY); local
109 Address address = new Address(Locale.JAPAN); local
134 Address address = new Address(Locale.KOREA); local
159 Address address = new Address(Locale.TAIWAN); local
190 Address address = new Address(Locale.SIMPLIFIED_CHINESE); local
227 Address address = new Address(Locale.CHINA); local
271 Address address = new Address(Locale.CHINA); local
305 Address address = new Address(Locale.CHINA); local
330 Address address = new Address(Locale.CHINA); local
355 Address address = new Address(Locale.CHINA); local
380 Address address = new Address(Locale.CHINA); local
405 Address address = new Address(Locale.CHINA); local
422 Address address = new Address(Locale.CHINA); local
454 Address address = new Address(Locale.CHINA); local
495 Address address = new Address(locale); local
521 Address address = new Address(Locale.PRC); local
539 Address address = new Address(locale); local
    [all...]
  /external/bouncycastle/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/iptables/extensions/
libipt_addrtype.man 2 .B address type.
3 Address types are used within the kernel networking stack and categorize
6 The following address types are possible:
9 an unspecified address (i.e. 0.0.0.0)
11 an unicast address
13 a local address
15 a broadcast address
19 a multicast address
21 a blackhole address
23 an unreachable address
    [all...]
libipt_NETMAP.man 6 .BI "--to " "address[/mask]"
7 Network address to map to. The resulting address will be constructed in the
8 following way: All 'one' bits in the mask are filled in from the new `address'.
9 All bits that are zero in the mask are filled in from the original address.
  /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>
staff.dtd 5 <!ELEMENT address (#PCDATA)>
8 <!ELEMENT employee (employeeId, name, position, salary, gender, address) >
12 <!ATTLIST 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/webkit/JavaScriptCore/tests/mozilla/
menufoot.html 5 <address><a href="mailto:rginda@netscape.com"></a></address>
  /build/tools/apriori/
source.c 3 void find_section(source_t *source, Elf64_Addr address,
8 range_t *range = find_range(source->sorted_sections, address);
10 "Cannot match address %lld to any range in [%s]!\n",
11 address,
  /dalvik/vm/compiler/template/armv5te-vfp/
fbinop.S 6 * r0 = target dalvik register address
7 * r1 = op1 address
8 * r2 = op2 address
fbinopWide.S 6 * r0 = target dalvik register address
7 * r1 = op1 address
8 * r2 = op2 address
  /libcore/luni/src/test/resources/nwf/
staff.dtd 5 <!ELEMENT address (#PCDATA)>
8 <!ELEMENT employee (employeeId, name, position, salary, gender, address) >
12 <!ATTLIST address
  /libcore/luni/src/test/resources/systemid/
staff.dtd 5 <!ELEMENT address (#PCDATA)>
8 <!ELEMENT employee (employeeId, name, position, salary, gender, address) >
12 <!ATTLIST address
  /libcore/luni/src/test/resources/wf/
staff.dtd 5 <!ELEMENT address (#PCDATA)>
8 <!ELEMENT employee (employeeId, name, position, salary, gender, address) >
12 <!ATTLIST address
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerX86_64.h 56 void add32(Imm32 imm, AbsoluteAddress address)
58 move(ImmPtr(address.m_ptr), scratchRegister);
59 add32(imm, Address(scratchRegister));
62 void and32(Imm32 imm, AbsoluteAddress address)
64 move(ImmPtr(address.m_ptr), scratchRegister);
65 and32(imm, Address(scratchRegister));
68 void or32(Imm32 imm, AbsoluteAddress address)
70 move(ImmPtr(address.m_ptr), scratchRegister);
71 or32(imm, Address(scratchRegister));
74 void sub32(Imm32 imm, AbsoluteAddress address)
    [all...]

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>