OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gCache
(Results
1 - 5
of
5
) sorted by null
/external/icu/icu4c/source/common/
unifiedcache.cpp
18
static icu::UnifiedCache *
gCache
= NULL;
32
if (
gCache
) {
33
delete
gCache
;
34
gCache
= NULL;
70
U_ASSERT(
gCache
== NULL);
77
gCache
= new UnifiedCache(status);
78
if (
gCache
== NULL) {
82
delete
gCache
;
84
gCache
= NULL;
98
U_ASSERT(
gCache
!= NULL)
[
all
...]
/external/skia/src/core/
SkTypefaceCache.cpp
76
static SkTypefaceCache
gCache
;
77
return
gCache
;
/external/icu/icu4c/source/i18n/
hebrwcal.cpp
134
static icu::CalendarCache *
gCache
= NULL;
138
delete
gCache
;
139
gCache
= NULL;
390
int32_t day = CalendarCache::get(&
gCache
, year, status);
418
CalendarCache::put(&
gCache
, year, day, status);
/external/skia/src/ports/
SkFontHost_fontconfig.cpp
77
static SkFontHostRequestCache
gCache
(gMaxSize);
78
return
gCache
;
/external/skia/src/effects/gradients/
SkGradientShader.cpp
668
static SkGradientBitmapCache*
gCache
;
673
if (nullptr ==
gCache
) {
674
gCache
= new SkGradientBitmapCache(MAX_NUM_CACHED_GRADIENT_BITMAPS);
678
if (!
gCache
->find(storage.get(), size, bitmap)) {
684
gCache
->add(storage.get(), size, *bitmap);
[
all
...]
Completed in 1079 milliseconds