Searched defs:Caches (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
H A DCaches.cpp19 #include "Caches.h"
34 Caches* Caches::sInstance = nullptr;
50 Caches::Caches(RenderState& renderState) function in class:android::uirenderer::Caches
65 bool Caches::init() {
68 ATRACE_NAME("Caches::init");
85 void Caches::initFont() {
89 void Caches::initExtensions() {
102 void Caches
[all...]
H A DCaches.h63 // Caches
69 class ANDROID_API Caches { class in namespace:android::uirenderer
71 static Caches& createInstance(RenderState& renderState) {
72 LOG_ALWAYS_FATAL_IF(sInstance, "double create of Caches attempted");
73 sInstance = new Caches(renderState);
77 static Caches& getInstance() {
86 Caches(RenderState& renderState);
87 static Caches* sInstance;
220 }; // class Caches

Completed in 35 milliseconds