Lines Matching refs:None
307 repeated = vec![None, None]; in test_parcel_file_descriptor_array()
370 let result = service.$func(None);
371 assert_eq!(result, Ok(None));
400 None,
418 let result = service.RepeatNullableParcelable(None); in test_nullable_parcelable()
419 assert_eq!(result, Ok(None)); in test_nullable_parcelable()
438 assert_eq!(service.TakesANullableIBinder(None), Ok(())); in test_binder()
444 let mut repeated = None;
445 let result = $service.$func(None, &mut repeated);
447 assert_eq!(result, Ok(None));
482 let result = service.RepeatNullableUtf8CppString(None); in test_utf8_string()
483 assert_eq!(result, Ok(None)); in test_utf8_string()
488 None, in test_utf8_string()
499 let null_output = if backend == BackendType::JAVA { Some(vec![]) } else { None }; in test_utf8_string()
502 test_reverse_null_array!(service, ReverseNullableUtf8CppString, None); in test_utf8_string()