/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_structures.py | 278 class Phone(Structure): 284 ("phone", Phone), 290 self.assertEqual(p.phone.areacode, "1234") 291 self.assertEqual(p.phone.number, "5678") 315 class Phone(Structure): 321 ("phone", Phone), 329 "(Phone) <type 'exceptions.TypeError'>: " 333 "(Phone) exceptions.TypeError: [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_structures.py | 278 class Phone(Structure): 284 ("phone", Phone), 290 self.assertEqual(p.phone.areacode, "1234") 291 self.assertEqual(p.phone.number, "5678") 315 class Phone(Structure): 321 ("phone", Phone), 329 "(Phone) <type 'exceptions.TypeError'>: " 333 "(Phone) exceptions.TypeError: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_structures.py | 278 class Phone(Structure): 284 ("phone", Phone), 290 self.assertEqual(p.phone.areacode, "1234") 291 self.assertEqual(p.phone.number, "5678") 315 class Phone(Structure): 321 ("phone", Phone), 329 "(Phone) <type 'exceptions.TypeError'>: " 333 "(Phone) exceptions.TypeError: [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
ImsPhoneCallTracker.java | 72 import com.android.internal.telephony.Phone; 228 public ImsPhoneCallTracker(ImsPhone phone) { 229 this.mPhone = phone; 273 Phone.TTY_MODE_OFF); 327 int oirMode = sp.getInt(Phone.CLIR_KEY, CommandsInterface.CLIR_DEFAULT); 479 // Phone number is invalid 570 throw new CallStateException("phone not ringing"); 580 throw new CallStateException("phone not ringing"); 775 log("Phone State:" + mState); 879 if (Phone.DEBUG_PHONE) log("(ringing) hangup incoming") [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
RetryManager.java | 172 private Phone mPhone; 218 * @param phone Phone object 221 public RetryManager(Phone phone, String apnType) { 222 mPhone = phone;
|
ServiceStateTracker.java | 315 Phone.NETWORK_SELECTION_KEY, ""); 317 Phone.NETWORK_SELECTION_NAME_KEY, ""); 319 Phone.NETWORK_SELECTION_SHORT_KEY, ""); 324 editor.putString(Phone.NETWORK_SELECTION_KEY + subId, 326 editor.putString(Phone.NETWORK_SELECTION_NAME_KEY + subId, 328 editor.putString(Phone.NETWORK_SELECTION_SHORT_KEY + subId, 330 editor.remove(Phone.NETWORK_SELECTION_KEY); 331 editor.remove(Phone.NETWORK_SELECTION_NAME_KEY); 332 editor.remove(Phone.NETWORK_SELECTION_SHORT_KEY); 431 loge("Ignoring intent " + intent + " received on CDMA phone"); [all...] |
ProxyController.java | 66 private Phone[] mPhones; 87 // record each phone's set radio capability status 109 public static ProxyController getInstance(Context context, Phone[] phone, 112 sProxyController = new ProxyController(context, phone, uiccController, ci, ps); 121 private ProxyController(Context context, Phone[] phone, UiccController uiccController, 126 mPhones = phone; 193 // if we can't find a phone for the given subId, it is disconnected. 199 * Get phone radio type and access technology [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaSMSDispatcher.java | 35 import com.android.internal.telephony.Phone; 52 public CdmaSMSDispatcher(Phone phone, SmsUsageMonitor usageMonitor, 54 super(phone, usageMonitor, imsSMSDispatcher);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
DefaultPhoneNotifierTest.java | 90 doReturn(Phone.DataActivityState.NONE).when(mPhone).getDataActivityState(); 96 doReturn(Phone.DataActivityState.DATAIN).when(mPhone).getDataActivityState();
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
EditorUiUtils.java | 33 import android.provider.ContactsContract.CommonDataKinds.Phone; 86 // Phone.CONTENT_ITEM_TYPE 191 case Phone.CONTENT_ITEM_TYPE:
|
AggregationSuggestionEngine.java | 31 import android.provider.ContactsContract.CommonDataKinds.Phone; 87 + " phone: " + phoneNumber + " email: " + emailAddress + " nickname: " 285 + Phone.CONTENT_ITEM_TYPE + "','" 453 if (Phone.CONTENT_ITEM_TYPE.equals(mimetype)) {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
GlobalSearchSupport.java | 28 import android.provider.ContactsContract.CommonDataKinds.Phone; 175 if (Organization.COMPANY != Data.DATA1 || Phone.NUMBER != Data.DATA1
|
/packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/ |
PhoneBook.java | 37 import android.provider.ContactsContract.CommonDataKinds.Phone; 103 * Loads contact details for a given phone number asynchronously. It may call listener's 154 /** Returns true if given phone number is a voice mail number. */ 213 mType = Phone.getTypeLabel(resources, type, label);
|
/packages/services/Telephony/src/com/android/phone/ |
ChangeIccPinScreen.java | 17 package com.android.phone; 39 import com.android.internal.telephony.Phone; 42 * "Change ICC PIN" UI for the Phone app. 64 private Phone mPhone;
|
EditPhoneNumberPreference.java | 17 package com.android.phone; 26 import android.provider.ContactsContract.CommonDataKinds.Phone; 127 mContactListIntent.setType(Phone.CONTENT_ITEM_TYPE); 129 //get the edit phone number default settings 324 // phone numbers and calling the close action listener. 363 * Phone number handling code 366 // return the phone number, after it has been stripped of all 371 /** The phone number including any formatting characters */ 376 //set the phone number value.
|
EmergencyCallbackModeExitDialog.java | 17 package com.android.phone; 42 import com.android.internal.telephony.Phone; 57 "com.android.phone.action.ACTION_SHOW_ECM_EXIT_DIALOG"; 75 private Phone mPhone = null; 82 // Check if phone is in Emergency Callback Mode. If not, exit. 85 Log.i(TAG, "ECMModeExitDialog launched - isInEcm: " + isInEcm + " phone:" + mPhone);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/ |
AttentionManagementVerifierActivity.java | 31 import android.provider.ContactsContract.CommonDataKinds.Phone; [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
ImsPhoneTest.java | 38 import com.android.internal.telephony.Phone; 125 replaceInstance(Phone.class, "mLooper", mPhone, mImsPhoneUT.getLooper()); 174 assertEquals(Phone.SuppService.HANGUP, 201 assertEquals(Phone.SuppService.SEPARATE, 240 assertEquals(Phone.SuppService.TRANSFER, 257 assertEquals(Phone.SuppService.UNKNOWN,
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
PhoneMock.java | 54 * A base implementation for the com.android.internal.telephony.Phone interface. 56 * Note that implementations of Phone.java are expected to be used 64 public class PhoneMock extends Phone { 220 public void migrateFrom(Phone from) { 870 public Phone getImsPhone() { 1028 public static void checkWfcWifiOnlyModeBeforeDial(Phone imsPhone, Context context) { 1056 public Phone getDefaultPhone() { [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ConfirmAddDetailActivity.java | 42 import android.provider.ContactsContract.CommonDataKinds.Phone; 87 * must have an extra with max 1 phone or email specified, using 88 * {@link android.provider.ContactsContract.Intents.Insert#PHONE} with type 137 private String mMimetype = Phone.CONTENT_ITEM_TYPE; 196 StructuredPostal.CONTENT_ITEM_TYPE, Phone.CONTENT_ITEM_TYPE }; 246 if (extras.containsKey(ContactsContract.Intents.Insert.PHONE)) { 247 mMimetype = Phone.CONTENT_ITEM_TYPE; 547 // As a special case, phone numbers 549 if (Phone.CONTENT_ITEM_TYPE.equals(mimeType)) { [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsActor.java | 57 import android.provider.ContactsContract.CommonDataKinds.Phone; 598 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 599 values.put(ContactsContract.CommonDataKinds.Phone.TYPE, 600 ContactsContract.CommonDataKinds.Phone.TYPE_HOME); 601 values.put(ContactsContract.CommonDataKinds.Phone.NUMBER, phoneNumber);
|
CallLogProviderTest.java | 34 import android.provider.ContactsContract.CommonDataKinds.Phone; 136 values.put(Calls.CACHED_NUMBER_TYPE, Phone.TYPE_CUSTOM); 180 ci.numberType = Phone.TYPE_CUSTOM;
|
/packages/services/Telephony/src/com/android/services/telephony/ |
TelephonyConnection.java | 43 import com.android.internal.telephony.Phone; 44 import com.android.phone.R; 329 * Handles the phone exiting ECM mode by updating the connection capabilities. During an 532 Phone phone = mOriginalConnection.getCall().getPhone(); local 533 Call ringingCall = phone.getRingingCall(); 546 phone.switchHoldingAndActive(); 645 // If the phone is in ECM mode, mark the call to indicate that the callback number should be 647 Phone phone = getPhone() local 837 Phone phone = getPhone(); local [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
AllIntentsActivity.java | 34 import android.provider.ContactsContract.CommonDataKinds.Phone; 143 new Intent(Intent.ACTION_PICK, Phone.CONTENT_URI)); 198 intent.setType(Phone.CONTENT_ITEM_TYPE); 230 intent.putExtra(Insert.PHONE, "5123456789"); 263 intent.putExtra(Insert.PHONE, "800"); 476 Toast.makeText(this, "Failed to find a contact with a phone number. Aborting.",
|
/packages/apps/Dialer/src/com/android/dialer/ |
CallDetailActivity.java | 25 import android.provider.ContactsContract.CommonDataKinds.Phone; 199 * Determines the location geocode text for a call, or the phone number type 203 * @return The phone number type or location. 207 return Phone.getTypeLabel(mResources, details.numberType, 272 mQuickContactBadge.setPrioritizedMimeType(Phone.CONTENT_ITEM_TYPE);
|