HomeSort by relevance Sort by last modified time
    Searched refs:expectedView (Results 1 - 4 of 4) sorted by null

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
SmartReplyViewTest.java 198 ViewGroup expectedView = buildExpectedView(choices, 1);
199 expectedView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
204 assertEqualMeasures(expectedView, mView);
205 assertReplyButtonShownWithEqualMeasures(expectedView.getChildAt(0), mView.getChildAt(0));
206 assertReplyButtonShownWithEqualMeasures(expectedView.getChildAt(1), mView.getChildAt(1));
207 assertReplyButtonShownWithEqualMeasures(expectedView.getChildAt(2), mView.getChildAt(2));
215 ViewGroup expectedView = buildExpectedView(choices, 1);
216 expectedView.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
217 expectedView.layout(10, 10, 10 + expectedView.getMeasuredWidth()
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
MyAutofillCallback.java 88 MyEvent assertUiShownEvent(View expectedView) throws InterruptedException {
93 .isSameAs(expectedView);
100 void assertUiShownEvent(View expectedView, int expectedChildId) throws InterruptedException {
101 final MyEvent event = assertUiShownEvent(expectedView);
111 int assertUiShownEventForVirtualChild(View expectedView) throws InterruptedException {
112 final MyEvent event = assertUiShownEvent(expectedView);
119 MyEvent assertUiHiddenEvent(View expectedView) throws InterruptedException {
124 .isSameAs(expectedView);
131 void assertUiHiddenEvent(View expectedView, int expectedChildId) throws InterruptedException {
132 final MyEvent event = assertUiHiddenEvent(expectedView);
    [all...]
  /development/samples/IntentPlayground/src/com/example/android/intentplayground/
BaseActivity.java 63 TreeFragment expectedView = new TreeFragment();
69 expectedView.setArguments(expectedArgs);
70 transaction.add(R.id.fragment_container, expectedView);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
RecyclerViewFocusTest.java 55 View expectedView = new View(mActivityRule.getActivity());
57 mTestLinearLayoutManager.mOnInterceptFocusSearchReturnValue = expectedView;
61 assertThat(actualView, is(equalTo(expectedView)));

Completed in 719 milliseconds