Searched refs:mShakeAnimators (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java143 @Thunk HashMap<View, ReorderPreviewAnimation> mShakeAnimators = new HashMap<>(); field in class:CellLayout
2074 if (mShakeAnimators.containsKey(child)) {
2075 ReorderPreviewAnimation oldAnimation = mShakeAnimators.get(child);
2077 mShakeAnimators.remove(child);
2122 mShakeAnimators.put(child, this);
2149 for (ReorderPreviewAnimation a: mShakeAnimators.values()) {
2152 mShakeAnimators.clear();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java129 mShakeAnimators = new HashMap<View, ReorderHintAnimation>(); field in class:CellLayout
2325 if (mShakeAnimators.containsKey(child)) {
2326 ReorderHintAnimation oldAnimation = mShakeAnimators.get(child);
2328 mShakeAnimators.remove(child);
2364 mShakeAnimators.put(child, this);
2394 for (ReorderHintAnimation a: mShakeAnimators.values()) {
2397 mShakeAnimators.clear();

Completed in 95 milliseconds