| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaCXXScopeSpec.cpp | 77 bool EnteringContext) { in computeDeclContext() argument 88 if (EnteringContext) { in computeDeclContext() 395 bool EnteringContext, in BuildCXXNestedNameSpecifier() argument 414 LookupCtx = computeDeclContext(SS, EnteringContext); in BuildCXXNestedNameSpecifier() 495 &SS, Validator, LookupCtx, EnteringContext)) { in BuildCXXNestedNameSpecifier() 680 bool EnteringContext, in ActOnCXXNestedNameSpecifier() argument 687 EnteringContext, SS, in ActOnCXXNestedNameSpecifier() 725 bool EnteringContext) { in IsInvalidUnlessNestedName() argument 731 EnteringContext, SS, in IsInvalidUnlessNestedName() 744 bool EnteringContext) { in ActOnCXXNestedNameSpecifier() argument
|
| D | MultiplexExternalSemaSource.cpp | 282 bool EnteringContext, in CorrectTypo() argument 287 EnteringContext, OPT)) in CorrectTypo()
|
| D | SemaLookup.cpp | 1813 bool AllowBuiltinCreation, bool EnteringContext) { in LookupParsedName() argument 1821 if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) { in LookupParsedName() 3772 bool EnteringContext, in LookupPotentialTypoResult() argument 3801 EnteringContext); in LookupPotentialTypoResult() 4049 bool EnteringContext, in CorrectTypo() argument 4056 TypoName, LookupKind, S, SS, CCC, MemberContext, EnteringContext, OPT)) in CorrectTypo() 4125 QualifiedDC = computeDeclContext(*SS, EnteringContext); in CorrectTypo() 4301 TempMemberContext, EnteringContext, in CorrectTypo()
|
| D | SemaTemplate.cpp | 139 bool EnteringContext, in isTemplateName() argument 168 LookupTemplateName(R, S, SS, ObjectType, EnteringContext, in isTemplateName() 249 bool EnteringContext, in LookupTemplateName() argument 273 LookupCtx = computeDeclContext(SS, EnteringContext); in LookupTemplateName() 2853 bool EnteringContext, in ActOnDependentTemplateName() argument 2864 LookupCtx = computeDeclContext(SS, EnteringContext); in ActOnDependentTemplateName() 2886 ObjectType, EnteringContext, Result, in ActOnDependentTemplateName()
|
| D | SemaExprCXX.cpp | 85 bool EnteringContext) { in getDestructorName() argument 142 DeclContext *DC = computeDeclContext(SS, EnteringContext); in getDestructorName() 157 LookupCtx = computeDeclContext(PrefixSS, EnteringContext); in getDestructorName() 163 LookupCtx = computeDeclContext(SS, EnteringContext); in getDestructorName() 228 if (DeclContext *Ctx = computeDeclContext(SS, EnteringContext)) { in getDestructorName()
|
| D | SemaCodeComplete.cpp | 4063 bool EnteringContext) { in CodeCompleteQualifiedId() argument 4067 DeclContext *Ctx = computeDeclContext(SS, EnteringContext); in CodeCompleteQualifiedId() 4092 if (!EnteringContext) in CodeCompleteQualifiedId()
|
| D | SemaDecl.cpp | 4233 bool EnteringContext = !D.getDeclSpec().isFriendSpecified(); in HandleDeclarator() local 4234 DC = computeDeclContext(D.getCXXScopeSpec(), EnteringContext); in HandleDeclarator() 4269 if (EnteringContext && IsDependentContext && in HandleDeclarator()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ |
| D | ParseExprCXX.cpp | 78 bool EnteringContext, in CheckForTemplateAndDigraph() argument 92 TemplateName, ObjectType, EnteringContext, in CheckForTemplateAndDigraph() 183 bool EnteringContext, in ParseOptionalCXXScopeSpecifier() argument 265 Actions.CodeCompleteQualifiedId(getCurScope(), SS, EnteringContext); in ParseOptionalCXXScopeSpecifier() 297 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, in ParseOptionalCXXScopeSpecifier() 330 ObjectType, EnteringContext, in ParseOptionalCXXScopeSpecifier() 378 EnteringContext)) { in ParseOptionalCXXScopeSpecifier() 408 EnteringContext) && in ParseOptionalCXXScopeSpecifier() 443 ObjectType, EnteringContext, SS)) in ParseOptionalCXXScopeSpecifier() 449 CheckForTemplateAndDigraph(Next, ObjectType, EnteringContext, II, SS); in ParseOptionalCXXScopeSpecifier() [all …]
|
| D | Parser.cpp | 1400 const bool EnteringContext = false; in TryAnnotateName() local 1405 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext)) in TryAnnotateName() 1409 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS, in TryAnnotateName() 1423 if (TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, false, SS, in TryAnnotateName() 1539 bool Parser::TryAnnotateTypeOrScopeToken(bool EnteringContext, bool NeedType) { in TryAnnotateTypeOrScopeToken() argument 1555 bool Result = TryAnnotateTypeOrScopeToken(EnteringContext, NeedType); in TryAnnotateTypeOrScopeToken() 1580 (!TryAnnotateTypeOrScopeToken(EnteringContext, NeedType) && in TryAnnotateTypeOrScopeToken() 1640 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext)) in TryAnnotateTypeOrScopeToken() 1643 return TryAnnotateTypeOrScopeTokenAfterScopeSpec(EnteringContext, NeedType, in TryAnnotateTypeOrScopeToken() 1650 bool Parser::TryAnnotateTypeOrScopeTokenAfterScopeSpec(bool EnteringContext, in TryAnnotateTypeOrScopeTokenAfterScopeSpec() argument [all …]
|
| D | ParseDecl.cpp | 2341 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level); in DiagnoseMissingSemiAfterTagDefinition() local 2347 TryAnnotateCXXScopeToken(EnteringContext)) { in DiagnoseMissingSemiAfterTagDefinition() 2461 bool EnteringContext = (DSContext == DSC_class || DSContext == DSC_top_level); in ParseDeclarationSpecifiers() local 2541 if (TryAnnotateCXXScopeToken(EnteringContext)) { in ParseDeclarationSpecifiers() 2740 if (TryAnnotateCXXScopeToken(EnteringContext)) { in ParseDeclarationSpecifiers() 3133 EnteringContext, DSContext, Attributes); in ParseDeclarationSpecifiers() 4580 bool EnteringContext = D.getContext() == Declarator::FileContext || in ParseDeclaratorInternal() local 4583 ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext); in ParseDeclaratorInternal() 4773 bool EnteringContext = D.getContext() == Declarator::FileContext || in ParseDirectDeclarator() local 4776 EnteringContext); in ParseDirectDeclarator()
|
| D | ParseDeclCXX.cpp | 1124 bool EnteringContext, DeclSpecContext DSC, in ParseClassSpecifier() argument 1214 if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(), EnteringContext)) in ParseClassSpecifier()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/ |
| D | Parser.h | 502 bool TryAnnotateTypeOrScopeToken(bool EnteringContext = false, 504 bool TryAnnotateTypeOrScopeTokenAfterScopeSpec(bool EnteringContext, 508 bool TryAnnotateCXXScopeToken(bool EnteringContext = false); 1338 bool EnteringContext, IdentifierInfo &II, 1343 bool EnteringContext, 2147 AccessSpecifier AS, bool EnteringContext, 2177 bool EnteringContext, 2181 bool ParseUnqualifiedIdOperator(CXXScopeSpec &SS, bool EnteringContext, 2226 bool ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/ |
| D | ExternalSemaSource.h | 203 bool EnteringContext, in CorrectTypo() argument
|
| D | MultiplexExternalSemaSource.h | 340 bool EnteringContext,
|
| D | Sema.h | 2463 bool EnteringContext = false); 2511 bool EnteringContext = false, 4010 bool EnteringContext); 4329 bool EnteringContext = false); 4359 bool EnteringContext, 4391 bool EnteringContext, 4405 bool EnteringContext); 4439 bool EnteringContext); 5048 QualType ObjectType, bool EnteringContext, 5056 bool EnteringContext, [all …]
|