HomeSort by relevance Sort by last modified time
    Searched refs:ADDRESS (Results 1 - 25 of 70) sorted by null

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
EmailDataItem.java 34 return getContentValues().getAsString(Email.ADDRESS);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlvTag.java 31 ADDRESS(0x06),
  /external/mdnsresponder/mDNSShared/
dnsextd_lexer.l 59 address return ADDRESS;
dnsextd_parser.y 105 %token ADDRESS
178 NAMESERVER ADDRESS networkaddress
182 NAMESERVER ADDRESS networkaddress PORT NUMBER
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForEmail.java 28 * Handler for email address data rows.
45 String address = mDbHelper.insertNameLookupForEmail(rawContactId, dataId, email); local
46 if (address != null) {
63 String address = values.getAsString(Email.DATA); local
65 mDbHelper.insertNameLookupForEmail(rawContactId, dataId, address);
99 return values.containsKey(Email.ADDRESS);
104 builder.appendContentFromColumn(Email.ADDRESS);
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLElement144.js 80 Retrieve the class attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("classNameLink","ADDRESS-class",vclassname);
HTMLElement28.js 80 Retrieve the id attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("idLink","Test-ADDRESS",vid);
HTMLElement57.js 80 Retrieve the title attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("titleLink","ADDRESS Element",vtitle);
HTMLElement115.js 80 Retrieve the dir attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
HTMLElement86.js 80 Retrieve the lang attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLElement144.js 80 Retrieve the class attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("classNameLink","ADDRESS-class",vclassname);
HTMLElement28.js 80 Retrieve the id attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("idLink","Test-ADDRESS",vid);
HTMLElement57.js 80 Retrieve the title attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
104 assertEquals("titleLink","ADDRESS Element",vtitle);
HTMLElement115.js 80 Retrieve the dir attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
HTMLElement86.js 80 Retrieve the lang attribute of the ADDRESS element and examine its value.
99 nodeList = doc.getElementsByTagName("address");
  /packages/apps/Mms/src/com/android/mms/util/
AddressUtils.java 49 builder.build(), new String[] {Addr.ADDRESS, Addr.CHARSET},
  /packages/apps/Mms/src/com/android/mms/ui/
ClassZeroActivity.java 54 Sms.ADDRESS, Sms.PROTOCOL };
188 values.put(Inbox.ADDRESS, sms.getDisplayOriginatingAddress());
213 String selection = Sms.ADDRESS + " = ? AND " + Sms.PROTOCOL + " = ?";
DeliveryReportActivity.java 63 Mms.Addr.ADDRESS, //0
69 Mms.Addr.ADDRESS, //0
75 Sms.ADDRESS, //0
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 47 * A base class for email address autocomplete adapters. It uses
48 * {@link Email#CONTENT_FILTER_URI} to search for data rows by email address
120 public static final int ADDRESS = 1;
333 String emailAddress = cursor.getString(EmailQuery.ADDRESS);
543 String emailAddress = cursor.getString(EmailQuery.ADDRESS);
557 String emailAddress = cursor.getString(EmailQuery.ADDRESS);
566 * Checks if the supplied email address is already present in partitions other
577 String address = cursor.getString(EmailQuery.ADDRESS); local
578 if (TextUtils.equals(emailAddress, address)) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java 92 Sms.ADDRESS, //2
257 String address = c.getString(SEND_COLUMN_ADDRESS); local
265 address, msgText, threadId, status == Sms.STATUS_PENDING,
272 ", address: " + address +
377 ", address: " + sms.getOriginatingAddress() +
449 Sms.ADDRESS,
480 * message's originating address and protocol identifier. If
511 Sms.ADDRESS + " = ? AND " +
571 String address = values.getAsString(Sms.ADDRESS) local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 60 values.put(CommonDataKinds.Email.ADDRESS, email);
  /external/e2fsprogs/e2fsck/
mtrace.h 20 The author may be reached (Email) at the address mike@ai.mit.edu,
153 /* Address to block number and vice versa. */
155 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
177 __ptr_t aligned; /* The address that memaligned returned. */
178 __ptr_t exact; /* The address that malloc returned. */
  /packages/apps/Mms/src/com/android/mms/data/
RecipientIdCache.java 33 Uri.parse("content://mms-sms/canonical-address");
187 values.put(Telephony.CanonicalAddressesColumns.ADDRESS, number);
236 * table and returns the associated number or email address.
239 * @return phone number or email address of the recipientId
268 values.put(Telephony.CanonicalAddressesColumns.ADDRESS, number);
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 77 * The address of the other party
80 public static final String ADDRESS = "address";
208 * @param address the address of the sender
217 Uri uri, String address, String body, String subject,
219 return addMessageToUri(resolver, uri, address, body, subject,
228 * @param address the address of the sender
238 Uri uri, String address, String body, String subject
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 82 // The geo Uri scheme prefix, used with Intent.ACTION_VIEW to form a geographical address
328 // This query loads contact address details, see
370 // This query loads the contact address details. More than
371 // one contact address is possible, so move each one to a
376 // be created once and used for each address.
389 // Builds the address layout
393 data.getString(ContactAddressQuery.ADDRESS));
394 // Adds the new address layout to the details layout
398 // If nothing found, adds an empty address layout
412 * Builds an empty address layout that just shows that no addresse
    [all...]

Completed in 507 milliseconds

1 2 3