HomeSort by relevance Sort by last modified time
    Searched refs:address (Results 1 - 25 of 3491) 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(long address);
24 public static native int compare(long address, String source, String target);
25 public static native int getAttribute(long address, int type);
26 public static native int getCollationElementIterator(long address, String source);
27 public static native String getRules(long address);
28 public static native byte[] getSortKey(long address, String source);
31 public static native long safeClone(long address);
32 public static native void setAttribute(long address, int type, int value);
35 public static native void closeElements(long address);
36 public static native int getMaxExpansion(long address, int order)
    [all...]
NativePluralRules.java 35 private final long address; field in class:NativePluralRules
37 private NativePluralRules(long address) {
38 this.address = address;
43 finalizeImpl(address);
58 return quantityForIntImpl(address, value);
61 private static native void finalizeImpl(long address);
63 private static native int quantityForIntImpl(long address, int value);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prcmon.h 39 ** Interface to cached monitors. Cached monitors use an address to find a
54 ** Like PR_EnterMonitor except use the "address" to find a monitor in the
56 ** with "address". Note that you must PR_CExitMonitor the address to
61 NSPR_API(PRMonitor*) PR_CEnterMonitor(void *address);
64 ** Like PR_ExitMonitor except use the "address" to find a monitor in the
67 NSPR_API(PRStatus) PR_CExitMonitor(void *address);
70 ** Like PR_Wait except use the "address" to find a monitor in the
73 NSPR_API(PRStatus) PR_CWait(void *address, PRIntervalTime timeout);
76 ** Like PR_Notify except use the "address" to find a monitor in th
    [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...]
  /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...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/
EmailAddressTest.java 58 EmailAddress address = EmailAddress.getEmailAddress("test name <test@localhost.com>"); local
59 assertEquals("test name", address.getName());
60 assertEquals("test@localhost.com", address.getAddress());
62 address = EmailAddress.getEmailAddress("\"test name\" <test@localhost.com>");
63 assertEquals("test name", address.getName());
64 assertEquals("test@localhost.com", address.getAddress());
66 address = EmailAddress.getEmailAddress("<test@localhost.com>");
67 assertEquals("", address.getName());
68 assertEquals("test@localhost.com", address.getAddress());
70 address = EmailAddress.getEmailAddress("test@localhost.com")
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
atomic.h 24 static inline size_t AtomicIncrement(size_t* address) {
26 return InterlockedIncrement64(reinterpret_cast<LONGLONG*>(address));
28 return InterlockedIncrement(reinterpret_cast<LONG*>(address));
32 static inline size_t AtomicDecrement(size_t* address) {
34 return InterlockedDecrement64(reinterpret_cast<LONGLONG*>(address));
36 return InterlockedDecrement(reinterpret_cast<LONG*>(address));
44 static inline size_t AtomicIncrement(size_t* address) {
45 return OSAtomicIncrement32Barrier(reinterpret_cast<int32_t*>(address));
48 static inline size_t AtomicDecrement(size_t* address) {
49 return OSAtomicDecrement32Barrier(reinterpret_cast<int32_t*>(address));
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
Alloc.h 14 void MyFree(void *address);
21 void MidFree(void *address);
23 void BigFree(void *address);
28 #define MidFree(address) MyFree(address)
30 #define BigFree(address) MyFree(address)
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
Alloc.h 15 void MyFree(void *address);
22 void MidFree(void *address);
24 void BigFree(void *address);
29 #define MidFree(address) MyFree(address)
31 #define BigFree(address) MyFree(address)
  /external/lzma/C/
Alloc.h 14 void MyFree(void *address);
21 void MidFree(void *address);
23 void BigFree(void *address);
28 #define MidFree(address) MyFree(address)
30 #define BigFree(address) MyFree(address)
  /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/smack/src/org/jivesoftware/smack/filter/
FromMatchesFilter.java 28 * address is a bare JID then the filter will match any address whose bare JID matches the
29 * specified JID. But if the specified address is a full JID then the filter will only match
36 private String address; field in class:FromMatchesFilter
43 * Creates a "from" filter using the "from" field part. If the specified address is a bare JID
44 * then the filter will match any address whose bare JID matches the specified JID. But if the
45 * specified address is a full JID then the filter will only match if the sender of the packet
48 * @param address the from field value the packet must match. Could be a full or bare JID.
50 public FromMatchesFilter(String address) {
51 if (address == null)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
type_profiler_map.h 14 void InsertType(void* address, size_t size, const std::type_info& type);
15 void EraseType(void* address);
16 const std::type_info* LookupType(const void* address);
  /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;
  /external/chromium_org/sandbox/win/src/
service_resolver.cc 15 const void** address) {
19 const_cast<void**>(address));
26 void** address) {
27 DCHECK(address);
32 *address = module_image.GetProcAddress(function_name);
34 if (NULL == *address) {
  /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...]
  /external/nist-sip/java/javax/sip/header/
HeaderAddress.java 3 import javax.sip.address.Address;
6 Address getAddress();
7 void setAddress(Address address);
  /external/chromium_org/third_party/WebKit/Source/wtf/
DynamicAnnotations.h 36 * instruction and/or to a particular object (address) in the program.
54 /* Tell data race detector that we're not interested in reports on the given address range. */
55 #define WTF_ANNOTATE_BENIGN_RACE_SIZED(address, size, description) WTFAnnotateBenignRaceSized(__FILE__, __LINE__, address, size, description)
75 #define WTF_ANNOTATE_HAPPENS_BEFORE(address) WTFAnnotateHappensBefore(__FILE__, __LINE__, address)
76 #define WTF_ANNOTATE_HAPPENS_AFTER(address) WTFAnnotateHappensAfter(__FILE__, __LINE__, address)
83 WTF_EXPORT void WTFAnnotateHappensBefore(const char* file, int line, const volatile void* address);
84 WTF_EXPORT void WTFAnnotateHappensAfter(const char* file, int line, const volatile void* address);
    [all...]
  /external/chromium_org/third_party/codesighs/
msmap.h 56 typedef unsigned long address; typedef
87 address mPrefix;
88 address mOffset;
89 address mLength;
90 address mUsed;
102 address mPrefix;
103 address mOffset;
105 address mRVABase;
121 address mPreferredLoadAddress;
125 address mEntryPrefix
    [all...]
  /external/chromium_org/components/autofill/core/browser/
address_unittest.cc 9 #include "components/autofill/core/browser/address.h"
18 Address address; local
19 EXPECT_EQ(base::string16(), address.GetRawInfo(ADDRESS_HOME_COUNTRY));
23 address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
26 address.SetInfo(
28 country = address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
30 country = address.GetInfo(
33 country = address.GetInfo(
37 address.SetRawInfo(ADDRESS_HOME_COUNTRY, ASCIIToUTF16("CA"))
50 Address address; local
114 Address address; local
156 Address address; local
185 Address address; local
    [all...]
  /external/llvm/lib/Support/
MemoryObject.cpp 16 int MemoryObject::readBytes(uint64_t address,
19 uint64_t current = address;
25 while (current - address < size) {
26 if (readByte(current, &buf[(current - address)]))
  /external/smack/src/org/xbill/DNS/
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...]
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...]
  /external/chromium_org/net/udp/
udp_net_log_parameters.cc 18 const IPEndPoint* address,
24 if (address)
25 dict->SetString("address", address->ToString());
29 base::Value* NetLogUDPConnectCallback(const IPEndPoint* address,
32 dict->SetString("address", address->ToString());
41 const IPEndPoint* address) {
43 return base::Bind(&NetLogUDPDataTranferCallback, byte_count, bytes, address);
47 const IPEndPoint* address) {
    [all...]

Completed in 938 milliseconds

1 2 3 4 5 6 7 8 91011>>