Home
last modified time | relevance | path

Searched refs:svelteLevel (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
DRecentsTaskLoader.java193 if (config.svelteLevel < RecentsConfiguration.SVELTE_DISABLE_LOADING) { in run()
203 if (config.svelteLevel < RecentsConfiguration.SVELTE_LIMIT_CACHE) { in run()
428 if (config.svelteLevel < RecentsConfiguration.SVELTE_DISABLE_LOADING && loadIfNotCached) { in getAndUpdateThumbnail()
545 if (config.svelteLevel == RecentsConfiguration.SVELTE_NONE) { in onTrimMemory()
548 } else if (config.svelteLevel == RecentsConfiguration.SVELTE_LIMIT_CACHE) { in onTrimMemory()
550 } else if (config.svelteLevel >= RecentsConfiguration.SVELTE_DISABLE_CACHE) { in onTrimMemory()
DRecentsTaskLoadPlan.java245 if (mConfig.svelteLevel <= RecentsConfiguration.SVELTE_LIMIT_CACHE) { in executePlan()
248 … } else if (mConfig.svelteLevel == RecentsConfiguration.SVELTE_DISABLE_CACHE) { in executePlan()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DRecentsConfiguration.java141 public int svelteLevel; field in RecentsConfiguration
271 svelteLevel = res.getInteger(R.integer.recents_svelte_level); in update()
DRecents.java123 if (config.svelteLevel == RecentsConfiguration.SVELTE_NONE) { in run()