/packages/services/Telephony/utils/satellite/tools/src/test/java/com/android/telephony/tools/sats2/ |
D | CreateSatS2FileTest.java | 233 Integer entryValue = suffixTableRange.getEntryValue(); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() local 234 assertNotNull(entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 235 assertEquals(expectedEntryValue, (int) entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 241 entryValue = suffixTableRange.getEntryValue(); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 242 assertNotNull(entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 243 assertEquals(expectedEntryValue, (int) entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 249 entryValue = suffixTableRange.getEntryValue(); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 250 assertNotNull(entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 251 assertEquals(expectedEntryValue, (int) entryValue); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() 258 entryValue = suffixTableRange.getEntryValue(); in testCreateSatS2FileWithValidCellIdAndValidEntryValue() [all …]
|
/packages/apps/Settings/src/com/android/settings/ |
D | RestrictedListPreference.java | 151 private RestrictedItem getRestrictedItemForEntryValue(CharSequence entryValue) { in getRestrictedItemForEntryValue() argument 152 if (entryValue == null) { in getRestrictedItemForEntryValue() 156 if (entryValue.equals(item.entryValue)) { in getRestrictedItemForEntryValue() 243 String entryValue = preference.getEntryValues()[which].toString(); in getOnItemClickListener() local 244 RestrictedItem item = preference.getRestrictedItemForEntryValue(entryValue); in getOnItemClickListener() 288 public final CharSequence entryValue; 291 public RestrictedItem(CharSequence entry, CharSequence entryValue, 294 this.entryValue = entryValue;
|
/packages/services/Telephony/utils/satellite/tools/src/main/java/com/android/telephony/tools/sats2/ |
D | SatS2FileCreator.java | 81 x.entryValue)) in create() 238 rangeEntryValue = currentRange.entryValue; in createSatS2Ranges() 240 || currentRange.entryValue != rangeEntryValue) { in createSatS2Ranges() 245 rangeEntryValue = currentRange.entryValue; in createSatS2Ranges() 261 private static SatS2Range createS2Range(S2CellId s2CellId, int s2Level, int entryValue) { in createS2Range() argument 274 return new SatS2Range(firstS2CellRangeStart, firstS2CellRangeEnd, entryValue); in createS2Range() 289 public final int entryValue; field in SatS2FileCreator.SatS2Range 297 SatS2Range(S2CellId rangeStart, S2CellId rangeEnd, int entryValue) { in SatS2Range() argument 298 this.entryValue = entryValue; in SatS2Range()
|
/packages/services/Telephony/utils/satellite/s2storage/src/readonly/java/com/android/telephony/sats2range/read/ |
D | SuffixTableRange.java | 34 public SuffixTableRange(long startCellId, long endCellId, int entryValue) { in SuffixTableRange() argument 36 mEntryValue = entryValue; in SuffixTableRange() 54 int entryValue = ((SuffixTableRange) o).mEntryValue; in equals() local 55 return mEntryValue == entryValue; in equals()
|
D | PopulatedSuffixTableBlock.java | 203 int entryValue = getEntryValue(); in getSuffixTableRange() local 204 mSuffixTableRange = new SuffixTableRange(startCellId, endCellId, entryValue); in getSuffixTableRange()
|
/packages/services/Telephony/utils/satellite/s2storage/src/write/java/com/android/telephony/sats2range/write/ |
D | SatS2RangeFileWriter.java | 96 int entryValue = currentRange.getEntryValue(); in collectSamePrefixRanges() local 128 entryValue); in collectSamePrefixRanges() 139 newEndCellId, entryValue); in collectSamePrefixRanges() 149 endCellId, entryValue); in collectSamePrefixRanges() 236 int entryValue = currentRange.getEntryValue(); in convertSamePrefixRangesToSuffixTableRanges() local 246 new SuffixTableRange(startCellId, newEndCellId, entryValue); in convertSamePrefixRangesToSuffixTableRanges() 252 new SuffixTableRange(startCellId, endCellId, entryValue); in convertSamePrefixRangesToSuffixTableRanges()
|
/packages/apps/Settings/src/com/android/settings/development/bluetooth/ |
D | BluetoothCodecListPreferenceController.java | 192 boolean writeConfigurationValues(String entryValue) { in writeConfigurationValues() argument 193 long codecIdValue = getCodecIdFromEntryValue(entryValue); in writeConfigurationValues() 266 private long getCodecIdFromEntryValue(String entryValue) { in getCodecIdFromEntryValue() argument 268 if (entryValue.isEmpty()) { in getCodecIdFromEntryValue() 271 return Long.valueOf(entryValue); in getCodecIdFromEntryValue()
|
D | BluetoothStackLogPreferenceController.java | 198 String entryValue = mListEntries[index]; in setBluetoothLogLevelIndex() local 207 preference.setSummary(entryValue); in setBluetoothLogLevelIndex() 211 + entryValue + "'"); in setBluetoothLogLevelIndex()
|
/packages/apps/Car/Settings/src/com/android/car/settings/datausage/ |
D | DataUsageCycleBasePreferenceController.java | 128 CharSequence entryValue = String.valueOf(i); in updateCycle() local 130 entryValues.add(entryValue); in updateCycle() 131 mDataUsages.put(entryValue, networkCycleData); in updateCycle()
|
/packages/services/Telephony/tests/src/com/android/phone/satellite/accesscontrol/ |
D | S2RangeSatelliteOnDeviceAccessControllerTest.java | 94 private void testSatelliteAccessControl(boolean isAllowedList, @Nullable Integer entryValue) in testSatelliteAccessControl() argument 98 if (!isAllowedList && entryValue != null) { in testSatelliteAccessControl() 106 if (entryValue == null) { in testSatelliteAccessControl() 120 if (entryValue == null) { in testSatelliteAccessControl()
|
/packages/apps/Car/Settings/src/com/android/car/settings/sound/ |
D | AudioRouteSelectorController.java | 102 String entryValue = mAudioRoutesManager.getActiveDeviceAddress(); in updatePreferenceOptions() local 105 getPreference().setValue(entryValue); in updatePreferenceOptions()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessibility/ |
D | AccessibilityTimeoutFragment.java | 124 private void logNewA11yTimeoutSelection(String entryValue) { in logNewA11yTimeoutSelection() argument 135 if (entryValue.equals(entryValues[i])) { in logNewA11yTimeoutSelection()
|
D | AccessibilityDelayBeforeRepeatFragment.java | 120 private void logNewDelayBeforeRepeatTimeoutSelection(int entryValue) { in logNewDelayBeforeRepeatTimeoutSelection() argument 129 if (entryValue == entryValues[i]) { in logNewDelayBeforeRepeatTimeoutSelection()
|
D | AccessibilityRepeatRateFragment.java | 115 private void logNewRepeatRateTimeoutSelection(int entryValue) { in logNewRepeatRateTimeoutSelection() argument 124 if (entryValue == entryValues[i]) { in logNewRepeatRateTimeoutSelection()
|
/packages/apps/Settings/src/com/android/settings/notification/app/ |
D | VisibilityPreferenceController.java | 141 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 147 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
|
/packages/apps/Settings/src/com/android/settings/notification/ |
D | ShowOnLockScreenNotificationPreferenceController.java | 139 CharSequence entry, CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 145 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled()
|
D | LockScreenNotificationPreferenceController.java | 265 CharSequence entryValue, int keyguardNotificationFeatures) { in setRestrictedIfNotificationFeaturesDisabled() argument 271 new RestrictedListPreference.RestrictedItem(entry, entryValue, admin); in setRestrictedIfNotificationFeaturesDisabled() 281 entry, entryValue, profileAdmin); in setRestrictedIfNotificationFeaturesDisabled()
|
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/storage/table/packed/read/ |
D | PackedTableReader.java | 223 long entryValue = getLongValueFromEntryBytes(entryBytes); in binarySearch() local 224 int compareResult = entryMatcher.compare(entryKey, entryValue); in binarySearch()
|