/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...] |
/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/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/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...] |
/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...] |
/bionic/libc/bionic/ |
dlmalloc.c | 23 static void __bionic_heap_usage_error(const char* function, void* address); 35 static void __bionic_heap_usage_error(const char* function, void* address) { 36 __libc_fatal("@@@ ABORTING: invalid address or address of corrupt block %p passed to %s", 37 address, function); 38 // So that we can get a memory dump around the specific address. 39 *((int**) 0xdeadbaad) = (int*) 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...] |
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/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 | 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...] |
/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...] |
/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);
|