Home | History | Annotate | Download | only in AST

Lines Matching refs:Access

169   // The access of the path down to this record.
170 AccessSpecifier AccessToHere = ScratchPath.Access;
218 // Calculate the "top-down" access to this base class.
221 // 1. Write down the access along each step in the inheritance
222 // chain, followed by the access of the decl itself.
230 // 2. If 'private' appears anywhere except far-left, access is denied.
231 // 3. Otherwise, overall access is determined by the most restrictive
232 // access in the sequence.
234 ScratchPath.Access = BaseSpec->getAccessSpecifier();
236 ScratchPath.Access = CXXRecordDecl::MergeAccess(AccessToHere,
285 // Reset the scratch path access.
286 ScratchPath.Access = AccessToHere;