Lines Matching defs:instance
39 static UIFont instance;
41 if (instance.instance_ == nullptr) {
42 instance.defaultInstance_ = new UIFontBitmap();
43 instance.instance_ = instance.defaultInstance_;
48 if (instance.instance_ == nullptr) {
49 instance.defaultInstance_ = new UIFontVector();
50 instance.instance_ = instance.defaultInstance_;
54 return &instance;
86 static UIFont instance;
87 if (instance.instance_ == nullptr) {
88 instance.defaultInstance_ = new UIFontBitmap();
89 instance.instance_ = instance.defaultInstance_;
92 return &instance;