Home | History | Annotate | Download | only in testapp

Lines Matching refs:Lifecycle

17 package androidx.lifecycle.testapp;
23 import androidx.lifecycle.Lifecycle;
24 import androidx.lifecycle.LifecycleObserver;
25 import androidx.lifecycle.LifecycleOwner;
26 import androidx.lifecycle.OnLifecycleEvent;
27 import androidx.lifecycle.ProcessLifecycleOwner;
55 @OnLifecycleEvent(Lifecycle.Event.ON_ANY)
56 void onEvent(LifecycleOwner provider, Lifecycle.Event event) {
62 static List<Pair<TestEventType, Lifecycle.Event>> sCollectedEvents = new ArrayList<>();
96 public static List<Pair<TestEventType, Lifecycle.Event>> awaitForEvents()