Home
last modified time | relevance | path

Searched refs:nameView (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DPartialConversationInfoTest.java210 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
211 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
236 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
237 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
238 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
H A DNotificationConversationInfoTest.java388 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
389 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
424 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
425 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
426 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
H A DNotificationInfoTest.java248 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
249 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
280 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
281 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
282 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
/aosp14/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectBrowser.java87 TextView nameView = (TextView)view.findViewById(R.id.name); in getView() local
89 nameView.setText(info.getName()); in getView()