Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaAccess.cpp953 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
958 assert(PathAccess != AS_none); in FindBestPath()
963 if (PathAccess == AS_private) { in FindBestPath()
964 PathAccess = AS_none; in FindBestPath()
971 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
973 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
976 PathAccess = AS_public; in FindBestPath()
990 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
992 BestPath->Access = PathAccess; in FindBestPath()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h1595 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1599 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()