HomeSort by relevance Sort by last modified time
    Searched refs:CellBroadcastAlertAudio (Results 1 - 6 of 6) sorted by null

  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertServiceTest.java 33 import static com.android.cellbroadcastreceiver.CellBroadcastAlertAudio.ALERT_AUDIO_TONE_TYPE;
107 assertEquals(CellBroadcastAlertAudio.ACTION_START_ALERT_AUDIO,
109 assertEquals(CellBroadcastAlertAudio.ToneType.CMAS_DEFAULT,
113 CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_BODY));
CellBroadcastOtherChannelsManagerTest.java 22 import com.android.cellbroadcastreceiver.CellBroadcastAlertAudio.ToneType;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 43 import com.android.cellbroadcastreceiver.CellBroadcastAlertAudio.ToneType;
380 Intent audioIntent = new Intent(this, CellBroadcastAlertAudio.class);
381 audioIntent.setAction(CellBroadcastAlertAudio.ACTION_START_ALERT_AUDIO);
387 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA, true);
388 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_ETWS_VIBRATE_EXTRA, true);
409 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_VIBRATE_EXTRA,
424 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_TONE_TYPE, toneType);
429 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_BODY, messageBody);
455 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_PREFERRED_LANGUAGE,
457 audioIntent.putExtra(CellBroadcastAlertAudio.ALERT_AUDIO_MESSAGE_DEFAULT_LANGUAGE
    [all...]
CellBroadcastOtherChannelsManager.java 25 import com.android.cellbroadcastreceiver.CellBroadcastAlertAudio.ToneType;
CellBroadcastAlertDialog.java 50 * Alert audio and text-to-speech handled by {@link CellBroadcastAlertAudio}.
401 * Stop animating warning icon and stop the {@link CellBroadcastAlertAudio}
407 stopService(new Intent(this, CellBroadcastAlertAudio.class));
493 stopService(new Intent(this, CellBroadcastAlertAudio.class));
CellBroadcastAlertAudio.java 48 public class CellBroadcastAlertAudio extends Service implements TextToSpeech.OnInitListener,
50 private static final String TAG = "CellBroadcastAlertAudio";

Completed in 755 milliseconds