Home | History | Annotate | Download | only in notification

Lines Matching defs:channel

44         NotificationChannel channel =
47 channel.writeToParcel(parcel, 0);
50 assertEquals(channel, channel1);
55 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT);
56 assertEquals(false, channel.isBlockableSystem());
57 channel.setBlockableSystem(true);
58 assertEquals(true, channel.isBlockableSystem());
63 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT);
64 channel.setVibrationPattern(new long[0]);
69 channel.writeXml(serializer);