Home | History | Annotate | Download | only in AST

Lines Matching refs:Access

183   // The access of the path down to this record.
184 AccessSpecifier AccessToHere = ScratchPath.Access;
229 // Calculate the "top-down" access to this base class.
232 // 1. Write down the access along each step in the inheritance
233 // chain, followed by the access of the decl itself.
241 // 2. If 'private' appears anywhere except far-left, access is denied.
242 // 3. Otherwise, overall access is determined by the most restrictive
243 // access in the sequence.
245 ScratchPath.Access = BaseSpec.getAccessSpecifier();
247 ScratchPath.Access = CXXRecordDecl::MergeAccess(AccessToHere,
296 // Reset the scratch path access.
297 ScratchPath.Access = AccessToHere;