/packages/services/Car/tools/emulator/ |
D | obd2_to_diagjson.py | 88 return json.dumps(self.store) 92 self.store = OrderedStore() 95 self.store.timestamp = timestamp 99 return self.store.timestamp 102 self.store.type = type 106 return self.store.type 110 self.store.stringValue = string 114 return self.store.get('stringValue') 117 if 'intValues' not in self.store: 118 self.store.intValues = [] [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/ |
D | ImapFolder.java | 16 package com.android.voicemail.impl.mail.store; 38 import com.android.voicemail.impl.mail.store.ImapStore.ImapException; 39 import com.android.voicemail.impl.mail.store.ImapStore.ImapMessage; 40 import com.android.voicemail.impl.mail.store.imap.ImapConstants; 41 import com.android.voicemail.impl.mail.store.imap.ImapElement; 42 import com.android.voicemail.impl.mail.store.imap.ImapList; 43 import com.android.voicemail.impl.mail.store.imap.ImapResponse; 44 import com.android.voicemail.impl.mail.store.imap.ImapString; 62 private final ImapStore store; field in ImapFolder 74 public ImapFolder(ImapStore store, String name) { in ImapFolder() argument [all …]
|
D | ImapConnection.java | 16 package com.android.voicemail.impl.mail.store; 26 import com.android.voicemail.impl.mail.store.ImapStore.ImapException; 27 import com.android.voicemail.impl.mail.store.imap.DigestMd5Utils; 28 import com.android.voicemail.impl.mail.store.imap.ImapConstants; 29 import com.android.voicemail.impl.mail.store.imap.ImapResponse; 30 import com.android.voicemail.impl.mail.store.imap.ImapResponseParser; 31 import com.android.voicemail.impl.mail.store.imap.ImapUtility; 60 ImapConnection(ImapStore store) { in ImapConnection() argument 61 setStore(store); in ImapConnection() 64 void setStore(ImapStore store) { in setStore() argument [all …]
|
/packages/apps/Dialer/java/com/android/voicemail/impl/imap/ |
D | ImapHelper.java | 46 import com.android.voicemail.impl.mail.store.ImapConnection; 47 import com.android.voicemail.impl.mail.store.ImapFolder; 48 import com.android.voicemail.impl.mail.store.ImapFolder.Quota; 49 import com.android.voicemail.impl.mail.store.ImapStore; 50 import com.android.voicemail.impl.mail.store.imap.ImapConstants; 51 import com.android.voicemail.impl.mail.store.imap.ImapResponse;
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/development/ |
D | BluetoothAudioQualityPreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioQualityPreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioQualityPreferenceController()
|
D | BluetoothAudioChannelModePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioChannelModePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioChannelModePreferenceController()
|
D | BluetoothAudioBitsPerSamplePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioBitsPerSamplePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioBitsPerSamplePreferenceController()
|
D | BluetoothAudioSampleRatePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioSampleRatePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioSampleRatePreferenceController()
|
D | BluetoothAudioCodecPreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioCodecPreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioCodecPreferenceController()
|
D | AbstractBluetoothA2dpPreferenceController.java | 52 BluetoothA2dpConfigStore store) { in AbstractBluetoothA2dpPreferenceController() argument 55 mBluetoothA2dpConfigStore = store; in AbstractBluetoothA2dpPreferenceController()
|
/packages/apps/Settings/src/com/android/settings/development/ |
D | BluetoothAudioQualityPreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioQualityPreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioQualityPreferenceController()
|
D | BluetoothAudioChannelModePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioChannelModePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioChannelModePreferenceController()
|
D | BluetoothAudioBitsPerSamplePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioBitsPerSamplePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioBitsPerSamplePreferenceController()
|
D | BluetoothAudioSampleRatePreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioSampleRatePreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioSampleRatePreferenceController()
|
D | BluetoothAudioCodecPreferenceController.java | 33 BluetoothA2dpConfigStore store) { in BluetoothAudioCodecPreferenceController() argument 34 super(context, lifecycle, store); in BluetoothAudioCodecPreferenceController()
|
D | AbstractBluetoothA2dpPreferenceController.java | 52 BluetoothA2dpConfigStore store) { in AbstractBluetoothA2dpPreferenceController() argument 55 mBluetoothA2dpConfigStore = store; in AbstractBluetoothA2dpPreferenceController()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/ |
D | ComponentKeyMapper.java | 58 public ItemInfoWithIcon getApp(AllAppsStore store) { in getApp() argument 59 AppInfo item = store.getApp(componentKey); in getApp()
|
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/ |
D | ImapConstants.java | 17 package com.android.voicemail.impl.mail.store.imap; 19 import com.android.voicemail.impl.mail.store.ImapStore;
|
D | DigestMd5Utils.java | 17 package com.android.voicemail.impl.mail.store.imap; 28 import com.android.voicemail.impl.mail.store.ImapStore;
|
D | ImapElement.java | 17 package com.android.voicemail.impl.mail.store.imap;
|
D | ImapSimpleString.java | 17 package com.android.voicemail.impl.mail.store.imap;
|
D | ImapMemoryLiteral.java | 17 package com.android.voicemail.impl.mail.store.imap;
|
D | ImapResponse.java | 17 package com.android.voicemail.impl.mail.store.imap;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/development/ |
D | AbstractBluetoothA2dpPreferenceControllerTest.java | 124 Lifecycle lifecycle, BluetoothA2dpConfigStore store) { in AbstractBluetoothA2dpPreferenceControllerImpl() argument 125 super(context, lifecycle, store); in AbstractBluetoothA2dpPreferenceControllerImpl()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
D | CachedLater.java | 54 protected void store(A value) { in store() method in CachedLater
|