/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...] |
/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/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...] |
/external/nist-sip/java/javax/sip/header/ |
HeaderAddress.java | 3 import javax.sip.address.Address; 6 Address getAddress(); 7 void setAddress(Address 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;
|
StreamableMemoryObject.cpp | 28 virtual int readByte(uint64_t address, uint8_t* ptr) const; 29 virtual int readBytes(uint64_t address, 33 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const; 34 virtual bool isValidAddress(uint64_t address) const { 35 return validAddress(address); 37 virtual bool isObjectEnd(uint64_t address) const {return objectEnd(address);} 45 bool validAddress(uint64_t address) const { 46 return static_cast<ptrdiff_t>(address) < LastChar - FirstChar; 48 bool objectEnd(uint64_t address) const [all...] |
/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...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
DebugInfoBuilder.java | 38 * an "event" at a specific address, where an event is something like a line number, start/end local, etc. 61 private void checkAddress(int address) { 62 if (lastAddress > address) { 63 throw new RuntimeException("Cannot add an event with an address before the address of the prior event"); 75 public void addLine(int address, int line) { 78 checkAddress(address); 84 events.add(new LineEvent(address, line)); 87 public void addLocal(int address, int registerNumber, String localName, String localType) { 90 checkAddress(address); 256 private final int address; field in class:DebugInfoBuilder.LineEvent 291 private final int address; field in class:DebugInfoBuilder.StartLocalEvent 318 private final int address; field in class:DebugInfoBuilder.StartLocalExtendedEvent 355 private final int address; field in class:DebugInfoBuilder.EndLocalEvent 375 private final int address; field in class:DebugInfoBuilder.RestartLocalEvent 395 private final int address; field in class:DebugInfoBuilder.PrologueEvent 413 private final int address; field in class:DebugInfoBuilder.EpilogueEvent 431 private final int address; field in class:DebugInfoBuilder.SetFileEvent [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/elfutils/libdwfl/ |
dwfl_addrdwarf.c | 1 /* Fetch libdw handle from address. 53 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) 55 return INTUSE(dwfl_module_getdwarf) (INTUSE(dwfl_addrmodule) (dwfl, address),
|
dwfl_addrmodule.c | 1 /* Find module containing address. 53 dwfl_addrmodule (Dwfl *dwfl, Dwarf_Addr address) 56 (void) INTUSE(dwfl_addrsegment) (dwfl, address, &mod);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
PendingAttribute.java | 28 public PendingAttribute(final int frequency, final int address) { 30 mAddress = address;
|
/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...] |