Lines Matching refs:bundle

31         Bundle bundle = new Bundle();
32 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
39 Bundle bundle = new Bundle();
40 bundle.putString(Notification.EXTRA_PEOPLE, expected[0]);
41 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
48 Bundle bundle = new Bundle();
49 bundle.putCharArray(Notification.EXTRA_PEOPLE, expected[0].toCharArray());
50 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
57 Bundle bundle = new Bundle();
58 bundle.putCharSequence(Notification.EXTRA_PEOPLE, new SpannableString(expected[0]));
59 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
65 Bundle bundle = new Bundle();
67 bundle.putStringArray(Notification.EXTRA_PEOPLE, expected);
68 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
74 Bundle bundle = new Bundle();
76 bundle.putStringArray(Notification.EXTRA_PEOPLE, expected);
77 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
83 Bundle bundle = new Bundle();
85 bundle.putStringArray(Notification.EXTRA_PEOPLE, expected);
86 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
92 Bundle bundle = new Bundle();
98 bundle.putCharSequenceArray(Notification.EXTRA_PEOPLE, charSeqArray);
99 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
105 Bundle bundle = new Bundle();
115 bundle.putCharSequenceArray(Notification.EXTRA_PEOPLE, charSeqArray);
116 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
122 Bundle bundle = new Bundle();
128 bundle.putStringArrayList(Notification.EXTRA_PEOPLE, stringArrayList);
129 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);
135 Bundle bundle = new Bundle();
142 bundle.putCharSequenceArrayList(Notification.EXTRA_PEOPLE, stringArrayList);
143 String[] result = ValidateNotificationPeople.getExtraPeople(bundle);