Lines Matching refs:annotationCache
35 ManagedStatic<per_module_annot_t> annotationCache; variable
40 annotationCache->erase(Mod); in clearAnnotationCache()
93 if ((*annotationCache).find(m) != (*annotationCache).end()) in cacheAnnotationFromMD()
94 (*annotationCache)[m][gv] = std::move(tmp); in cacheAnnotationFromMD()
98 (*annotationCache)[m] = std::move(tmp1); in cacheAnnotationFromMD()
106 if ((*annotationCache).find(m) == (*annotationCache).end()) in findOneNVVMAnnotation()
108 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation()
110 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation()
112 retval = (*annotationCache)[m][gv][prop][0]; in findOneNVVMAnnotation()
120 if ((*annotationCache).find(m) == (*annotationCache).end()) in findAllNVVMAnnotation()
122 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findAllNVVMAnnotation()
124 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findAllNVVMAnnotation()
126 retval = (*annotationCache)[m][gv][prop]; in findAllNVVMAnnotation()