Lines Matching refs:annotationCache
35 ManagedStatic<per_module_annot_t> annotationCache; variable
85 if ((*annotationCache).find(m) != (*annotationCache).end()) in cacheAnnotationFromMD()
86 (*annotationCache)[m][gv] = tmp; in cacheAnnotationFromMD()
90 (*annotationCache)[m] = tmp1; in cacheAnnotationFromMD()
97 if ((*annotationCache).find(m) == (*annotationCache).end()) in findOneNVVMAnnotation()
99 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findOneNVVMAnnotation()
101 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findOneNVVMAnnotation()
103 retval = (*annotationCache)[m][gv][prop][0]; in findOneNVVMAnnotation()
110 if ((*annotationCache).find(m) == (*annotationCache).end()) in findAllNVVMAnnotation()
112 else if ((*annotationCache)[m].find(gv) == (*annotationCache)[m].end()) in findAllNVVMAnnotation()
114 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end()) in findAllNVVMAnnotation()
116 retval = (*annotationCache)[m][gv][prop]; in findAllNVVMAnnotation()