Home
last modified time | relevance | path

Searched refs:station (Results 1 – 25 of 28) sorted by relevance

12

/packages/apps/Car/Radio/src/com/android/car/radio/
DRadioController.java131 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 …]
DRadioBackgroundScanner.java112 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 …]
DPrescannedRadioStationAdapter.java120 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()
DPresetsAdapter.java77 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()
DRadioDatabase.java338 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()
DRadioPresetsFragment.java239 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()
DManualTunerFragment.java51 void onStationSelected(@Nullable RadioStation station); in onStationSelected() argument
82 public void onDone(RadioStation station) { in onDone() argument
84 mListener.onStationSelected(station); in onDone()
DCarRadioActivity.java122 public void onStationSelected(RadioStation station) { in onStationSelected() argument
128 if (station != null) { in onStationSelected()
129 mRadioController.tuneToRadioChannel(station); in onStationSelected()
DRadioStorage.java182 public boolean isPreset(RadioStation station) { in isPreset() argument
183 if (station == null) { in isPreset()
190 if (preset.equals(station)) { in isPreset()
DManualTunerController.java114 void onDone(RadioStation station); in onDone() argument
492 RadioStation station = new RadioStation(channelFrequency, 0 /* subChannelNumber */,
495 mManualTunerClickListener.onDone(station);
DRadioService.java762 RadioStation station = createCurrentRadioStation(); in onProgramInfoChanged() local
766 callback.onRadioStationChanged(station); in onProgramInfoChanged()
/packages/apps/Car/Radio/src/com/android/car/radio/demo/
DRadioDemo.java83 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/
DRadioStreamProducer.java195 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));
DRadioConverter.java83 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/
DRadioStation.java104 RadioStation station = (RadioStation) object; in equals() local
105 return station.getChannelNumber() == mChannelNumber in equals()
106 && station.getSubChannelNumber() == mSubChannelNumber; in equals()
DIRadioCallback.aidl31 void onRadioStationChanged(in RadioStation station); in onRadioStationChanged() argument
DIRadioManager.aidl28 void tune(in RadioStation station); in tune() argument
/packages/inputmethods/LatinIME/dictionaries/
Dda_wordlist.combined.gz1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ...
Dde_wordlist.combined.gz1dictionary=main:de,locale=de,description=Deutsch,date=1414726263, ...
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Dsv_wordlist.combined.gz1dictionary=main:sv,locale=sv,description=Svenska,date=1414726264, ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dro_wordlist.combined.gz1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ...

12