Home
last modified time | relevance | path

Searched refs:TestingUtils (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/testing/
DToggleWeightWatcher.java11 import com.android.launcher3.util.TestingUtils;
20 boolean show = sp.getBoolean(TestingUtils.SHOW_WEIGHT_WATCHER, true); in onCreate()
23 sp.edit().putBoolean(TestingUtils.SHOW_WEIGHT_WATCHER, show).apply(); in onCreate()
DMemoryTracker.java32 import com.android.launcher3.util.TestingUtils;
191 if (TestingUtils.ACTION_START_TRACKING.equals(intent.getAction())) { in onStartCommand()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncherAppState.java31 import com.android.launcher3.util.TestingUtils;
83 if (TestingUtils.MEMORY_DUMP_ENABLED) { in LauncherAppState()
84 TestingUtils.startTrackingMemory(sContext); in LauncherAppState()
DLauncher.java109 import com.android.launcher3.util.TestingUtils;
351 if (TestingUtils.ENABLE_CUSTOM_WIDGET_TEST) {
352 TestingUtils.addDummyWidget(sCustomAppWidgets);
1385 if (TestingUtils.MEMORY_DUMP_ENABLED) { in setupViews()
1386 TestingUtils.addWeightWatcher(this); in setupViews()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DTestingUtils.java20 public class TestingUtils { class