Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaAccess.cpp958 AccessSpecifier PathAccess = FinalAccess; in FindBestPath() local
963 assert(PathAccess != AS_none); in FindBestPath()
968 if (PathAccess == AS_private) { in FindBestPath()
969 PathAccess = AS_none; in FindBestPath()
976 PathAccess = std::max(PathAccess, BaseAccess); in FindBestPath()
978 switch (HasAccess(S, EC, NC, PathAccess, Target)) { in FindBestPath()
981 PathAccess = AS_public; in FindBestPath()
995 if (BestPath == nullptr || PathAccess < BestPath->Access) { in FindBestPath()
997 BestPath->Access = PathAccess; in FindBestPath()
/external/clang/include/clang/AST/
DDeclCXX.h1588 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1592 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()