/packages/apps/Car/Radio/src/com/android/car/radio/ |
D | RadioController.java | 131 void onRadioStationChanged(RadioStation station); in onRadioStationChanged() argument 219 RadioStation station = mRadioManager.getCurrentRadioStation(); in updateRadioDisplay() local 222 Log.d(TAG, "updateRadioDisplay(); current station: " + station); in updateRadioDisplay() 234 mCurrentRadioBand = station.getRadioBand(); in updateRadioDisplay() 238 setRadioChannel(station.getChannelNumber()); in updateRadioDisplay() 243 mCallback.onRadioMetadataChanged(station.getRds()); in updateRadioDisplay() 246 mStationChangeListener.onRadioStationChanged(station); in updateRadioDisplay() 353 RadioStation station = new RadioStation(mCurrentChannelNumber, 0 /* subchannel */, in maybeTuneToStoredRadioChannel() local 355 tuneToRadioChannel(station); in maybeTuneToStoredRadioChannel() 650 for (RadioStation station : preScannedStations) { in onLoadFinished() [all …]
|
D | RadioBackgroundScanner.java | 112 private void addOrReplaceInScannedStations(RadioStation station) { in addOrReplaceInScannedStations() argument 113 int index = mScannedStations.indexOf(station); in addOrReplaceInScannedStations() 116 Log.v(TAG, "Storing pre-scanned station: " + station); in addOrReplaceInScannedStations() 120 mScannedStations.add(station); in addOrReplaceInScannedStations() 122 mScannedStations.set(index, station); in addOrReplaceInScannedStations() 154 for (RadioStation station : mScannedStations) { in onProgramInfoChanged() 155 Log.v(TAG, station.toString()); in onProgramInfoChanged() 176 RadioStation station = new RadioStation(mCurrentChannel, 0 /* subChannelNumber */, in onProgramInfoChanged() local 178 addOrReplaceInScannedStations(station); in onProgramInfoChanged() 194 RadioStation station = new RadioStation(mCurrentChannel, 0 /* subChannelNumber */, in onMetadataChanged() local [all …]
|
D | PrescannedRadioStationAdapter.java | 120 RadioStation station = mStations.get(i); in getIndexOrInsertForStation() local 122 if (channelNumber >= station.getChannelNumber()) { in getIndexOrInsertForStation() 127 if (station.getChannelNumber() == channelNumber && station.getRadioBand() == band) { in getIndexOrInsertForStation() 163 RadioStation station = mStations.get(position); in bindView() local 166 Log.d(TAG, "binding station: " + station); in bindView() 169 int radioBand = station.getRadioBand(); in bindView() 172 station.getChannelNumber())); in bindView()
|
D | PresetsAdapter.java | 77 public void setActiveRadioStation(RadioStation station) { in setActiveRadioStation() argument 78 mActiveRadioStation = station; in setActiveRadioStation() 92 RadioStation station = mPresets.get(position); in onBindViewHolder() local 93 boolean isActiveStation = station.equals(mActiveRadioStation); in onBindViewHolder() 95 holder.bindPreset(station, isActiveStation, getItemCount()); in onBindViewHolder()
|
D | RadioDatabase.java | 338 for (RadioStation station : stations) { in insertPreScannedStations() 341 station.getChannelNumber()); in insertPreScannedStations() 343 station.getSubChannelNumber()); in insertPreScannedStations() 344 values.put(PreScannedStationsTable.Columns.BAND, station.getRadioBand()); in insertPreScannedStations() 346 if (station.getRds() != null) { in insertPreScannedStations() 348 station.getRds().getProgramService()); in insertPreScannedStations()
|
D | RadioPresetsFragment.java | 239 public void onPresetItemClicked(RadioStation station) { in onPresetItemClicked() argument 240 mRadioController.tuneToRadioChannel(station); in onPresetItemClicked() 244 public void onRadioStationChanged(RadioStation station) { in onRadioStationChanged() argument 246 Log.d(TAG, "onRadioStationChanged(): " + station); in onRadioStationChanged() 249 mPresetsAdapter.setActiveRadioStation(station); in onRadioStationChanged()
|
D | ManualTunerFragment.java | 51 void onStationSelected(@Nullable RadioStation station); in onStationSelected() argument 82 public void onDone(RadioStation station) { in onDone() argument 84 mListener.onStationSelected(station); in onDone()
|
D | CarRadioActivity.java | 122 public void onStationSelected(RadioStation station) { in onStationSelected() argument 128 if (station != null) { in onStationSelected() 129 mRadioController.tuneToRadioChannel(station); in onStationSelected()
|
D | RadioStorage.java | 182 public boolean isPreset(RadioStation station) { in isPreset() argument 183 if (station == null) { in isPreset() 190 if (preset.equals(station)) { in isPreset()
|
D | ManualTunerController.java | 114 void onDone(RadioStation station); in onDone() argument 492 RadioStation station = new RadioStation(channelFrequency, 0 /* subChannelNumber */, 495 mManualTunerClickListener.onDone(station);
|
D | RadioService.java | 762 RadioStation station = createCurrentRadioStation(); in onProgramInfoChanged() local 766 callback.onRadioStationChanged(station); in onProgramInfoChanged()
|
/packages/apps/Car/Radio/src/com/android/car/radio/demo/ |
D | RadioDemo.java | 83 public void tune(RadioStation station) throws RemoteException { in createDemoManager() 84 if (station == null || !requestAudioFocus()) { in createDemoManager() 88 if (station.getRadioBand() != mCurrentRadioBand) { in createDemoManager() 89 switchRadioBand(station.getRadioBand()); in createDemoManager() 97 if (storedStation.equals(station)) { in createDemoManager() 111 if (station.getChannelNumber() >= storedStation.getChannelNumber()) { in createDemoManager() 117 RadioStation stationToInsert = new RadioStation(station.getChannelNumber(), in createDemoManager() 118 0 /* subChannel */, station.getRadioBand(), null /* rds */); in createDemoManager() 124 notifyCallbacks(station); in createDemoManager() argument 377 private void notifyCallbacks(RadioStation station) { [all …]
|
/packages/apps/Car/Stream/src/com/android/car/stream/radio/ |
D | RadioStreamProducer.java | 195 public void onRadioStationChanged(RadioStation station) { 197 Log.d(TAG, "onRadioStationChanged: " + station); 200 mCurrentBand = station.getRadioBand(); 201 mCurrentChannelNumber = station.getChannelNumber(); 209 postCard(mConverter.convert(station, isPlaying)); 236 RadioStation station = new RadioStation(mCurrentChannelNumber, 240 postCard(mConverter.convert(station, isPlaying)); 252 RadioStation station = new RadioStation(mCurrentChannelNumber, 255 postCard(mConverter.convert(station, !isMuted));
|
D | RadioConverter.java | 83 public StreamCard convert(RadioStation station, boolean isPlaying) { in convert() argument 89 String title = createTitleText(station); in convert() 93 if (station.getRds() != null) { in convert() 94 subtitle = station.getRds().getProgramService(); in convert() 115 private String createTitleText(RadioStation station) { in createTitleText() argument 116 int radioBand = station.getRadioBand(); in createTitleText() 118 station.getChannelNumber()); in createTitleText()
|
/packages/apps/Car/libs/car-radio-service/src/com/android/car/radio/service/ |
D | RadioStation.java | 104 RadioStation station = (RadioStation) object; in equals() local 105 return station.getChannelNumber() == mChannelNumber in equals() 106 && station.getSubChannelNumber() == mSubChannelNumber; in equals()
|
D | IRadioCallback.aidl | 31 void onRadioStationChanged(in RadioStation station); in onRadioStationChanged() argument
|
D | IRadioManager.aidl | 28 void tune(in RadioStation station); in tune() argument
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |
D | de_wordlist.combined.gz | 1dictionary=main:de,locale=de,description=Deutsch,date=1414726263, ... |
D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
D | sv_wordlist.combined.gz | 1dictionary=main:sv,locale=sv,description=Svenska,date=1414726264, ... |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
D | ro_wordlist.combined.gz | 1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ... |