HomeSort by relevance Sort by last modified time
    Searched full:contact (Results 1 - 25 of 1494) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 18 Defines Django forms for inserting/updating/viewing contact data
66 """Represents django form for entering contact info."""
69 model = datastore.Contact
74 Processes requests to add a new contact. GET presents an empty
75 contact form for the user to fill in. POST saves the new contact
80 self.send_form('Add Contact', '/add_contact', -1, None, ContactForm())
91 self.send_form('Add Contact', '/add_contact', -1, None, data)
96 Process requests to edit a contact's information. GET presents a form
97 with the current contact information filled in. POST saves new informatio
    [all...]
web_services.py 131 it returns user's contact info in JSON format.
139 logging.info('*** Starting contact sync ***')
149 # the newly added contact.
159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')
184 contacts = datastore.Contact.all()
190 for contact in contacts:
191 if (contact.updated > high_water_date):
192 high_water_date = contact.updated
198 for contact in contacts:
200 # contact (for example, it's a contact just uploaded from the client
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
OnContactBrowserActionListener.java 21 * Action callbacks that can be sent by a contact list.
32 * Opens the specified contact for viewing.
34 * @param contactLookupUri The lookup-uri of the Contact that should be opened
39 * Creates a new contact.
44 * Opens the specified contact for editing.
49 * Initiates the contact deletion process.
54 * Adds the specified contact to favorites
59 * Removes the specified contact from favorites.
64 * Places a call to the specified contact.
69 * Initiates a text message to the specified contact
    [all...]
OnContactPickerActionListener.java 22 * Action callbacks that can be sent by a contact picker.
27 * Returns the selected contact to the requester.
32 * Returns the selected contact as a shortcut intent.
37 * Creates a new contact and then returns it to the caller.
42 * Opens the specified contact for editing.
  /external/chromium/build/temp_gyp/
README.chromium 2 Chromium imports an upstream revision with these files. Contact mark for
  /frameworks/base/core/java/android/pim/
package.html 5 by contact lists and calendars.
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/
contacts.html 35 {% for contact in contacts %}
36 <tr {% if contact.deleted %} class="deleted" {% endif %}>
38 <a href="/edit_avatar?id={{ contact.key.id }}"><img src="/avatar?id={{ contact.key.id }}" height="25" width="25" /></a>
40 <td><a href="/edit_contact?id={{ contact.key.id }}">{{ contact.key.id }}</a></td>
41 <td><a href="/edit_contact?id={{ contact.key.id }}">{{ contact.firstname }} {{ contact.lastname }}</a></td>
42 <td>{{ contact.email }}</td
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 205 public static RawContact valueOf(JSONObject contact) {
208 final String userName = !contact.isNull("u") ? contact.getString("u") : null;
209 final int serverContactId = !contact.isNull("i") ? contact.getInt("i") : -1;
210 // If we didn't get either a username or serverId for the contact, then
213 throw new JSONException("JSON contact missing required 'u' or 'i' fields");
216 final int rawContactId = !contact.isNull("c") ? contact.getInt("c") : -1;
217 final String firstName = !contact.isNull("f") ? contact.getString("f") : null
    [all...]
  /docs/source.android.com/src/compatibility/
sidebar.md 10 - [Contact Us](/compatibility/contact-us.html)
  /packages/apps/Mms/src/com/android/mms/data/
ContactList.java 11 import com.android.mms.data.Contact.UpdateListener;
15 public class ContactList extends ArrayList<Contact> {
22 list.add(Contact.get(number, canBlock));
34 Contact contact = Contact.get(number, canBlock); local
36 contact.setNumber(number);
38 list.add(contact);
47 * for the numbers don't belong to any contact.
57 Contact contact = Contact.get(uri.getSchemeSpecificPart(), true) local
77 Contact contact = Contact.get(entry.number, canBlock); local
    [all...]
Contact.java 40 public class Contact {
44 public static final int CONTACT_METHOD_TYPE_SELF = 3; // the "Me" or profile contact
48 private static final String TAG = "Contact";
57 // log("contact changed, invalidate cache");
76 // Contact, -1 is invalid. e.g. contact method id is 20 when
77 // current contact has phone content://.../phones/20.
95 private boolean mIsMe; // true if this contact is me!
98 public void onUpdate(Contact updated);
101 private Contact(String number, String name)
543 Contact contact = internalGet(number, isMe); local
    [all...]
  /development/samples/ContactManager/res/values/
strings.xml 19 <string name="addContactButtonLabel">Add Contact</string>
20 <string name="addContactTitle">Add Contact</string>
22 <string name="app_name">Contact Manager</string>
23 <string name="contactCreationFailure">Contact creation failed, check logs.</string>
24 <string name="contactEmailLabel">Contact Email</string>
25 <string name="contactNameLabel">Contact Name</string>
26 <string name="contactPhoneLabel">Contact Phone</string>
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContactParser.java 28 import gov.nist.javax.sip.header.Contact;
38 * A parser for The SIP contact header.
45 public ContactParser(String contact) {
46 super(contact);
56 headerName(TokenTypes.CONTACT);
59 Contact contact = new Contact(); local
64 contact.setWildCardFlag(true);
66 super.parse(contact);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 54 // Remove the new contact from all groups
61 // If the contact is not in the "my contacts" group, nothing should be found
68 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo( local
70 new SuggestionTesterBuilder(contact).query("D").expectIcon1Uri(true).expectedText1(
75 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo( local
77 new SuggestionTesterBuilder(contact).query("foo@ac").expectIcon1Uri(true).expectedIcon2(
83 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google") local
85 new SuggestionTesterBuilder(contact).query("D").expectedText1("Deer Dough").expectedText2(
90 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").nickname( local
92 new SuggestionTesterBuilder(contact).query("L").expectedText1("Deer Dough").expectedText2
97 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google") local
104 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google") local
113 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo( local
162 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTester
328 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTesterBuilder
    [all...]
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 30 * A simple activity that shows a "Pick Contact" button and two fields: contact's name
31 * and phone number. The user taps on the Pick Contact button to bring up
32 * the contact chooser. Once this activity receives the result from contact picker,
34 * contact's name and phone number. When the query completes, the activity displays
39 // Request code for the contact picker activity
58 // Install a click handler on the Pick Contact button
69 * Click handler for the Pick Contact button. Invokes a contact picker activity
    [all...]
  /packages/apps/Nfc/res/values/
strings.xml 13 <!-- A notification description string informing the user that contact details were received over NFC [CHAR-LIMIT=64] -->
14 <string name="inbound_me_profile_title">Contact received over NFC</string>
16 <!-- A notification action string prompting the user to add contact details to the People application [CHAR-LIMIT=64] -->
17 <string name="inbound_me_profile_text">Tap to add this person as a contact</string>
19 <!-- A notification description string asking the user to share their contact details over NFC [CHAR-LIMIT=64] -->
22 <!-- A notification action string prompting the user to share their contact details over NFC [CHAR-LIMIT=64] -->
23 <string name="outbound_me_profile_text">Tap to give this person your contact info</string>
  /packages/apps/Contacts/tests/src/com/android/contacts/
ContactLoaderTest.java 40 * Runs ContactLoader tests for the the contact-detail and editor view.
114 ContactLoader.Result contact = assertLoadContact(baseUri); local
116 assertEquals(contactId, contact.getId());
117 assertEquals(rawContactId, contact.getNameRawContactId());
118 assertEquals(DisplayNameSources.STRUCTURED_NAME, contact.getDisplayNameSource());
119 assertEquals(lookupKey, contact.getLookupKey());
120 assertEquals(lookupUri, contact.getLookupUri());
121 assertEquals(1, contact.getEntities().size());
122 assertEquals(1, contact.getStatuses().size());
146 ContactLoader.Result contact = assertLoadContact(legacyUri) local
177 ContactLoader.Result contact = assertLoadContact(rawContactUri); local
206 ContactLoader.Result contact = assertLoadContact(lookupNoIdUri); local
235 ContactLoader.Result contact = assertLoadContact(lookupUri); local
274 ContactLoader.Result contact = assertLoadContact(lookupWithWrongIdUri); local
    [all...]
  /packages/apps/Contacts/tests/res/values/
donottranslate_strings.xml 32 <item>ACTION_PICK: contact</item>
33 <item>ACTION_PICK: contact (legacy)</item>
39 <item>ACTION_CREATE_SHORTCUT: contact</item>
42 <item>ACTION_GET_CONTENT: contact</item>
43 <item>ACTION_GET_CONTENT: contact (legacy)</item>
50 <item>ACTION_SEARCH: contact</item>
54 <item>SEARCH_SUGGESTION_CLICKED: contact</item>
59 <!-- Edit Contact -->
63 <item>EDIT (called for raw contact)</item>
65 <item>EDIT (create new contact)</item
    [all...]
  /packages/apps/Contacts/res/values-en-rUS/
strings.xml 18 <!-- Field title for the given name of a contact -->
20 <!-- Field title for the family name of a contact -->
23 <!-- An allowable value for the "sort list by" contact display option -->
26 <!-- An allowable value for the "sort list by" contact display option -->
29 <!-- An allowable value for the "view names as" contact display option -->
32 <!-- An allowable value for the "view names as" contact display option -->
  /packages/providers/ContactsProvider/res/values-tl/
strings.xml 20 <string name="app_label" msgid="3389954322874982620">"Imbakan ng Mga Contact"</string>
21 <string name="provider_label" msgid="6012150850819899907">"Mga Contact"</string>
22 <string name="upgrade_msg" msgid="6174884195179549239">"Ina-upgrade ang database ng Mga Contact."</string>
23 <string name="upgrade_out_of_memory_notification_ticker" msgid="4089605622758004662">"Nangangailangan ang pag-upgrade sa contact nang higit pang memory"</string>
24 <string name="upgrade_out_of_memory_notification_title" msgid="7849508493764133004">"Pag-upgrade ng imbakan ng contact"</string>
26 <string name="default_directory" msgid="93961630309570294">"Mga Contact"</string>
  /packages/apps/Contacts/res/values-tl/
strings.xml 21 <string name="contactsList" msgid="8661624236494819731">"Mga Contact"</string>
22 <string name="shortcutContact" msgid="749243779392912958">"Contact"</string>
25 <string name="shortcutActivityTitle" msgid="6642877210643565436">"Pumili ng shortcut sa contact"</string>
28 <string name="contactPickerActivityTitle" msgid="6886592363525235031">"Pumili ng contact"</string>
32 <string name="viewContactTitle" msgid="7989394521836644384">"Mga detalye ng contact"</string>
33 <string name="viewContactDesription" msgid="214186610887547860">"Tingnan ang contact"</string>
34 <string name="editContactDescription" msgid="2947202828256214947">"I-edit ang contact"</string>
35 <string name="insertContactDescription" msgid="4709878105452681987">"Lumikha ng contact"</string>
40 <string name="searchHint" msgid="8482945356247760701">"Maghanap ng mga contact"</string>
42 <string name="menu_newContact" msgid="1209922412763274638">"Bagong contact"</string
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_ContactsTest.java 65 TestContact contact = rawContact.getContact().load(); local
66 long oldLastContacted = contact.getLong(Contacts.LAST_TIME_CONTACTED);
68 Contacts.markAsContacted(mContentResolver, contact.getId());
69 contact.load(); // Reload
71 long lastContacted = contact.getLong(Contacts.LAST_TIME_CONTACTED);
75 Contacts.markAsContacted(mContentResolver, contact.getId());
76 contact.load();
78 lastContacted = contact.getLong(Contacts.LAST_TIME_CONTACTED);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
contacts.html 30 for (var i = 0, contact; contact = contacts[i]; i++) {
35 pName.innerText = contact['name'];
38 for (var j = 0, email; email = contact['emails'][j]; j++) {
  /external/nist-sip/java/javax/sip/header/
ContactHeader.java 6 String NAME = "Contact";
  /packages/apps/Contacts/res/values/
strings.xml 28 <!-- Name of activity that allows users to create shortcuts on the home screen to a contact.
30 <string name="shortcutContact">Contact</string>
32 <!-- Name of activity that allows users to create shortcuts on the home screen to dial a contact.
36 <!-- Name of activity that allows users to create shortcuts on the home screen to message (SMS) a contact.
40 <!-- Activity title when the user is selecting a contact for a shortcut. -->
41 <string name="shortcutActivityTitle">Choose a contact shortcut</string>
43 <!-- Activity title when the user is selecting a contact for a direct dial shortcut. -->
46 <!-- Activity title when the user is selecting a contact for a direct message shortcut. -->
49 <!-- Activity title when the user is selecting a contact. [CHAR LIMIT=128] -->
50 <string name="contactPickerActivityTitle">Select a contact</string
    [all...]

Completed in 341 milliseconds

1 2 3 4 5 6 7 8 91011>>