Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp974 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
979 assert(PathAccess != AS_none); in FindBestPath()
984 if (PathAccess == AS_private) { in FindBestPath()
985 PathAccess = AS_none; in FindBestPath()
992 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
994 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
997 PathAccess = AS_public; in FindBestPath()
1011 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
1013 BestPath->Access = PathAccess; in FindBestPath()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1730 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1734 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()