Searched refs:CHANNEL (Results 1 – 3 of 3) sorted by relevance
/cts/tests/app/NotificationDelegator/src/com/android/test/notificationdelegator/ |
D | NotificationDelegator.java | 30 private static final String CHANNEL = "channel"; field in NotificationDelegator 39 nm.createNotificationChannel(new NotificationChannel(CHANNEL, CHANNEL, IMPORTANCE_LOW)); in onCreate()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/ |
D | AudioRecordHelper.java | 23 private static final int CHANNEL = AudioFormat.CHANNEL_CONFIGURATION_MONO; field in AudioRecordHelper 41 tmpBufferSize = AudioRecord.getMinBufferSize(rate, CHANNEL, ENCODING); in AudioRecordHelper() 42 AudioRecord testAudioRecord = new AudioRecord(source, rate, CHANNEL, ENCODING, in AudioRecordHelper() 76 audioRecord = new AudioRecord(source, sampleRate, CHANNEL, ENCODING, bufferSize); in start()
|
/cts/tests/app/src/android/app/cts/ |
D | NotificationTest.java | 69 private static final NotificationChannel CHANNEL = new NotificationChannel("id", "name", field in NotificationTest 98 mNotification = new Notification.Builder(mContext, CHANNEL.getId()).build(); 99 assertEquals(CHANNEL.getId(), mNotification.getChannelId()); 133 mNotification = new Notification.Builder(mContext, CHANNEL.getId()) 251 mNotification = new Notification.Builder(mContext, CHANNEL.getId()) 268 assertEquals(CHANNEL.getId(), mNotification.getChannelId()); 281 Notification.Builder builder = new Notification.Builder(mContext, CHANNEL.getId()); 308 mNotification = new Notification.Builder(mContext, CHANNEL.getId()) 339 mNotification = new Notification.Builder(mContext, CHANNEL.getId()) 363 mNotification = new Notification.Builder(mContext, CHANNEL.getId()) [all …]
|