Searched refs:BestPath (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp940 CXXBasePath *BestPath = nullptr; local
989 if (BestPath == nullptr || PathAccess < BestPath->Access) {
990 BestPath = &*PI;
991 BestPath->Access = PathAccess;
994 if (BestPath->Access == AS_public)
995 return BestPath;
1001 assert((!BestPath || BestPath->Access != AS_public) &&
1009 return BestPath;
[all...]
H A DSemaDeclCXX.cpp1280 CXXBasePath *BestPath = nullptr;
1282 if (!BestPath)
1283 BestPath = &P;
1285 BestPath->back().Base->getType())) {
1288 << false << RD << BestPath->back().Base->getType()
1291 } else if (P.Access < BestPath->Access) {
1292 BestPath = &P;
1297 QualType BaseType = BestPath->back().Base->getType();
1306 *BestPath, diag::err_decomp_decl_inaccessible_base);
1307 AS = BestPath
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp3460 const FullPathTy *BestPath = nullptr; local
3500 BestPath = &SpecificPath;
3517 return BestPath ? BestPath : &FullPaths.front();
3534 if (const FullPathTy *BestPath =
3536 for (const BaseSubobject &BSO : *BestPath)

Completed in 128 milliseconds