/libcore/luni/src/test/resources/wf/ |
staff.xml | 20 <address domestic="Yes">1230 North Ave. Dallas, Texas 98551</address> 29 <address domestic="Yes" street="Yes">&ent2; Dallas, &ent3; 30 98554</address> 39 <address domestic="Yes" street="No">PO Box 27 Irving, texas 98553</address> 47 <address domestic="Yes" street="Y&ent1;">27 South Road. Dallas, Texas 98556</address> 55 <address street="Yes">1821 Nordic. Road, Irving Texas 98558</address> [all...] |
/external/chromium/net/udp/ |
udp_socket_libevent.h | 28 // Connect the socket to connect with a certain |address|. 30 int Connect(const IPEndPoint& address); 32 // Bind the address/port for this socket to |address|. This is generally 35 int Bind(const IPEndPoint& address); 40 // Copy the remote udp address into |address| and return a network error code. 41 int GetPeerAddress(IPEndPoint* address) const; 43 // Copy the local udp address into |address| and return a network error code [all...] |
udp_socket_win.cc | 77 int UDPSocketWin::GetPeerAddress(IPEndPoint* address) const { 79 DCHECK(address); 89 scoped_ptr<IPEndPoint> address(new IPEndPoint()); 90 if (!address->FromSockAddr(addr, addr_len)) 92 remote_address_.reset(address.release()); 95 *address = *remote_address_; 99 int UDPSocketWin::GetLocalAddress(IPEndPoint* address) const { 101 DCHECK(address); 111 scoped_ptr<IPEndPoint> address(new IPEndPoint()); 112 if (!address->FromSockAddr(addr, addr_len) [all...] |
udp_socket_libevent.cc | 81 int UDPSocketLibevent::GetPeerAddress(IPEndPoint* address) const { 83 DCHECK(address); 93 scoped_ptr<IPEndPoint> address(new IPEndPoint()); 94 if (!address->FromSockAddr(addr, addr_len)) 96 remote_address_.reset(address.release()); 99 *address = *remote_address_; 103 int UDPSocketLibevent::GetLocalAddress(IPEndPoint* address) const { 105 DCHECK(address); 115 scoped_ptr<IPEndPoint> address(new IPEndPoint()); 116 if (!address->FromSockAddr(addr, addr_len) [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugArangeSet.cpp | 32 if (ArangeDescriptors[i].getEndAddress() >= ArangeDescriptors[i+1].Address){ 33 // The current range ends at or exceeds the start of the next address 34 // range. Compute the max end address between the two and use that to 39 ArangeDescriptors[i].Length = max_end_addr - ArangeDescriptors[i].Address; 43 // Discontiguous address range, just proceed to the next one. 55 // 7.20 Address Range Table 57 // Each set of entries in the table of address ranges contained in 63 // containing the size in bytes of an address (or the offset portion of 64 // an address for segmented addressing) on the target system; and a 67 // of tuples. Each tuple consists of an address and a length, each i [all...] |
/external/webkit/Source/JavaScriptCore/assembler/ |
MacroAssembler.h | 88 loadPtr(Address(stackPointerRegister, (index * sizeof(void*))), dest); 93 storePtr(src, Address(stackPointerRegister, (index * sizeof(void*)))); 98 store32(value, Address(stackPointerRegister, (index * sizeof(void*)))); 103 storePtr(imm, Address(stackPointerRegister, (index * sizeof(void*)))); 123 void branch32(Condition cond, RegisterID left, Address right, Label target) 219 void loadPtr(ImplicitAddress address, RegisterID dest) 221 load32(address, dest); 224 void loadPtr(BaseIndex address, RegisterID dest) 226 load32(address, dest); 229 void loadPtr(void* address, RegisterID dest 261 store32(TrustedImm32(imm), address); local 266 store32(TrustedImm32(imm), address); local [all...] |
MacroAssemblerX86Common.h | 87 // may often be a memory location (explictly described using an Address 95 void add32(TrustedImm32 imm, Address address) 97 m_assembler.addl_im(imm.m_value, address.offset, address.base); 105 void add32(Address src, RegisterID dest) 110 void add32(RegisterID src, Address dest) 125 void and32(RegisterID src, Address dest) 130 void and32(Address src, RegisterID dest) 135 void and32(TrustedImm32 imm, Address address [all...] |
MacroAssemblerARM.cpp | 71 void MacroAssemblerARM::load32WithUnalignedHalfWords(BaseIndex address, RegisterID dest) 75 ASSERT(address.scale >= 0 && address.scale <= 3); 76 op2 = m_assembler.lsl(address.index, static_cast<int>(address.scale)); 78 if (address.offset >= 0 && address.offset + 0x2 <= 0xff) { 79 m_assembler.add_r(ARMRegisters::S0, address.base, op2); 80 m_assembler.ldrh_u(dest, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset)); 81 m_assembler.ldrh_u(ARMRegisters::S0, ARMRegisters::S0, ARMAssembler::getOp2Byte(address.offset + 0x2)) [all...] |
/libcore/luni/src/main/java/libcore/icu/ |
RuleBasedCollatorICU.java | 44 // The address of the ICU4C native peer. 45 private int address; field in class:RuleBasedCollatorICU 51 address = NativeCollation.openCollatorFromRules(rules, VALUE_OFF, VALUE_DEFAULT_STRENGTH); 55 address = NativeCollation.openCollator(locale.toString()); 58 private RuleBasedCollatorICU(int address) { 59 this.address = address; 63 return new RuleBasedCollatorICU(NativeCollation.safeClone(address)); 67 return NativeCollation.compare(address, source, target); 71 return NativeCollation.getAttribute(address, DECOMPOSITION_MODE) [all...] |
NativeBreakIterator.java | 30 private final int address; field in class:NativeBreakIterator 34 private NativeBreakIterator(int address, int type) { 35 this.address = address; 42 int cloneAddr = cloneImpl(this.address); 69 closeBreakIteratorImpl(this.address); 76 return currentImpl(this.address); 80 return firstImpl(this.address); 84 return followingImpl(this.address, offset); 88 int newLoc = currentImpl(this.address); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
DetailsAddressResolver.java | 20 import android.location.Address; 36 private Future<Address> mAddressLookupJob; 39 private class AddressLookupJob implements Job<Address> { 46 public Address run(JobContext jc) { 53 public void onAddressAvailable(String address); 65 new FutureListener<Address>() { 66 public void onFutureDone(final Future<Address> future) { 80 private void updateLocation(Address address) { 81 if (address != null) [all...] |
/external/chromium/chrome/browser/autofill/ |
address.h | 17 // A form group that stores address information. 18 class Address : public FormGroup { 20 Address(); 21 Address(const Address& address); 22 virtual ~Address(); 24 Address& operator=(const Address& address); [all...] |
/frameworks/base/core/java/android/server/ |
BluetoothEventLoop.java | 76 String address = null; 79 address = (String)msg.obj; 80 if (address != null) { 81 mBluetoothService.setPairingConfirmation(address, true); 94 address = devices[0]; 95 mBluetoothService.setBondState(address, 178 private void addDevice(String address, String[] properties) { 181 deviceProperties.addProperties(address, properties); 182 String rssi = deviceProperties.getProperty(address, "RSSI"); 183 String classValue = deviceProperties.getProperty(address, "Class") 242 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 270 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 287 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 390 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 477 String address = mBluetoothService.getAddressFromObjectPath(path); local 500 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 527 String address = mBluetoothService.getAddressFromObjectPath(objectPath); local 559 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 595 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 618 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 640 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 705 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 741 String address = checkPairingRequestAndGetAddress(objectPath, nativeData); local 864 String address = mBluetoothService.getAddressFromObjectPath(deviceObjectPath); local 914 String address = mBluetoothService.getAddressFromObjectPath(path); local 951 String address = mBluetoothService.getAddressFromObjectPath(path); local [all...] |
BluetoothDeviceProperties.java | 38 Map<String, String> addProperties(String address, String[] properties) { 45 propertyValues = mPropertiesMap.get(address); 75 mPropertiesMap.put(address, propertyValues); 80 mService.updateDeviceServiceChannelCache(address); 84 void setProperty(String address, String name, String value) { 86 Map <String, String> propVal = mPropertiesMap.get(address); 89 mPropertiesMap.put(address, propVal); 91 Log.e(TAG, "setRemoteDeviceProperty for a device not in cache:" + address); 96 boolean isInCache(String address) { 98 return (mPropertiesMap.get(address) != null) [all...] |
/external/nist-sip/java/gov/nist/core/ |
Host.java | 58 * Determines whether or not we should tolerate and strip address scope 59 * zones from IPv6 addresses. Address scope zones are sometimes returned 76 /** address field 92 /** Constructor given host name or IP address. 156 /** get the Address field 164 * Convenience function to get the raw IP destination address 194 /** Set the IP Address. 195 *@param address is the address string to set. 197 public void setHostAddress(String address) { [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/ |
AddressList.java | 20 package org.apache.james.mime4j.field.address;
22 import org.apache.james.mime4j.field.address.parser.AddressListParser;
23 import org.apache.james.mime4j.field.address.parser.ParseException;
29 * An immutable, random-access list of Address objects.
35 private ArrayList<Address> addresses;
38 * @param addresses An ArrayList that contains only Address objects.
41 public AddressList(ArrayList<Address> addresses, boolean dontCopy) {
43 this.addresses = (dontCopy ? addresses : new ArrayList<Address>(addresses));
45 this.addresses = new ArrayList<Address>(0);
56 * Gets an address. [all...] |
/external/chromium/chrome/browser/resources/options/ |
autofill_overlay.css | 1 #autofill-edit-address-overlay { 25 #autofill-edit-address-overlay list#full-name-list { 29 #autofill-edit-address-overlay list#full-name-list div.static-text { 33 #autofill-edit-address-overlay list#full-name-list input { 46 #autofill-edit-address-overlay list { 52 #autofill-edit-address-overlay list div.static-text { 61 #autofill-edit-address-overlay list input {
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
HeaderFactoryExt.java | 31 import javax.sip.address.Address; 60 * @param address -- 61 * address for the header. 64 public ReferredByHeader createReferredByHeader(Address address); 91 * @param address - 92 * Address 97 public PAssertedIdentityHeader createPAssertedIdentityHeader(Address address) [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...] |
/frameworks/base/voip/jni/rtp/ |
util.cpp | 28 jniThrowNullPointerException(env, "address"); 35 const char *address = env->GetStringUTFChars(jAddress, NULL); local 36 if (!address) { 43 if (inet_pton(AF_INET, address, &(sin->sin_addr)) > 0) { 46 env->ReleaseStringUTFChars(jAddress, address); 51 if (inet_pton(AF_INET6, address, &(sin6->sin6_addr)) > 0) { 54 env->ReleaseStringUTFChars(jAddress, address); 58 env->ReleaseStringUTFChars(jAddress, address); 59 jniThrowException(env, "java/lang/IllegalArgumentException", "address");
|
/libcore/luni/src/main/java/libcore/io/ |
NioBufferIterator.java | 28 private final int address; field in class:NioBufferIterator 34 NioBufferIterator(int address, int size, boolean swap) { 35 this.address = address; 49 Memory.peekByteArray(address + position, dst, dstOffset, byteCount); 54 byte result = Memory.peekByte(address + position); 60 int result = Memory.peekInt(address + position, swap); 66 Memory.peekIntArray(address + position, dst, dstOffset, intCount, swap); 71 short result = Memory.peekShort(address + position, swap);
|
/external/v8/src/ |
v8memory.h | 39 static uint8_t& uint8_at(Address addr) { 43 static uint16_t& uint16_at(Address addr) { 47 static uint32_t& uint32_at(Address addr) { 51 static int32_t& int32_at(Address addr) { 55 static uint64_t& uint64_at(Address addr) { 59 static int& int_at(Address addr) { 63 static double& double_at(Address addr) { 67 static Address& Address_at(Address addr) { 68 return *reinterpret_cast<Address*>(addr) [all...] |
/external/valgrind/main/memcheck/tests/ |
execve.stderr.exp | 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd 7 Address 0x........ is not stack'd, malloc'd or (recently) free'd 11 Address 0x........ is not stack'd, malloc'd or (recently) free'd
|
/external/clang/test/SemaCXX/ |
return-stack-addr.cpp | 5 return &x; // expected-warning {{address of stack memory}} 10 return x; // expected-warning {{address of stack memory}} 15 return &x[i]; // expected-warning {{address of stack memory}} 20 return &i[x]; // expected-warning {{address of stack memory}} 25 return &x[2]; // expected-warning {{address of stack memory}} 35 return &*&x; // expected-warning {{address of stack memory}} 40 return (&(*(&x))); // expected-warning {{address of stack memory}} 45 return &*(&x+1); // expected-warning {{address of stack memory}} 50 return &*(&x+1); // expected-warning {{address of stack memory}} 55 return &a.x; // expected-warning {{address of stack memory} [all...] |
/external/nist-sip/java/javax/sip/header/ |
HeaderFactory.java | 8 import javax.sip.address.Address; 9 import javax.sip.address.URI; 41 ContactHeader createContactHeader(Address address); 79 FromHeader createFromHeader(Address address, String tag) 125 RecordRouteHeader createRecordRouteHeader(Address address); 127 ReferToHeader createReferToHeader(Address address) [all...] |