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

1 2 3 4 5 6 7 8 91011>>

  /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...]
NativePluralRules.java 35 private final int address; field in class:NativePluralRules
37 private NativePluralRules(int address) {
38 this.address = address;
43 finalizeImpl(address);
58 return quantityForIntImpl(address, value);
61 private static native void finalizeImpl(int address);
63 private static native int quantityForIntImpl(int address, int value);
CollationElementIteratorICU.java 55 NativeCollation.reset(address);
66 return NativeCollation.next(address);
77 return NativeCollation.previous(address);
90 return NativeCollation.getMaxExpansion(address, order);
99 NativeCollation.setText(address, source);
103 NativeCollation.setText(address, source.toString());
114 return NativeCollation.getOffset(address);
124 NativeCollation.setOffset(address, offset);
163 private CollationElementIteratorICU(int address) {
164 this.address = address
187 private int address; field in class:CollationElementIteratorICU
    [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...]
PAssociatedURI.java 37 import gov.nist.javax.sip.address.AddressImpl;
38 import gov.nist.javax.sip.address.GenericURI;
39 import javax.sip.address.URI;
48 * has allocated to a user for his own usage (address-of-record). </p>
81 * @param address to be set in the header
83 public PAssociatedURI(AddressImpl address)
86 this.address = address;
91 * @param associatedURI - GenericURI to be set in the address of this header
96 this.address = new AddressImpl()
    [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/
RouterExt.java 26 package gov.nist.javax.sip.address;
28 import javax.sip.address.Hop;
29 import javax.sip.address.Router;
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...]
SipURIExt.java 1 package gov.nist.javax.sip.address;
3 import javax.sip.address.SipURI;
  /external/chromium/net/udp/
datagram_socket.h 22 // Copy the remote udp address into |address| and return a network error code.
23 virtual int GetPeerAddress(IPEndPoint* address) const = 0;
25 // Copy the local udp address into |address| and return a network error code.
27 virtual int GetLocalAddress(IPEndPoint* address) const = 0;
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...]
datagram_server_socket.h 22 // Initialize this socket as a server socket listening at |address|.
24 virtual int Listen(const IPEndPoint& address) = 0;
26 // Read from a socket and receive sender address information.
29 // |address| is a buffer provided by the caller for receiving the sender
30 // address information about the received data. This buffer must be kept
32 // |address_length| is a ptr to the length of the |address| buffer. This
33 // is an input parameter containing the maximum size |address| can hold
34 // and also an output parameter for the size of |address| upon completion.
37 // If ERR_IO_PENDING is returned, the caller must keep |buf|, |address|,
41 IPEndPoint* address,
    [all...]
  /external/nist-sip/java/javax/sip/header/
HeaderAddress.java 3 import javax.sip.address.Address;
6 Address getAddress();
7 void setAddress(Address address);
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
PendingAttribute.java 28 public PendingAttribute(final int frequency, final int address) {
30 mAddress = address;
  /external/webkit/Source/JavaScriptCore/wtf/
DynamicAnnotations.h 36 * instruction and/or to a particular object (address) in the program.
52 /* Tell data race detector that we're not interested in reports on the given address range. */
53 #define WTF_ANNOTATE_BENIGN_RACE_SIZED(address, size, description) WTFAnnotateBenignRaceSized(__FILE__, __LINE__, address, size, description)
73 #define WTF_ANNOTATE_HAPPENS_BEFORE(address) WTFAnnotateHappensBefore(__FILE__, __LINE__, address)
74 #define WTF_ANNOTATE_HAPPENS_AFTER(address) WTFAnnotateHappensAfter(__FILE__, __LINE__, address)
81 void WTFAnnotateHappensBefore(const char* file, int line, const volatile void* address);
82 void WTFAnnotateHappensAfter(const char* file, int line, const volatile void* address);
    [all...]
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
20 uint64_t current = address;
26 while (current - address < size) {
27 if (readByte(current, &buf[(current - address)]))
34 *copied = current - address;
  /frameworks/base/core/java/android/net/
LinkAddress.java 28 * Identifies an address of a network link
33 * IPv4 or IPv6 address.
35 private final InetAddress address; field in class:LinkAddress
42 public LinkAddress(InetAddress address, int prefixLength) {
43 if (address == null || prefixLength < 0 ||
44 ((address instanceof Inet4Address) && prefixLength > 32) ||
46 throw new IllegalArgumentException("Bad LinkAddress params " + address +
49 this.address = address;
54 this.address = interfaceAddress.getAddress()
    [all...]
  /libcore/luni/src/main/java/java/net/
InterfaceAddress.java 28 * An IPv4 or IPv6 address.
30 private final InetAddress address; field in class:InterfaceAddress
33 * The IPv4 broadcast address, or null for IPv6.
42 InterfaceAddress(Inet4Address address, Inet4Address broadcastAddress, Inet4Address mask) {
43 this.address = address;
51 InterfaceAddress(Inet6Address address, short prefixLength) {
52 this.address = address;
71 * the address, broadcast address and prefix length are all equal
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
ReplyTo.java 32 import gov.nist.javax.sip.address.*;
61 /** Default constructor given an address.
63 *@param address -- address of this header.
66 public ReplyTo(AddressImpl address) {
68 this.address = address;
85 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC) {
88 retval += address.encode();
89 if (address.getAddressType() == AddressImpl.ADDRESS_SPEC)
    [all...]
Route.java 31 import gov.nist.javax.sip.address.AddressImpl;
59 /** Default constructor given an address.
61 *@param address -- address of this header.
65 public Route(AddressImpl address) {
67 this.address = address;
73 *@return the hashcode of the encoded address.
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
91 boolean addrFlag = address.getAddressType() == AddressImpl.NAME_ADDR
    [all...]
  /external/chromium/net/base/
ip_endpoint.h 16 // An IPEndPoint represents the address of a transport endpoint:
17 // * IP address (either v4 or v6)
23 IPEndPoint(const IPAddressNumber& address, int port);
26 const IPAddressNumber& address() const { return address_; } function in class:net::IPEndPoint
29 // Returns AF_INET or AF_INET6 depending on the type of the address.
33 // |address| is the sockaddr to copy into. Should be at least
36 // size of data in |address| available. On output, it is the size of
37 // the address that was copied into |address|.
39 bool ToSockAddr(struct sockaddr* address, size_t* address_length) const
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsAddress.java 31 public String address; field in class:SmsAddress
35 * Returns the address of the SMS message in String form or null if unavailable
38 return address;
42 * Returns true if this is an alphanumeric address
49 * Returns true if this is a network address
59 // So we just attempt to treat any message from an address length <= 4
62 return address.length() <= 4;
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
BaseNode.java 20 package org.apache.james.mime4j.field.address.parser;
22 import org.apache.james.mime4j.field.address.parser.Node;
23 import org.apache.james.mime4j.field.address.parser.Token;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
NativeLibraryMapInfo.java 20 * Memory address to library mapping for native libraries.
32 * @param startAddr The start address of the library.
33 * @param endAddr The end address of the library.
50 * Returns the start address of the library.
57 * Returns the end address of the library.
64 * Returns whether the specified address is inside the library.
65 * @param address The address to test.
66 * @return <code>true</code> if the address is between the start and end address of the library
    [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...]

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>