HomeSort by relevance Sort by last modified time
    Searched defs:stopForeground (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/support/compat/src/main/java/androidx/core/app/
ServiceCompat.java 59 * Flag for {@link #stopForeground(Service, int)}: if set, the notification previously provided
62 * {@link #stopForeground(Service, int)} removes it, or the service is destroyed.
67 * Flag for {@link #stopForeground(Service, int)}: if set, the notification previously provided
97 public static void stopForeground(@NonNull Service service, @StopForegroundFlags int flags) {
99 service.stopForeground(flags);
101 service.stopForeground((flags & ServiceCompat.STOP_FOREGROUND_REMOVE) != 0);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestForegroundManager.java 36 public void stopForeground(boolean cancelNotification) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowService.java 63 public void stopForeground(boolean removeNotification) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowService.java 49 public void stopForeground(boolean removeNotification) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ServiceTest.java 59 public void stopForeground() {
61 service.stopForeground(true);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowServiceTest.java 75 public void stopForeground() {
76 service.stopForeground(true);
84 service.stopForeground(true);
96 service.stopForeground(false);
  /frameworks/base/core/java/android/app/
Service.java 307 * Flag for {@link #stopForeground(int)}: if set, the notification previously provided
310 * {@link #stopForeground(int)} removes it, or the service is destroyed.
315 * Flag for {@link #stopForeground(int)}: if set, the notification previously provided
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/recorder/
DvrRecordingService.java 167 stopForeground();
179 private void stopForeground() {
201 stopForeground(true);
  /packages/apps/DocumentsUI/src/com/android/documentsui/services/
FileOperationService.java 400 foregroundManager.stopForeground(true);
508 public void stopForeground(boolean removeNotification) {
509 service.stopForeground(removeNotification);
517 void stopForeground(boolean removeNotification);
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 

Completed in 88 milliseconds

1 2 3