Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAccess.cpp966 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
971 assert(PathAccess != AS_none); in FindBestPath()
976 if (PathAccess == AS_private) { in FindBestPath()
977 PathAccess = AS_none; in FindBestPath()
984 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
986 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
989 PathAccess = AS_public; in FindBestPath()
1003 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
1005 BestPath->Access = PathAccess; in FindBestPath()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h1661 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1665 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()