Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaAccess.cpp961 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
966 assert(PathAccess != AS_none); in FindBestPath()
971 if (PathAccess == AS_private) { in FindBestPath()
972 PathAccess = AS_none; in FindBestPath()
979 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
981 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
984 PathAccess = AS_public; in FindBestPath()
998 if (BestPath == 0 || PathAccess < BestPath->Access) { in FindBestPath()
1000 BestPath->Access = PathAccess; in FindBestPath()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DDeclCXX.h1537 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1541 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()