Home | History | Annotate | Download | only in AST

Lines Matching refs:GD

2204       GlobalDecl GD(DD, Dtor_Complete);
2205 assert(MethodVTableIndices.count(GD));
2206 uint64_t VTableIndex = MethodVTableIndices[GD];
2270 uint64_t ItaniumVTableContext::getMethodVTableIndex(GlobalDecl GD) {
2271 MethodVTableIndicesTy::iterator I = MethodVTableIndices.find(GD);
2275 const CXXRecordDecl *RD = cast<CXXMethodDecl>(GD.getDecl())->getParent();
2279 I = MethodVTableIndices.find(GD);
3324 GlobalDecl GD = Loc.first;
3326 auto M = NewMethodLocations.find(GD);
3328 NewMethodLocations[GD] = NewLoc;
3470 MicrosoftVTableContext::getMethodVFTableLocation(GlobalDecl GD) {
3471 assert(cast<CXXMethodDecl>(GD.getDecl())->isVirtual() &&
3473 if (isa<CXXDestructorDecl>(GD.getDecl()))
3474 assert(GD.getDtorType() == Dtor_Deleting);
3476 MethodVFTableLocationsTy::iterator I = MethodVFTableLocations.find(GD);
3480 GD.getDecl())->getParent();
3484 I = MethodVFTableLocations.find(GD);