@@ -942,14 +942,28 @@ public void test() throws Exception {
942
942
// "androidx.core.app;NotificationCompat$BigPictureStyle;true;bigLargeIcon;;;Argument[this];ReturnValue;value;manual"
943
943
NotificationCompat .BigPictureStyle out = null ;
944
944
NotificationCompat .BigPictureStyle in = (NotificationCompat .BigPictureStyle ) source ();
945
- out = in .bigLargeIcon (null );
945
+ out = in .bigLargeIcon ((Bitmap )null );
946
+ sink (out ); // $ hasValueFlow
947
+ }
948
+ {
949
+ // "androidx.core.app;NotificationCompat$BigPictureStyle;true;bigLargeIcon;;;Argument[this];ReturnValue;value;manual"
950
+ NotificationCompat .BigPictureStyle out = null ;
951
+ NotificationCompat .BigPictureStyle in = (NotificationCompat .BigPictureStyle ) source ();
952
+ out = in .bigLargeIcon ((Icon )null );
953
+ sink (out ); // $ hasValueFlow
954
+ }
955
+ {
956
+ // "androidx.core.app;NotificationCompat$BigPictureStyle;true;bigPicture;;;Argument[this];ReturnValue;value;manual"
957
+ NotificationCompat .BigPictureStyle out = null ;
958
+ NotificationCompat .BigPictureStyle in = (NotificationCompat .BigPictureStyle ) source ();
959
+ out = in .bigPicture ((Bitmap )null );
946
960
sink (out ); // $ hasValueFlow
947
961
}
948
962
{
949
963
// "androidx.core.app;NotificationCompat$BigPictureStyle;true;bigPicture;;;Argument[this];ReturnValue;value;manual"
950
964
NotificationCompat .BigPictureStyle out = null ;
951
965
NotificationCompat .BigPictureStyle in = (NotificationCompat .BigPictureStyle ) source ();
952
- out = in .bigPicture (null );
966
+ out = in .bigPicture (( Icon ) null );
953
967
sink (out ); // $ hasValueFlow
954
968
}
955
969
{
@@ -1040,7 +1054,14 @@ public void test() throws Exception {
1040
1054
// "androidx.core.app;NotificationCompat$Builder;true;addPerson;;;Argument[this];ReturnValue;value;manual"
1041
1055
NotificationCompat .Builder out = null ;
1042
1056
NotificationCompat .Builder in = (NotificationCompat .Builder ) source ();
1043
- out = in .addPerson (null );
1057
+ out = in .addPerson ((androidx .core .app .Person )null );
1058
+ sink (out ); // $ hasValueFlow
1059
+ }
1060
+ {
1061
+ // "androidx.core.app;NotificationCompat$Builder;true;addPerson;;;Argument[this];ReturnValue;value;manual"
1062
+ NotificationCompat .Builder out = null ;
1063
+ NotificationCompat .Builder in = (NotificationCompat .Builder ) source ();
1064
+ out = in .addPerson ((String )null );
1044
1065
sink (out ); // $ hasValueFlow
1045
1066
}
1046
1067
{
@@ -1252,7 +1273,14 @@ public void test() throws Exception {
1252
1273
// "androidx.core.app;NotificationCompat$Builder;true;setLargeIcon;;;Argument[this];ReturnValue;value;manual"
1253
1274
NotificationCompat .Builder out = null ;
1254
1275
NotificationCompat .Builder in = (NotificationCompat .Builder ) source ();
1255
- out = in .setLargeIcon (null );
1276
+ out = in .setLargeIcon ((Bitmap )null );
1277
+ sink (out ); // $ hasValueFlow
1278
+ }
1279
+ {
1280
+ // "androidx.core.app;NotificationCompat$Builder;true;setLargeIcon;;;Argument[this];ReturnValue;value;manual"
1281
+ NotificationCompat .Builder out = null ;
1282
+ NotificationCompat .Builder in = (NotificationCompat .Builder ) source ();
1283
+ out = in .setLargeIcon ((Icon )null );
1256
1284
sink (out ); // $ hasValueFlow
1257
1285
}
1258
1286
{
0 commit comments