Home
last modified time | relevance | path

Searched refs:closeControls (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGuts.java79 closeControls(host, /* save= */ false);
165 closeControls(-1 /* x */, -1 /* y */, false /* save */, false /* force */); in NotificationGuts()
257 public void closeControls(boolean leavebehinds, boolean controls, int x, int y, boolean force) { in closeControls() method in NotificationGuts
261 closeControls(x, y, mGutsContent.shouldBeSavedOnClose(), force); in closeControls()
269 public void closeControls(View eventSource, boolean save) { in closeControls() method in NotificationGuts
279 closeControls(x, y, save, false); in closeControls()
290 private void closeControls(int x, int y, boolean save, boolean force) { in closeControls() method in NotificationGuts
DFeedbackInfo.java169 mGutsContainer.closeControls(v, /* save= */ false); in positiveFeedback()
180 mGutsContainer.closeControls(v, /* save= */ false); in negativeFeedback()
206 private void closeControls(View v) { in closeControls() method in FeedbackInfo
207 mGutsContainer.closeControls(v, /* save= */ false); in closeControls()
DPartialConversationInfo.java70 mGutsContainer.closeControls(v, /* save= */ false);
150 mGutsContainer.closeControls(this, false); in getTurnOffNotificationsClickListener()
DNotificationInfo.java159 mGutsContainer.closeControls(v, /* save= */ true);
361 mGutsContainer.closeControls(this, false); in getTurnOffNotificationsClickListener()
DNotificationSnooze.java441 mGutsContainer.closeControls(v, /* save= */ false); in undoSnooze()
DNotificationConversationInfo.java166 mGutsContainer.closeControls(v, /* save= */ true);
DNotificationGutsManager.java544 mNotificationGutsExposed.closeControls(removeLeavebehinds, removeControls, x, y, force); in closeAndSaveGuts()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsTest.kt87 guts.closeControls(gutsContentView, true) in closeControlsWithSave()
98 guts.closeControls(gutsContentView, false) in closeControlsWithoutSave()
DNotificationGutsManagerTest.java257 verify(guts).closeControls(anyBoolean(), anyBoolean(), anyInt(), anyInt(), anyBoolean()); in testOpenAndCloseGuts()
278 verify(guts, never()).closeControls( in testLockscreenShadeVisible_visible_gutsNotClosed()
297 verify(guts).closeControls( in testLockscreenShadeVisible_notVisible_gutsClosed()
367 verify(guts).closeControls(anyBoolean(), anyBoolean(), anyInt(), anyInt(), anyBoolean()); in testChangeDensityOrFontScale()
DFeedbackInfoTest.java209 verify(mGutsParent, times(1)).closeControls(yes, false); in testPositiveFeedback()
226 verify(mGutsParent, times(1)).closeControls(no, false); in testNegativeFeedback()
DNotificationGutsManagerWithScenesTest.kt236 .closeControls( in <lambda>()
263 .closeControls( in <lambda>()
287 .closeControls( in <lambda>()
356 .closeControls( in <lambda>()
DNotificationConversationInfoTest.java176 }).when(mNotificationGuts).closeControls(any(View.class), eq(true)); in setUp()