Home | History | Annotate | Download | only in Sema

Lines Matching refs:Instance

205 // Constructs and adds to New a new instance of CUDALaunchBoundsAttr using
2712 // declaration (for instance, if there was a prior implicit instantiation).
3614 // for instance), are now implicitly inline.
4384 ClassTemplateDecl *Instance) {
4388 Instance = Instance->getCanonicalDecl();
4389 if (Pattern == Instance) return true;
4390 Instance = Instance->getInstantiatedFromMemberTemplate();
4391 } while (Instance);
4397 FunctionTemplateDecl *Instance) {
4401 Instance = Instance->getCanonicalDecl();
4402 if (Pattern == Instance) return true;
4403 Instance = Instance->getInstantiatedFromMemberTemplate();
4404 } while (Instance);
4411 ClassTemplatePartialSpecializationDecl *Instance) {
4415 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4416 Instance->getCanonicalDecl());
4417 if (Pattern == Instance)
4419 Instance = Instance->getInstantiatedFromMember();
4420 } while (Instance);
4426 CXXRecordDecl *Instance) {
4430 Instance = Instance->getCanonicalDecl();
4431 if (Pattern == Instance) return true;
4432 Instance = Instance->getInstantiatedFromMemberClass();
4433 } while (Instance);
4439 FunctionDecl *Instance) {
4443 Instance = Instance->getCanonicalDecl();
4444 if (Pattern == Instance) return true;
4445 Instance = Instance->getInstantiatedFromMemberFunction();
4446 } while (Instance);
4452 EnumDecl *Instance) {
4456 Instance = Instance->getCanonicalDecl();
4457 if (Pattern == Instance) return true;
4458 Instance = Instance->getInstantiatedFromMemberEnum();
4459 } while (Instance);
4465 UsingShadowDecl *Instance,
4467 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4472 UsingDecl *Instance,
4474 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
4478 UsingDecl *Instance,
4480 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
4484 UsingDecl *Instance,
4486 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
4490 VarDecl *Instance) {
4491 assert(Instance->isStaticDataMember());
4496 Instance = Instance->getCanonicalDecl();
4497 if (Pattern == Instance) return true;
4498 Instance = Instance->getInstantiatedFromStaticDataMember();
4499 } while (Instance);