HomeSort by relevance Sort by last modified time
    Searched full:contacts (Results 351 - 375 of 1870) sorted by null

<<11121314151617181920>>

  /packages/apps/Contacts/res/values-fr-rCA/
strings.xml 19 <string name="applicationLabel" msgid="3906689777043645443">"Contacts"</string>
20 <string name="contactsList" msgid="8661624236494819731">"Contacts"</string>
30 <string name="searchHint" msgid="8482945356247760701">"Rech. des contacts"</string>
40 <string name="menu_editGroup" msgid="6696843438454341063">"Supprimer les contacts"</string>
44 <string name="menu_selectForGroup" msgid="3999234528229376098">"Sélectionner des contacts"</string>
45 <string name="menu_addContactsToGroup" msgid="655196688840626483">"Ajouter des contacts"</string>
48 <string name="splitConfirmation" msgid="7342030840130187290">"Annuler la fusion et diviser ce contact en plusieurs contacts?"</string>
50 <string name="splitConfirmationWithPendingChanges" msgid="7719062163511895696">"Voulez-vous enregistrer les modifications que vous avez déjà apportées et diviser ce contact en plusieurs contacts?"</string>
57 <string name="menu_linkedContacts" msgid="400444389718855621">"Afficher les contacts associés"</string>
59 <string name="titleJoinContactDataWith" msgid="6825255752748313944">"Associer les contacts"</string
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/database/
DialerDatabaseHelper.java 33 import android.provider.ContactsContract.Contacts;
39 import com.android.contacts.common.R;
40 import com.android.contacts.common.util.StopWatch;
340 * Removes rows in the smartdial database that matches the contacts that have been deleted by
344 * @param deletedContactCursor Cursor containing rows of deleted contacts
381 * Removes potentially corrupted entries in the database. These contacts may be added before the
410 * Removes rows in the smartdial database that matches updated contacts.
413 * @param updatedContactCursor Cursor pointing to the list of recently updated contacts.
434 * Inserts updated contacts as rows to the smartdial table.
437 * @param updatedContactCursor Cursor pointing to the list of recently updated contacts
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 127 """Handles requests for fetching user's contacts.
146 # Any new contacts that were added are included in the
150 client_buffer = self.request.get('contacts')
154 # Add any contacts that have been updated on the server-side
161 # Return the list of updated contacts to the client
184 contacts = datastore.Contact.all()
185 if contacts:
190 for contact in contacts:
198 for contact in contacts:
199 # If our list of contacts we're returning already contains thi
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogDatabaseHelper.java 16 package com.android.providers.contacts;
34 import com.android.providers.contacts.util.PropertyUtils;
73 * Constants used in the contacts DB helper, which are needed for migration.
78 /** Table name used in the contacts DB.*/
81 /** Table name used in the contacts DB.*/
84 /** Prop name used in the contacts DB.*/
287 final SQLiteDatabase contacts = getContactsWritableDatabaseForMigration(); local
289 if (contacts == null) {
290 Log.w(TAG, "Contacts DB == null, skipping migration. (running tests?)");
303 contacts.beginTransaction()
    [all...]
DataRowHandlerForGroupMembership.java 16 package com.android.providers.contacts;
27 import com.android.providers.contacts.ContactsDatabaseHelper.Clauses;
28 import com.android.providers.contacts.ContactsDatabaseHelper.DataColumns;
29 import com.android.providers.contacts.ContactsDatabaseHelper.GroupsColumns;
30 import com.android.providers.contacts.ContactsDatabaseHelper.Projections;
31 import com.android.providers.contacts.ContactsDatabaseHelper.RawContactsColumns;
32 import com.android.providers.contacts.ContactsDatabaseHelper.Tables;
33 import com.android.providers.contacts.ContactsProvider2.GroupIdCacheEntry;
34 import com.android.providers.contacts.aggregation.AbstractContactAggregator;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 17 package com.android.providers.contacts;
30 import android.provider.ContactsContract.Contacts;
37 import com.android.providers.contacts.testutil.RawContactUtil;
46 * adb shell am instrument -e class com.android.providers.contacts.GroupsTest -w \
47 * com.android.providers.contacts.tests/android.test.InstrumentationTestRunner
81 // Create a handful of contacts
92 // Add phone numbers to specific contacts
99 // Add contacts to various mixture of groups. Grey will have all
100 // contacts, Red only with phone numbers, Green with no phones, and Blue
101 // with no contacts at all
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/blocking/
FilteredNumbersUtil.java 26 import android.provider.ContactsContract.Contacts;
69 /** Checks if there exists a contact with {@code Contacts.SEND_TO_VOICEMAIL} set to true. */
84 Contacts.CONTENT_URI,
113 * Blocks all the phone numbers of any contacts marked as SEND_TO_VOICEMAIL, then clears the
114 * SEND_TO_VOICEMAIL flag on those contacts.
130 // Get the phone number of contacts marked as SEND_TO_VOICEMAIL.
160 // Clear SEND_TO_VOICEMAIL on all contacts. The setting has been imported to Dialer.
162 newValues.put(Contacts.SEND_TO_VOICEMAIL, 0);
166 Contacts.CONTENT_URI,
330 static final String[] PROJECTION = {Contacts._ID}
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
DefaultContactBrowseListFragment.java 16 package com.android.contacts.list;
59 import com.android.contacts.ContactSaveService;
60 import com.android.contacts.Experiments;
61 import com.android.contacts.R;
62 import com.android.contacts.activities.ActionBarAdapter;
63 import com.android.contacts.activities.PeopleActivity;
64 import com.android.contacts.compat.CompatUtils;
65 import com.android.contacts.interactions.ContactDeletionInteraction;
66 import com.android.contacts.interactions.ContactMultiDeletionInteraction;
67 import com.android.contacts.interactions.ContactMultiDeletionInteraction.MultiContactDeleteListener
    [all...]
JoinContactListFragment.java 16 package com.android.contacts.list;
27 import android.provider.ContactsContract.Contacts;
34 import com.android.contacts.R;
35 import com.android.contacts.list.JoinContactLoader.JoinContactLoaderResult;
36 import com.android.contacts.logging.ListEvent;
58 ContentUris.withAppendedId(Contacts.CONTENT_URI, mTargetContactId),
59 new String[] { Contacts.DISPLAY_NAME }, null, null, null);
  /development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/
MainActivity.java 24 import com.example.android.system.runtimepermissions.contacts.ContactsFragment;
49 * Contacts permissions (({@link android.Manifest.permission#READ_CONTACTS} and ({@link
50 * android.Manifest.permission#WRITE_CONTACTS})) are requested when the 'Show and Add Contacts'
52 * clicked to display the first contact in the contacts database and to add a dummy contact
78 * For example the camera cannot be opened or an empty list of contacts is returned. No special
94 * Id to identify a contacts permission request.
99 * Permissions required to read and write contacts. Used by the {@link ContactsFragment}.
178 Log.i(TAG, "Show contacts button pressed. Checking permissions.");
185 // Contacts permissions have not been granted.
191 // Contact permissions have been granted. Show the contacts fragment
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 17 package com.android.contacts.editor;
29 import com.android.contacts.ContactPhotoManager;
30 import com.android.contacts.R;
31 import com.android.contacts.model.ValuesDelta;
32 import com.android.contacts.util.MaterialColorMapUtils.MaterialPalette;
33 import com.android.contacts.util.SchedulingUtils;
34 import com.android.contacts.widget.QuickContactImageView;
SelectAccountDialogFragment.java 17 package com.android.contacts.editor;
29 import com.android.contacts.R;
30 import com.android.contacts.model.AccountTypeManager;
31 import com.android.contacts.model.account.AccountInfo;
32 import com.android.contacts.model.account.AccountWithDataSet;
33 import com.android.contacts.model.account.AccountsLoader;
34 import com.android.contacts.util.AccountsListAdapter;
  /packages/apps/Contacts/src/com/android/contacts/util/
LocalizedNameResolver.java 17 package com.android.contacts.util;
31 import com.android.contacts.R;
32 import com.android.contacts.model.account.ExternalAccountType;
41 * "All Contacts" for certain account types, but e.g. "All Friends" or "All Connections" for others.
49 * Returns the name for All Contacts for the specified account type.
59 * Finds "All Contacts"-Name for the specified account type.
74 * Finds the meta-data XML containing the contacts configuration and
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ContactPickerData.java 36 * Class to access phone contacts.
85 LogUtil.w(LogUtil.BUGLE_TAG, "Loader created after unbinding the contacts list");
114 // The frequent contacts cursor to be used in the UI depends on results from both
115 // all contacts and frequent contacts loader, and we don't know which will finish
124 LogUtil.w(LogUtil.BUGLE_TAG, "Loader finished after unbinding the contacts list");
152 LogUtil.w(LogUtil.BUGLE_TAG, "Loader reset after unbinding the contacts list");
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SuggestionsProvider.java 42 * Columns over the contacts database that we return in the {@link ContactsCursor}.
57 * Minimum length of query before we start showing contacts suggestions.
113 * Utility class to return a cursor over the contacts database
121 * Searches over the contacts cursor with the specified query as the starting characters to
124 * @return a cursor over the contacts database with the contacts matching the query.
169 // Contacts database contains: test@tester.com, test@other.com
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 34 import android.provider.ContactsContract.Contacts;
96 Contacts._ID,
97 Contacts.LOOKUP_KEY,
98 Contacts.PHOTO_ID,
99 Contacts.DISPLAY_NAME,
100 Contacts.PHONETIC_NAME,
101 Contacts.STARRED,
102 Contacts.CONTACT_PRESENCE,
103 Contacts.CONTACT_STATUS,
104 Contacts.CONTACT_STATUS_TIMESTAMP
    [all...]
  /packages/providers/ContactsProvider/
AndroidManifest.xml 2 package="com.android.providers.contacts"
31 android:authorities="contacts;com.android.contacts"
46 android:pathPattern="/contacts/.*/photo"
76 android:authorities="com.android.contacts.metadata"
110 <action android:name="com.android.providers.contacts.DUMP_DATABASE"/>
116 android:authorities="com.android.contacts.dumpfile"
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_QuickContactsTest.java 17 package android.provider.cts.contacts;
27 import android.provider.Contacts;
42 final Uri FAKE_CONTACT_URI = ContentUris.withAppendedId(Contacts.CONTENT_URI, 0);
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SelectContactActivity.java 33 * taps on this sample's icon rather than any of the Direct Share contacts.
52 // Set up the list of contacts
61 return Contact.CONTACTS.length;
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SelectContactActivity.java 33 * taps on this sample's icon rather than any of the Direct Share contacts.
52 // Set up the list of contacts
61 return Contact.CONTACTS.length;
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 24 import android.provider.Contacts.People;
25 import android.provider.Contacts.People.Phones;
28 * An implementation of {@link ContactAccessor} that uses legacy Contacts API.
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/
contacts.html 19 <title>SampleSync: Contacts for '{{ username }}'</title>
23 <h1>SampleSync: Contacts for '{{ username }}'</h1>
35 {% for contact in contacts %}
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
SelectContactActivity.java 33 * taps on this sample's icon rather than any of the Direct Share contacts.
52 // Set up the list of contacts
61 return Contact.CONTACTS.length;
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 17 package com.android.contacts;
26 import com.android.contacts.model.Contact;
27 import com.android.contacts.model.ContactLoader;
  /packages/apps/Contacts/src/com/android/contacts/dialog/
ClearFrequentsDialog.java 17 package com.android.contacts.dialog;
31 import com.android.contacts.R;
32 import com.android.contacts.util.PermissionsUtil;

Completed in 602 milliseconds

<<11121314151617181920>>