HomeSort by relevance Sort by last modified time
    Searched refs:Phone (Results 326 - 350 of 392) sorted by null

<<111213141516

  /packages/apps/Contacts/src/com/android/contacts/editor/
TextFieldsEditorView.java 314 if (ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE.equals(kind.mimeType)) {
364 if (!ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE.equals(
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactEntryListAdapter.java 25 import android.provider.ContactsContract.CommonDataKinds.Phone;
48 * Common base class for various contact-related lists, e.g. contact list, phone number list
661 // for eg number of unique contacts for a phone list.
719 // that only Dialer will use this QuickContact badge. This means prioritizing the phone
721 quickContact.setPrioritizedMimeType(Phone.CONTENT_ITEM_TYPE);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactEntryListAdapter.java 25 import android.provider.ContactsContract.CommonDataKinds.Phone;
49 * Common base class for various contact-related lists, e.g. contact list, phone number list etc.
704 // that only Dialer will use this QuickContact badge. This means prioritizing the phone
706 quickContact.setPrioritizedMimeType(Phone.CONTENT_ITEM_TYPE);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
ParticipantRefresh.java 24 import android.provider.ContactsContract.CommonDataKinds.Phone;
143 Phone.CONTENT_URI, true, this);
443 // Refresh the phone number based on information from telephony
601 // Self participants can refresh their normalized phone numbers
  /packages/apps/Settings/src/com/android/settings/
IccLockSettings.java 47 import com.android.internal.telephony.Phone;
106 private Phone mPhone;
  /packages/services/Telephony/src/com/android/phone/
NetworkSelectListPreference.java 17 package com.android.phone;
52 import com.android.internal.telephony.Phone;
61 * "Networks" preference in "Mobile network" settings UI for the Phone app.
167 // via Phone.getAvailableNetworks(). This behavior might also result in
196 logd("Modem does not support: try to scan network again via Phone");
217 logd("CellInfo is invalid to display. Start a new scan via Phone. ");
494 Phone phone = PhoneFactory.getPhone(mPhoneId); local
495 if (phone != null) {
498 phone.selectNetworkManually(operatorInfo, true, msg)
    [all...]
  /external/autotest/client/site_tests/network_DestinationVerification/
network_DestinationVerification.py 70 "ssid": "Greg's Phone",
96 "ssid":"Greg's Phone",
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ImsSmsDispatcher.java 199 public ImsSmsDispatcher(Phone phone, SmsDispatchersController smsDispatchersController) {
200 super(phone, smsDispatchersController);
SubscriptionInfoUpdater.java 109 private static Phone[] mPhone;
124 Looper looper, Context context, Phone[] phone, CommandsInterface[] ci) {
129 mPhone = phone;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsExternalCallTracker.java 25 import com.android.internal.telephony.Phone;
151 public ImsExternalCallTracker(ImsPhone phone, ImsPullCall callPuller,
154 mPhone = phone;
160 public ImsExternalCallTracker(ImsPhone phone) {
161 mPhone = phone;
198 * Handles changes to the phone state as notified by the {@link ImsPhoneCallTracker}.
200 * @param oldState The previous phone state.
201 * @param newState The new phone state.
311 state.getAddress() /* phone number */,
432 * {@link Phone#notifyForVideoCapabilityChanged(boolean)}
    [all...]
ImsPhoneCallTracker.java 19 import static com.android.internal.telephony.Phone.CS_FALLBACK;
91 import com.android.internal.telephony.Phone;
225 loge("onVoiceMessageCountUpdate: null phone");
341 * Listeners to changes in the phone state. Intended for use by other interested IMS components
    [all...]
ImsPhoneMmiCode.java 52 import com.android.internal.telephony.Phone;
240 static ImsPhoneMmiCode newFromDialString(String dialString, ImsPhone phone) {
241 return newFromDialString(dialString, phone, null);
245 ImsPhone phone, ResultReceiver wrappedCallback) {
249 if (phone.getDefaultPhone().getServiceState().getVoiceRoaming()
250 && phone.getDefaultPhone().supportsConversionOfCdmaCallerIdMmiCodesWhileRoaming()) {
261 ret = new ImsPhoneMmiCode(phone);
279 ret = new ImsPhoneMmiCode(phone);
287 ret = new ImsPhoneMmiCode(phone);
289 } else if (isTwoDigitShortCode(phone.getContext(), dialString))
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountType.java 24 import android.provider.ContactsContract.CommonDataKinds.Phone;
351 * such as {@link Phone#TYPE_WORK}. Includes constraints on total number of
436 * {@link Phone#NUMBER}. Includes flags to apply to an {@link EditText}, and
  /frameworks/base/telecomm/java/android/telecom/
Call.java 43 * Represents an ongoing phone call that the in-call app should present to the user.
122 * extras. Used to pass the phone accounts to display on the front end to the user in order to
123 * select phone accounts to (for example) place a call.
397 * Consider, for example, a scenario where a user has two phones with the same phone number.
612 * @return The handle (e.g., phone number) to which the {@code Call} is currently
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnSetting.java 30 import com.android.internal.telephony.Phone;
565 * @param phone The phone object
568 public static boolean isMeteredApnType(String type, Phone phone) {
569 if (phone == null) {
573 boolean isRoaming = phone.getServiceState().getDataRoaming();
574 boolean isIwlan = phone.getServiceState().getRilDataRadioTechnology()
576 int subId = phone.getSubId();
595 phone.getContext().getSystemService(Context.CARRIER_CONFIG_SERVICE)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/database/
SimContactDaoTests.java 45 import android.provider.ContactsContract.CommonDataKinds.Phone;
234 // Each contact has one data row for each of name, phone and email
544 for (String phone : phoneNumbers) {
545 ops.add(insertIntoData(phone, Phone.CONTENT_ITEM_TYPE, Phone.TYPE_MOBILE, index));
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
ContactInfoCache.java 29 import android.provider.ContactsContract.CommonDataKinds.Phone;
107 Phone.CONTENT_ITEM_TYPE,
108 new JSONObject().put(Phone.NUMBER, contactInfo.number));
199 // (Typically, we promote the phone number up to the "name" slot
208 // This case should never happen since the network should never send a phone #
241 // in the "name" slot, and the phone number in the "number" slot.
361 // We need to force a new query if phone number has changed.
543 // Set contact to exist to avoid phone number service lookup.
725 /** The phone number without any changes to display to the user (ex: cnap...) */
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailSettingsActivity.java 17 package com.android.phone.settings;
47 import com.android.internal.telephony.Phone;
50 import com.android.phone.EditPhoneNumberPreference;
51 import com.android.phone.PhoneGlobals;
52 import com.android.phone.PhoneUtils;
53 import com.android.phone.R;
54 import com.android.phone.SubscriptionInfoHelper;
75 "com.android.phone.CallFeaturesSetting.ADD_VOICEMAIL";
82 "com.android.phone.CallFeaturesSetting.CONFIGURE_VOICEMAIL";
85 public static final String VM_NUMBER_EXTRA = "com.android.phone.VoicemailNumber"
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 51 import com.android.internal.telephony.Phone;
905 ret[1] = Phone.BM_US_BAND;
906 ret[2] = Phone.BM_JPN_BAND;
907 ret[3] = Phone.BM_AUS_BAND;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 81 import android.provider.ContactsContract.CommonDataKinds.Phone;
270 /** Maximum length of a phone number that can be inserted into the database */
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogAdapter.java 32 import android.provider.ContactsContract.CommonDataKinds.Phone;
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 27 import android.provider.ContactsContract.CommonDataKinds.Phone;
64 * points. E.g., two John Doe contacts with same phone numbers are presumed to be the same
308 * Two raw contacts are considered connected if they share at least one email address, phone
316 // identity/email/phone matching for all the raw contacts of [contactId] and the give
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SubscriptionControllerTest.java 167 mSubscriptionControllerUT.getInstance().updatePhonesAvailability(new Phone[]{mPhone});
  /packages/apps/EmergencyInfo/tests/unit/src/com/android/emergency/edit/
EditInfoActivityTest.java 236 intentFilter.addDataType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMembersFragment.java 304 * Helper class for cp2 query used to look up all contact's emails and phone numbers.
313 + ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE + "'";
325 ContactsContract.CommonDataKinds.Phone._ID,
339 * Helper class for managing data related to contacts and emails/phone numbers.
373 // Get emails or phone numbers
    [all...]

Completed in 5417 milliseconds

<<111213141516