Home
last modified time | relevance | path

Searched refs:PathAccess (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp976 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
981 assert(PathAccess != AS_none); in FindBestPath()
986 if (PathAccess == AS_private) { in FindBestPath()
987 PathAccess = AS_none; in FindBestPath()
994 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
996 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
999 PathAccess = AS_public; in FindBestPath()
1013 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
1015 BestPath->Access = PathAccess; in FindBestPath()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1722 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1726 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()