/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
D | GestureStrokeRecognitionParams.java | 59 public static final GestureStrokeRecognitionParams DEFAULT = field in GestureStrokeRecognitionParams 80 DEFAULT.mStaticTimeThresholdAfterFastTyping); in GestureStrokeRecognitionParams() 83 DEFAULT.mDetectFastMoveSpeedThreshold); in GestureStrokeRecognitionParams() 86 DEFAULT.mDynamicThresholdDecayDuration); in GestureStrokeRecognitionParams() 89 DEFAULT.mDynamicTimeThresholdFrom); in GestureStrokeRecognitionParams() 92 DEFAULT.mDynamicTimeThresholdTo); in GestureStrokeRecognitionParams() 95 DEFAULT.mDynamicDistanceThresholdFrom); in GestureStrokeRecognitionParams() 98 DEFAULT.mDynamicDistanceThresholdTo); in GestureStrokeRecognitionParams() 101 DEFAULT.mSamplingMinimumDistance); in GestureStrokeRecognitionParams() 104 DEFAULT.mRecognitionMinimumTime); in GestureStrokeRecognitionParams() [all …]
|
D | KeyboardCodesSet.java | 35 return DEFAULT[id]; in getCode() 58 private static final int[] DEFAULT = { field in KeyboardCodesSet
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/account/ |
D | AccountTypeTest.java | 38 final String DEFAULT = "ABC"; in testGetResourceText() local 41 assertEquals(DEFAULT, AccountType.getResourceText(c, null, -1, DEFAULT)); in testGetResourceText() 44 assertEquals(DEFAULT, AccountType.getResourceText(c, packageName, -1, DEFAULT)); in testGetResourceText() 49 AccountType.getResourceText(c, packageName, externalResID, DEFAULT)); in testGetResourceText() 54 AccountType.getResourceText(c, null, internalResId, DEFAULT)); in testGetResourceText()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/ |
D | AudioHelperTest.java | 34 private static final int DEFAULT = -100; field in AudioHelperTest 47 int volume = DEFAULT; in getMaxVolume_anyStreamType_getValue() 51 assertThat(volume).isNotEqualTo(DEFAULT); in getMaxVolume_anyStreamType_getValue() 57 int volume = DEFAULT; in getMinVolume_anyStreamType_getValue() 61 assertThat(volume).isNotEqualTo(DEFAULT); in getMinVolume_anyStreamType_getValue()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/gamedriver/ |
D | GameDriverAppPreferenceControllerTest.java | 57 private static final int DEFAULT = 0; field in GameDriverAppPreferenceControllerTest 180 assertThat(preference.getEntry()).isEqualTo(mValueList[DEFAULT]); in createPreference_configDefault_shouldSetDefaultAttributes() 181 assertThat(preference.getValue()).isEqualTo(mValueList[DEFAULT]); in createPreference_configDefault_shouldSetDefaultAttributes() 182 assertThat(preference.getSummary()).isEqualTo(mValueList[DEFAULT]); in createPreference_configDefault_shouldSetDefaultAttributes() 236 mController.onPreferenceChange(preference, mValueList[DEFAULT]); in onPreferenceChange_selectDefault_shouldUpdateAttributesAndSettingsGlobal() 238 assertThat(preference.getEntry()).isEqualTo(mValueList[DEFAULT]); in onPreferenceChange_selectDefault_shouldUpdateAttributesAndSettingsGlobal() 239 assertThat(preference.getValue()).isEqualTo(mValueList[DEFAULT]); in onPreferenceChange_selectDefault_shouldUpdateAttributesAndSettingsGlobal() 240 assertThat(preference.getSummary()).isEqualTo(mValueList[DEFAULT]); in onPreferenceChange_selectDefault_shouldUpdateAttributesAndSettingsGlobal()
|
/packages/services/Car/car-lib/src_feature_future/com/android/car/internal/ |
D | FeatureConfiguration.java | 25 public static final boolean DEFAULT = true; field in FeatureConfiguration 27 public static final boolean ENABLE_PRODUCT_CONFIGURATION_INFO = DEFAULT; 28 public static final boolean ENABLE_VEHICLE_MAP_SERVICE = DEFAULT;
|
/packages/apps/Dialer/java/com/android/dialer/voicemail/listui/ |
D | NewVoicemailViewHolder.java | 204 primaryTextView.setTypeface(Typeface.DEFAULT, Typeface.BOLD); in boldViewHolderIfUnread() 205 secondaryTextView.setTypeface(Typeface.DEFAULT, Typeface.BOLD); in boldViewHolderIfUnread() 206 transcriptionTextView.setTypeface(Typeface.DEFAULT, Typeface.BOLD); in boldViewHolderIfUnread() 295 primaryTextView.setTypeface(Typeface.DEFAULT, Typeface.NORMAL); in expandAndBindViewHolderAndMediaPlayerViewWithAdapterValues() 296 secondaryTextView.setTypeface(Typeface.DEFAULT, Typeface.NORMAL); in expandAndBindViewHolderAndMediaPlayerViewWithAdapterValues() 297 transcriptionTextView.setTypeface(Typeface.DEFAULT, Typeface.NORMAL); in expandAndBindViewHolderAndMediaPlayerViewWithAdapterValues()
|
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/ |
D | TelecomActivityViewModel.java | 67 @IntDef({DialerAppState.DEFAULT, DialerAppState.BLUETOOTH_ERROR, 71 int DEFAULT = 0; field 159 setValue(DialerAppState.DEFAULT); in DialerAppStateLiveData() 180 setValue(DialerAppState.DEFAULT); in updateDialerAppState()
|
/packages/apps/KeyChain/robotests/src/com/android/keychain/ |
D | AliasLoaderTest.java | 131 mRSACertOne = Base64.decode(SELF_SIGNED_RSA_CERT_1_B64, Base64.DEFAULT); in setUp() 132 mRSACertTwo = Base64.decode(SELF_SIGNED_RSA_CERT_2_B64, Base64.DEFAULT); in setUp() 133 mECCertOne = Base64.decode(SELF_SIGNED_EC_CERT_1_B64, Base64.DEFAULT); in setUp() 134 mECCertTwo = Base64.decode(SELF_SIGNED_EC_CERT_2_B64, Base64.DEFAULT); in setUp()
|
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/ |
D | KeyChainActivityTest.java | 136 mLeafRsaCertificate = Base64.decode(LEAF_SERVER_CERT_RSA, Base64.DEFAULT); in setUp() 137 mIntermediateRsaCertificate = Base64.decode(INTERMEDIATE_CA_CERT_RSA, Base64.DEFAULT); in setUp() 138 mRootRsaCertificate = Base64.decode(ROOT_CA_CERT_RSA, Base64.DEFAULT); in setUp()
|
/packages/services/Car/service/src/com/android/car/trust/ |
D | CarTrustedDeviceService.java | 262 byte[] encryptedKey = Base64.decode(values[0], Base64.DEFAULT); in getEncryptionKey() 263 byte[] ivSpec = Base64.decode(values[1], Base64.DEFAULT); in getEncryptionKey() 346 return new StringBuffer(Base64.encodeToString(cipher.doFinal(value), Base64.DEFAULT)) in encryptWithKeyStore() 348 .append(Base64.encodeToString(cipher.getIV(), Base64.DEFAULT)) in encryptWithKeyStore()
|
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/storage/ |
D | ConnectedDeviceStorage.java | 133 byte[] encryptedKey = Base64.decode(values[0], Base64.DEFAULT); in getEncryptionKey() 134 byte[] ivSpec = Base64.decode(values[1], Base64.DEFAULT); in getEncryptionKey() 175 return Base64.encodeToString(cipher.doFinal(value), Base64.DEFAULT) in encryptWithKeyStore() 177 + Base64.encodeToString(cipher.getIV(), Base64.DEFAULT); in encryptWithKeyStore()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/ |
D | StateView.java | 38 public static int DEFAULT = 0; field in StateView 47 private int mType = DEFAULT; 72 this(context, DEFAULT); in StateView() 153 if (mType == DEFAULT || mType == END) { in onDraw()
|
/packages/apps/Dialer/java/com/android/dialer/notification/ |
D | NotificationChannelId.java | 29 NotificationChannelId.DEFAULT, 40 String DEFAULT = "phone_default"; field
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/biometrics/face/ |
D | FaceSettingsAppPreferenceController.java | 34 private static final int DEFAULT = ON; // face unlock is enabled for BiometricPrompt by default field in FaceSettingsAppPreferenceController 50 mContext.getContentResolver(), FACE_UNLOCK_APP_ENABLED, DEFAULT, getUserId()) == ON; in isChecked()
|
D | FaceSettingsConfirmPreferenceController.java | 35 private static final int DEFAULT = OFF; field in FaceSettingsConfirmPreferenceController 49 FACE_UNLOCK_ALWAYS_REQUIRE_CONFIRMATION, DEFAULT, getUserId()) == ON; in isChecked()
|
D | FaceSettingsKeyguardPreferenceController.java | 40 private static final int DEFAULT = ON; // face unlock is enabled on keyguard by default field in FaceSettingsKeyguardPreferenceController 58 FACE_UNLOCK_KEYGUARD_ENABLED, DEFAULT, getUserId()) == ON; in isChecked()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | ContactUtil.java | 235 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) in getPhones() 297 return filterPhonesInternal(context, Phone.CONTENT_FILTER_URI, query, Directory.DEFAULT); in filterPhones() 361 return filterEmailsInternal(context, Email.CONTENT_FILTER_URI, query, Directory.DEFAULT); in filterEmails() 400 ContactsContract.DIRECTORY_PARAM_KEY, String.valueOf(Directory.DEFAULT)) in lookupEmail()
|
/packages/apps/Settings/src/com/android/settings/biometrics/face/ |
D | FaceSettingsConfirmPreferenceController.java | 39 private static final int DEFAULT = OFF; field in FaceSettingsConfirmPreferenceController 56 FACE_UNLOCK_ALWAYS_REQUIRE_CONFIRMATION, DEFAULT, getUserId()) == ON; in isChecked()
|
D | FaceSettingsKeyguardPreferenceController.java | 39 private static final int DEFAULT = ON; // face unlock is enabled on keyguard by default field in FaceSettingsKeyguardPreferenceController 60 FACE_UNLOCK_KEYGUARD_ENABLED, DEFAULT, getUserId()) == ON; in isChecked()
|
D | FaceSettingsAppPreferenceController.java | 39 private static final int DEFAULT = ON; // face unlock is enabled for BiometricPrompt by default field in FaceSettingsAppPreferenceController 58 mContext.getContentResolver(), FACE_UNLOCK_APP_ENABLED, DEFAULT, getUserId()) == ON; in isChecked()
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
D | DefaultContactListAdapter.java | 126 if (directoryId != Directory.DEFAULT && directoryId != Directory.LOCAL_INVISIBLE) { in appendSearchParameters() 148 if (directoryId == Directory.DEFAULT && isSectionHeaderDisplayEnabled()) { in configureUri() 172 if (directoryId != Directory.DEFAULT) { in configureSelection()
|
D | ContactEntryListAdapter.java | 149 partition.setDirectoryId(Directory.DEFAULT); in createDefaultDirectoryPartition() 171 && ((DirectoryPartition) partition).getDirectoryId() == Directory.DEFAULT) { in removeDirectoriesAfterDefault() 593 ((DirectoryPartition)partition).getDirectoryId() == Directory.DEFAULT) { in configureDefaultPartition() 763 if (uri != null && directoryId != Directory.DEFAULT) { in getContactUri()
|
/packages/apps/TV/tests/robotests/src/com/android/tv/data/epg/ |
D | EpgInputAllowListTest.java | 50 mLegacyFlags = DefaultLegacyFlags.DEFAULT; in setup() 116 new EpgInputAllowList(new DefaultCloudEpgFlags(), DefaultLegacyFlags.DEFAULT); in isPackageAllowed_tunerInput()
|
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/ |
D | CellBroadcastChannelManagerTest.java | 86 assertEquals(AlertType.DEFAULT, list.get(3).mAlertType); in testGetCellBroadcastChannelRanges() 91 assertEquals(AlertType.DEFAULT, list.get(4).mAlertType); in testGetCellBroadcastChannelRanges()
|