Searched defs:mPendingActions (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/app/
H A DFragmentManager.java448 ArrayList<Runnable> mPendingActions; field in class:FragmentManagerImpl
783 if (mPendingActions != null) {
784 N = mPendingActions.size();
788 Runnable r = mPendingActions.get(i);
1458 if (mPendingActions == null) {
1459 mPendingActions = new ArrayList<Runnable>();
1461 mPendingActions.add(action);
1462 if (mPendingActions.size() == 1) {
1563 if (mPendingActions == null || mPendingActions
[all...]
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java296 private final List<Runnable> mPendingActions = new ArrayList<>(); field in class:TvInputService.Session
1136 mPendingActions.clear();
1441 for (Runnable runnable : mPendingActions) {
1444 mPendingActions.clear();
1452 mPendingActions.add(action);
1521 private final List<Runnable> mPendingActions = new ArrayList<>(); field in class:TvInputService.RecordingSession
1782 for (Runnable runnable : mPendingActions) {
1785 mPendingActions.clear();
1793 mPendingActions.add(action);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentManager.java504 ArrayList<Runnable> mPendingActions; field in class:FragmentManagerImpl
819 if (mPendingActions != null) {
820 N = mPendingActions.size();
824 Runnable r = mPendingActions.get(i);
1562 if (mPendingActions == null) {
1563 mPendingActions = new ArrayList<Runnable>();
1565 mPendingActions.add(action);
1566 if (mPendingActions.size() == 1) {
1667 if (mPendingActions == null || mPendingActions
[all...]

Completed in 175 milliseconds