HomeSort by relevance Sort by last modified time
    Searched refs:Address (Results 401 - 425 of 760) sorted by null

<<11121314151617181920>>

  /packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java 26 import com.android.emailcommon.mail.Address;
167 message.mFrom = Address.parseAndPack("Jones@Registry.Org");
168 message.mTo = Address.parseAndPack("Smith@Registry.Org");
  /packages/apps/Exchange/src/com/android/exchange/service/
EasMeetingResponder.java 10 import com.android.emailcommon.mail.Address;
121 // This will come as "First Last" <box@server.blah>, so we use Address to
122 // parse it into parts; we only need the email address part for the ics file
123 final Address[] addrs = Address.parse(meetingInfo.get(MeetingInfo.MEETING_ORGANIZER_EMAIL));
146 // Add ourselves as an attendee, using our account email address
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 36 unsigned char Address;
88 dst->Address = a->Address | b->Address;
132 return &s->R.Address;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow_deadcode.c 36 unsigned char Address;
88 dst->Address = a->Address | b->Address;
132 return &s->R.Address;
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 307 /** IMP Logical Address Maintenance */
577 private byte [] address; field in class:WKSRecord
590 * @param address The IP address
595 WKSRecord(Name name, int dclass, long ttl, InetAddress address, int protocol,
599 if (Address.familyOf(address) != Address.IPv4)
600 throw new IllegalArgumentException("invalid IPv4 address");
601 this.address = address.getAddress()
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 179 // ra: Return address pointer.
486 // Puts a labels target address at the given position.
490 // Read/Modify the code target address in the branch/call instruction at pc.
491 static Address target_address_at(Address pc);
492 static void set_target_address_at(Address pc, Address target);
494 // Return the code target address at a call site from the return address
496 inline static Address target_address_from_return_address(Address pc)
    [all...]
  /external/grub/netboot/
i82586.c 58 Link word The address of the next command.
81 /* Offsets from the base I/O address. */
85 #define SA_DATA 0 /* Station address data, or 3Com signature. */
101 #define NI52_RESET 0 /* writing to this address, resets the i82586 */
108 #define EXOS205_RESET 0 /* writing to this address, resets the i82586 */
120 at 82586 address FFFF, the first byte is at 82586 address 0, 16K, 32K, or
132 reset address 0xfffff6. This is designed to be similar to the EtherExpress,
169 To complete the memory setup you only have to write the station address at
223 /* 0x0024: Setup station address command. *
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 38 * This source is mainly for debugging purposes, should be the address that sent this record.
173 public static class IPv4Address extends Address {
187 // If we have a type A records we should answer with a IPv4 address
215 public static class IPv6Address extends Address {
229 // If we have a type AAAA records we should answer with a IPv6 address
261 * Address record.
263 public static abstract class Address extends DNSRecord {
264 private static Logger logger1 = Logger.getLogger(Address.class.getName());
268 protected Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) {
273 protected Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAd (…)
298 Address address = (Address) other; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-mark-compact.cc 52 Address low = reinterpret_cast<Address>(mem);
53 Address high = low + mem_size;
57 Address original_address = reinterpret_cast<Address>(&s);
58 Address current_address = original_address;
65 Address value = s.Pop()->address();
  /external/llvm/lib/Target/Mips/
MipsLongBranch.cpp 55 uint64_t Size, Address;
265 int64_t TgtAddress = MBBInfos[TgtMBB->getNumber()].Address;
267 int64_t Offset = TgtAddress - (I.Address + I.Size - BalTgtMBBSize * 4);
451 uint64_t Address = 0;
453 for (I = MBBInfos.begin(); I != E; Address += I->Size, ++I)
454 I->Address = Address;
  /external/chromium_org/v8/src/arm/
assembler-arm.h 751 // Puts a labels target address at the given position.
755 // Return the address in the constant pool of the code target address used by
757 INLINE(static Address target_pointer_address_at(Address pc));
760 INLINE(static Address target_pointer_at(Address pc));
761 INLINE(static void set_target_pointer_at(Address pc, Address target));
763 // Read/Modify the code target address in the branch/call instruction at pc
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 55 Address code_start_address = code->instruction_start();
66 Address prev_call_address = NULL;
70 Address call_address = code_start_address + deopt_data->Pc(i)->value();
71 Address deopt_entry = GetDeoptimizationEntry(i, LAZY);
116 Address pc_after,
123 // e5 9f c? ?? ldr ip, [pc, <stack guard address>]
139 // e5 9f c? ?? ldr ip, [pc, <on-stack replacement address>]
142 // address of the stack check stub.
148 // Replace the stack check address in the constant pool
149 // with the entry address of the replacement code
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncParser.java 23 import com.android.emailcommon.mail.Address;
124 msg.mTo = Address.pack(Address.parse(getValue()));
127 Address[] froms = Address.parse(getValue());
131 msg.mFrom = Address.pack(froms);
134 msg.mCc = Address.pack(Address.parse(getValue()));
137 msg.mReplyTo = Address.pack(Address.parse(getValue()))
    [all...]
  /external/v8/src/
platform-cygwin.cc 131 static void UpdateAllocatedSpaceLimits(void* address, int size) {
135 lowest_ever_allocated = Min(lowest_ever_allocated, address);
138 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
142 bool OS::IsOutsideAllocatedSpace(void* address) {
143 return address < lowest_ever_allocated || address >= highest_ever_allocated;
168 void OS::Free(void* address, const size_t size) {
170 int result = munmap(address, size);
176 void OS::ProtectCode(void* address, const size_t size) {
178 VirtualProtect(address, size, PAGE_EXECUTE_READ, &old_protect)
    [all...]
platform-macos.cc 121 static void UpdateAllocatedSpaceLimits(void* address, int size) {
125 lowest_ever_allocated = Min(lowest_ever_allocated, address);
128 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
132 bool OS::IsOutsideAllocatedSpace(void* address) {
133 return address < lowest_ever_allocated || address >= highest_ever_allocated;
171 void OS::Free(void* address, const size_t size) {
173 int result = munmap(address, size);
337 frames[i].address = addresses[i];
374 Address base = static_cast<Address>(reservation)
    [all...]
platform-solaris.cc 158 static void UpdateAllocatedSpaceLimits(void* address, int size) {
162 lowest_ever_allocated = Min(lowest_ever_allocated, address);
165 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
169 bool OS::IsOutsideAllocatedSpace(void* address) {
170 return address < lowest_ever_allocated || address >= highest_ever_allocated;
196 void OS::Free(void* address, const size_t size) {
198 int result = munmap(address, size);
289 walker->frames[i].address = reinterpret_cast<void*>(pc);
355 Address base = static_cast<Address>(reservation)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.cpp 350 Relocator::Address helper_GetGP(MipsRelocator& pParent)
414 Relocator::Address helper_GetGOTOffset(Relocation& pReloc,
574 Relocator::Address G = 0;
608 Relocator::Address G = helper_GetGOTOffset(pReloc, pParent);
624 Relocator::Address G = helper_GetGOTOffset(pReloc, pParent);
636 Relocator::Address G = helper_GetGOTOffset(pReloc, pParent);
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 25 import android.location.Address;
89 mAddress = (TextView) findViewById(R.id.address);
100 // Handler for updating text fields on the UI like the lat/long and address.
352 List<Address> addresses = null;
357 // Update address field with the exception.
361 Address address = addresses.get(0); local
362 // Format the first line of address (if available), city, and country name.
364 address.getMaxAddressLineIndex() > 0 ? address.getAddressLine(0) : ""
    [all...]
  /external/chromium_org/net/dns/
dns_config_service_win_unittest.cc 93 IP_ADAPTER_DNS_SERVER_ADDRESS* address = NULL; local
97 address = adapter->FirstDnsServerAddress = addresses + num_addresses;
99 // Note that |address| is moving backwards.
100 address = address->Next = address - 1;
105 address->Address.lpSockaddr =
108 CHECK(ipe.ToSockAddr(address->Address.lpSockaddr, &length))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_getproc.c 93 * Return dispatch function address for the named static (built-in) function.
105 return (f->Address == NULL)
107 : f->Address;
111 return f->Address;
  /external/chromium_org/v8/src/
handles.h 73 // Returns the address to where the raw pointer is stored.
148 static Address current_next_address(Isolate* isolate);
149 static Address current_limit_address(Isolate* isolate);
150 static Address current_level_address(Isolate* isolate);
platform-freebsd.cc 96 static void UpdateAllocatedSpaceLimits(void* address, int size) {
100 lowest_ever_allocated = Min(lowest_ever_allocated, address);
103 reinterpret_cast<void*>(reinterpret_cast<char*>(address) + size));
107 bool OS::IsOutsideAllocatedSpace(void* address) {
108 return address < lowest_ever_allocated || address >= highest_ever_allocated;
261 Address base = static_cast<Address>(reservation);
262 Address aligned_base = RoundUp(base, alignment);
290 bool result = ReleaseRegion(address(), size())
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 345 inline explicit Immediate(Address addr);
412 return Operand(reinterpret_cast<int32_t>(ext.address()),
419 return Operand(index, scale, reinterpret_cast<int32_t>(arr.address()),
604 inline static Address target_address_at(Address pc);
605 inline static void set_target_address_at(Address pc, Address target);
607 // Return the code target address at a call site from the return address
609 inline static Address target_address_from_return_address(Address pc)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 44 typedef struct Address {
57 // Innocuous defaults for our address.
58 Address()
62 } Address;
293 // Materialize the address created by an alloca into a register, and
  /external/mesa3d/src/mapi/glapi/
glapi_getproc.c 93 * Return dispatch function address for the named static (built-in) function.
105 return (f->Address == NULL)
107 : f->Address;
111 return f->Address;

Completed in 1972 milliseconds

<<11121314151617181920>>