Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAccess.cpp954 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
959 assert(PathAccess != AS_none); in FindBestPath()
964 if (PathAccess == AS_private) { in FindBestPath()
965 PathAccess = AS_none; in FindBestPath()
972 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
974 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
977 PathAccess = AS_public; in FindBestPath()
991 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
993 BestPath->Access = PathAccess; in FindBestPath()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h1864 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess,
1868 return (PathAccess > DeclAccess ? PathAccess : DeclAccess);