Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DPartialConversationInfoTest.java214 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
215 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
240 final TextView nameView = mInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
241 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
242 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
DNotificationInfoTest.java242 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
243 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
272 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
273 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
274 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
DNotificationConversationInfoTest.java384 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_noDelegate() local
385 assertEquals(GONE, nameView.getVisibility()); in testBindNotification_noDelegate()
419 final TextView nameView = mNotificationInfo.findViewById(R.id.delegate_name); in testBindNotification_delegate() local
420 assertEquals(VISIBLE, nameView.getVisibility()); in testBindNotification_delegate()
421 assertTrue(nameView.getText().toString().contains("Proxied")); in testBindNotification_delegate()
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
DObjectBrowser.java87 TextView nameView = (TextView)view.findViewById(R.id.name); in getView() local
89 nameView.setText(info.getName()); in getView()