Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
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()
/external/clang/include/clang/AST/
DDeclCXX.h1616 static AccessSpecifier MergeAccess(AccessSpecifier PathAccess, in MergeAccess() argument
1620 return (PathAccess > DeclAccess ? PathAccess : DeclAccess); in MergeAccess()