| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | EnterExpressionEvaluationContext.h | 20 Sema &Actions; 25 Sema &Actions, Sema::ExpressionEvaluationContext NewContext, 27 Sema::ExpressionEvaluationContextRecord::ExpressionKind ExprContext = 28 Sema::ExpressionEvaluationContextRecord::EK_Other, 36 Sema &Actions, Sema::ExpressionEvaluationContext NewContext, 37 Sema::ReuseLambdaContextDecl_t, 38 Sema::ExpressionEvaluationContextRecord::ExpressionKind ExprContext = 39 Sema::ExpressionEvaluationContextRecord::EK_Other) 42 NewContext, Sema::ReuseLambdaContextDecl, ExprContext); in Actions() 46 EnterExpressionEvaluationContext(Sema &Actions, InitListTag, [all …]
|
| H A D | TemplateInstCallback.h | 28 virtual void initialize(const Sema &TheSema) = 0; 31 virtual void finalize(const Sema &TheSema) = 0; 34 virtual void atTemplateBegin(const Sema &TheSema, 35 const Sema::CodeSynthesisContext &Inst) = 0; 38 virtual void atTemplateEnd(const Sema &TheSema, 39 const Sema::CodeSynthesisContext &Inst) = 0; 44 const Sema &TheSema) { in initialize() 53 const Sema &TheSema) { in finalize() 62 const Sema &TheSema, in atTemplateBegin() 63 const Sema::CodeSynthesisContext &Inst) { in atTemplateBegin() [all …]
|
| H A D | SemaBase.h | 34 class Sema; variable 38 SemaBase(Sema &S); 40 Sema &SemaRef; 57 Sema &SemaRef; 61 ImmediateDiagBuilder(DiagnosticBuilder &DB, Sema &SemaRef, unsigned DiagID) in ImmediateDiagBuilder() 63 ImmediateDiagBuilder(DiagnosticBuilder &&DB, Sema &SemaRef, unsigned DiagID) in ImmediateDiagBuilder() 129 const FunctionDecl *Fn, Sema &S); 200 Sema &S;
|
| H A D | Lookup.h | 157 Sema &SemaRef, const DeclarationNameInfo &NameInfo, 158 Sema::LookupNameKind LookupKind, 172 Sema &SemaRef, DeclarationName Name, SourceLocation NameLoc, 173 Sema::LookupNameKind LookupKind, 275 Sema::LookupNameKind getLookupKind() const { in getLookupKind() 372 static bool isVisible(Sema &SemaRef, NamedDecl *D); 374 static bool isReachable(Sema &SemaRef, NamedDecl *D); 376 static bool isAcceptable(Sema &SemaRef, NamedDecl *D, in isAcceptable() 377 Sema::AcceptableKind Kind) { in isAcceptable() 378 return Kind == Sema::AcceptableKind::Visible ? isVisible(SemaRef, D) in isAcceptable() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFixedPoint.h | 165 APFixedPoint(const APInt &Val, const FixedPointSemantics &Sema) 166 : Val(Val, !Sema.isSigned()), Sema(Sema) { 167 assert(Val.getBitWidth() == Sema.getWidth() && 171 APFixedPoint(uint64_t Val, const FixedPointSemantics &Sema) 172 : APFixedPoint(APInt(Sema.getWidth(), Val, Sema.isSigned(), 174 Sema) {} 177 APFixedPoint(const FixedPointSemantics &Sema) : APFixedPoint(0, Sema) {} 179 APSInt getValue() const { return APSInt(Val, !Sema.isSigned()); } 180 inline unsigned getWidth() const { return Sema.getWidth(); } 181 inline unsigned getScale() const { return Sema.getScale(); } [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | CommentSema.cpp | 28 Sema::Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr, in Sema() function in clang::comments::Sema 36 void Sema::setDecl(const Decl *D) { in setDecl() 45 ParagraphComment *Sema::actOnParagraphComment( in actOnParagraphComment() 50 BlockCommandComment *Sema::actOnBlockCommandStart( in actOnBlockCommandStart() 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, in actOnBlockCommandArgs() 67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, in actOnBlockCommandFinish() 80 ParamCommandComment *Sema::actOnParamCommandStart( in actOnParamCommandStart() 98 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) { in checkFunctionDeclVerbatimLine() 131 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment) { in checkContainerDeclVerbatimLine() 173 void Sema::checkContainerDecl(const BlockCommandComment *Comment) { in checkContainerDecl() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAttr.cpp | 29 Sema::PragmaStackSentinelRAII::PragmaStackSentinelRAII(Sema &S, in PragmaStackSentinelRAII() 43 Sema::PragmaStackSentinelRAII::~PragmaStackSentinelRAII() { in ~PragmaStackSentinelRAII() 54 void Sema::AddAlignmentAttributesForRecord(RecordDecl *RD) { in AddAlignmentAttributesForRecord() 90 void Sema::AddMsStructLayoutForRecord(RecordDecl *RD) { in AddMsStructLayoutForRecord() 112 void Sema::inferGslPointerAttribute(NamedDecl *ND, in inferGslPointerAttribute() 151 void Sema::inferGslPointerAttribute(TypedefNameDecl *TD) { in inferGslPointerAttribute() 168 void Sema::inferGslOwnerPointerAttribute(CXXRecordDecl *Record) { in inferGslOwnerPointerAttribute() 220 void Sema::inferLifetimeBoundAttribute(FunctionDecl *FD) { in inferLifetimeBoundAttribute() 277 void Sema::inferLifetimeCaptureByAttribute(FunctionDecl *FD) { in inferLifetimeCaptureByAttribute() 322 void Sema::inferNullableClassAttribute(CXXRecordDecl *CRD) { in inferNullableClassAttribute() [all …]
|
| H A D | SemaAccess.cpp | 35 bool Sema::SetMemberAccessSpecifier(NamedDecl *MemberDecl, in SetMemberAccessSpecifier() 229 const CXXRecordDecl *resolveInstanceContext(Sema &S) const { in resolveInstanceContext() 349 static bool MightInstantiateTo(Sema &S, DeclContext *Context, in MightInstantiateTo() 369 static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) { in MightInstantiateTo() 380 static bool MightInstantiateTo(Sema &S, in MightInstantiateTo() 418 static bool MightInstantiateTo(Sema &S, in MightInstantiateTo() 426 static AccessResult MatchesFriend(Sema &S, in MatchesFriend() 442 static AccessResult MatchesFriend(Sema &S, in MatchesFriend() 457 static AccessResult MatchesFriend(Sema &S, in MatchesFriend() 510 static AccessResult MatchesFriend(Sema &S, in MatchesFriend() [all …]
|
| H A D | SemaConcept.cpp | 68 ExprResult recreateBinOp(Sema &SemaRef, ExprResult LHS) const { in recreateBinOp() 72 ExprResult recreateBinOp(Sema &SemaRef, ExprResult LHS, in recreateBinOp() 90 bool Sema::CheckConstraintExpression(const Expr *ConstraintExpression, in CheckConstraintExpression() 162 Sema &SemaRef; 164 SatisfactionStackRAII(Sema &SemaRef, const NamedDecl *ND, in SatisfactionStackRAII() 180 DiagRecursiveConstraintEval(Sema &S, llvm::FoldingSetNodeID &ID, in DiagRecursiveConstraintEval() 204 Sema &S, const Expr *AtomicExpr, const NamedDecl *Template, in EvaluateAtomicConstraint() 208 S, Sema::ExpressionEvaluationContext::ConstantEvaluated, in EvaluateAtomicConstraint() 209 Sema::ReuseLambdaContextDecl); in EvaluateAtomicConstraint() 215 Sema::InstantiatingTemplate Inst( in EvaluateAtomicConstraint() [all …]
|
| H A D | Sema.cpp | 83 SourceLocation Sema::getLocForEndOfToken(SourceLocation Loc, unsigned Offset) { in getLocForEndOfToken() 88 Sema::getRangeForNextToken(SourceLocation Loc, bool IncludeMacros, in getRangeForNextToken() 109 ModuleLoader &Sema::getModuleLoader() const { return PP.getModuleLoader(); } in getModuleLoader() 112 Sema::getDarwinSDKInfoForAvailabilityChecking(SourceLocation Loc, in getDarwinSDKInfoForAvailabilityChecking() 123 DarwinSDKInfo *Sema::getDarwinSDKInfoForAvailabilityChecking() { in getDarwinSDKInfoForAvailabilityChecking() 139 IdentifierInfo *Sema::InventAbbreviatedTemplateParameterTypeName( in InventAbbreviatedTemplateParameterTypeName() 152 PrintingPolicy Sema::getPrintingPolicy(const ASTContext &Context, in getPrintingPolicy() 172 void Sema::ActOnTranslationUnitScope(Scope *S) { in ActOnTranslationUnitScope() 181 Sema *S = nullptr; 186 void set(Sema &S) { this->S = &S; } in set() [all …]
|
| H A D | SemaLookup.cpp | 97 Sema &SemaRef; 105 UnqualUsingDirectiveSet(Sema &SemaRef) : SemaRef(SemaRef) {} in UnqualUsingDirectiveSet() 213 static inline unsigned getIDNS(Sema::LookupNameKind NameKind, in getIDNS() 218 case Sema::LookupObjCImplicitSelfParam: in getIDNS() 219 case Sema::LookupOrdinaryName: in getIDNS() 220 case Sema::LookupRedeclarationWithLinkage: in getIDNS() 221 case Sema::LookupLocalFriendName: in getIDNS() 222 case Sema::LookupDestructorName: in getIDNS() 233 case Sema::LookupOperatorName: in getIDNS() 240 case Sema::LookupTagName: in getIDNS() [all …]
|
| H A D | SemaStmt.cpp | 48 StmtResult Sema::ActOnExprStmt(ExprResult FE, bool DiscardedValue) { in ActOnExprStmt() 65 StmtResult Sema::ActOnExprStmtError() { in ActOnExprStmtError() 70 StmtResult Sema::ActOnNullStmt(SourceLocation SemiLoc, in ActOnNullStmt() 75 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc, in ActOnDeclStmt() 85 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) { in ActOnForEachDeclStmt() 131 static bool DiagnoseUnusedComparison(Sema &S, const Expr *E) { in DiagnoseUnusedComparison() 202 static bool DiagnoseNoDiscard(Sema &S, const NamedDecl *OffendingDecl, in DiagnoseNoDiscard() 234 void DiagnoseUnused(Sema &S, const Expr *E, std::optional<unsigned> DiagID) { in DiagnoseUnused() 415 void Sema::DiagnoseUnusedExprResult(const Stmt *S, unsigned DiagID) { in DiagnoseUnusedExprResult() 426 void Sema::ActOnStartOfCompoundStmt(bool IsStmtExpr) { in ActOnStartOfCompoundStmt() [all …]
|
| H A D | SemaCoroutine.cpp | 32 static LookupResult lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD, in lookupMember() 35 LookupResult LR(S, DN, Loc, Sema::LookupMemberName); in lookupMember() 43 static bool lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD, in lookupMember() 52 static QualType lookupPromiseType(Sema &S, const FunctionDecl *FD, in lookupPromiseType() 105 Sema::LookupOrdinaryName); in lookupPromiseType() 138 static QualType lookupCoroutineHandleType(Sema &S, QualType PromiseType, in lookupCoroutineHandleType() 147 Loc, Sema::LookupOrdinaryName); in lookupCoroutineHandleType() 181 static bool isValidCoroutineContext(Sema &S, SourceLocation Loc, in isValidCoroutineContext() 249 ExprResult Sema::BuildOperatorCoawaitCall(SourceLocation Loc, Expr *E, in BuildOperatorCoawaitCall() 256 static ExprResult buildOperatorCoawaitCall(Sema &SemaRef, Scope *S, in buildOperatorCoawaitCall() [all …]
|
| H A D | SemaStmtAttr.cpp | 24 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleFallThroughAttr() 51 static Attr *handleSuppressAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleSuppressAttr() 74 static Attr *handleLoopHintAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleLoopHintAttr() 199 CallExprFinder(Sema &S, const Stmt *St) : Inherited(S.Context) { Visit(St); } in CallExprFinder() 218 static Attr *handleNoMergeAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleNoMergeAttr() 231 static Attr *handleNoConvergentAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleNoConvergentAttr() 245 static bool CheckStmtInlineAttr(Sema &SemaRef, const Stmt *OrigSt, in CheckStmtInlineAttr() 287 bool Sema::CheckNoInlineAttr(const Stmt *OrigSt, const Stmt *CurSt, in CheckNoInlineAttr() 292 bool Sema::CheckAlwaysInlineAttr(const Stmt *OrigSt, const Stmt *CurSt, in CheckAlwaysInlineAttr() 297 static Attr *handleNoInlineAttr(Sema &S, Stmt *St, const ParsedAttr &A, in handleNoInlineAttr() [all …]
|
| H A D | SemaTypeTraits.cpp | 29 static CXXMethodDecl *LookupSpecialMemberFromXValue(Sema &SemaRef, in LookupSpecialMemberFromXValue() 116 static bool hasSuitableConstructorForRelocation(Sema &SemaRef, in hasSuitableConstructorForRelocation() 131 Sema &SemaRef, const CXXRecordDecl *D, bool AllowUserDefined) { in hasSuitableMoveAssignmentOperatorForRelocation() 155 static bool IsDefaultMovable(Sema &SemaRef, const CXXRecordDecl *D) { in IsDefaultMovable() 179 static bool IsEligibleForTrivialRelocation(Sema &SemaRef, in IsEligibleForTrivialRelocation() 215 static bool IsEligibleForReplacement(Sema &SemaRef, const CXXRecordDecl *D) { in IsEligibleForReplacement() 239 Sema::CheckCXX2CRelocatableAndReplaceable(const CXXRecordDecl *D) { in CheckCXX2CRelocatableAndReplaceable() 314 bool Sema::IsCXXTriviallyRelocatableType(const CXXRecordDecl &RD) { in IsCXXTriviallyRelocatableType() 324 bool Sema::IsCXXTriviallyRelocatableType(QualType Type) { in IsCXXTriviallyRelocatableType() 348 static bool IsCXXReplaceableType(Sema &S, const CXXRecordDecl *RD) { in IsCXXReplaceableType() [all …]
|
| H A D | SemaDeclAttr.cpp | 89 SourceLocation Sema::getAttrLoc(const AttributeCommonInfo &CI) { in getAttrLoc() 97 static bool checkPositiveIntArgument(Sema &S, const AttrInfo &AI, const Expr *Expr, in checkPositiveIntArgument() 115 bool Sema::checkStringLiteralArgumentAttr(const AttributeCommonInfo &CI, in checkStringLiteralArgumentAttr() 132 bool Sema::checkStringLiteralArgumentAttr(const ParsedAttr &AL, unsigned ArgNum, in checkStringLiteralArgumentAttr() 172 static bool threadSafetyCheckIsSmartPointer(Sema &S, const RecordType* RT) { in threadSafetyCheckIsSmartPointer() 208 static bool threadSafetyCheckIsPointer(Sema &S, const Decl *D, in threadSafetyCheckIsPointer() 259 static bool checkRecordTypeForCapability(Sema &S, QualType Ty) { in checkRecordTypeForCapability() 277 static bool checkRecordTypeForScopedCapability(Sema &S, QualType Ty) { in checkRecordTypeForScopedCapability() 302 static bool typeHasCapability(Sema &S, QualType Ty) { in typeHasCapability() 312 static bool isCapabilityExpr(Sema &S, const Expr *Ex) { in isCapabilityExpr() [all …]
|
| H A D | SemaTemplateInstantiate.cpp | 122 getEnclosingTypeAliasTemplateDecl(Sema &SemaRef) { in getEnclosingTypeAliasTemplateDecl() 124 if (CSC.Kind != Sema::CodeSynthesisContext::SynthesisKind:: in getEnclosingTypeAliasTemplateDecl() 269 Response HandleFunction(Sema &SemaRef, const FunctionDecl *Function, in HandleFunction() 318 if (Inst.Kind == Sema::CodeSynthesisContext::ConstraintsCheck && in HandleFunction() 346 Response HandleFunctionTemplateDecl(Sema &SemaRef, in HandleFunctionTemplateDecl() 401 Response HandleRecordDecl(Sema &SemaRef, const CXXRecordDecl *Rec, in HandleRecordDecl() 483 MultiLevelTemplateArgumentList Sema::getTemplateInstantiationArgs( in getTemplateInstantiationArgs() 559 bool Sema::CodeSynthesisContext::isInstantiationRecord() const { in isInstantiationRecord() 600 Sema::InstantiatingTemplate::InstantiatingTemplate( in InstantiatingTemplate() 601 Sema &SemaRef, CodeSynthesisContext::SynthesisKind Kind, in InstantiatingTemplate() [all …]
|
| H A D | SemaDeclCXX.cpp | 73 Sema &S; 77 CheckDefaultArgumentVisitor(Sema &S, const Expr *DefaultArg) in CheckDefaultArgumentVisitor() 183 Sema::ImplicitExceptionSpecification::CalledDecl(SourceLocation CallLoc, in CalledDecl() 251 void Sema::ImplicitExceptionSpecification::CalledStmt(Stmt *S) { in CalledStmt() 280 ExprResult Sema::ConvertParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, in ConvertParamDefaultArgument() 308 void Sema::SetParamDefaultArgument(ParmVarDecl *Param, Expr *Arg, in SetParamDefaultArgument() 327 Sema::ActOnParamDefaultArgument(Decl *param, SourceLocation EqualLoc, in ActOnParamDefaultArgument() 371 void Sema::ActOnParamUnparsedDefaultArgument(Decl *param, in ActOnParamUnparsedDefaultArgument() 382 void Sema::ActOnParamDefaultArgumentError(Decl *param, SourceLocation EqualLoc, in ActOnParamDefaultArgumentError() 401 void Sema::CheckExtraCXXDefaultArguments(Declarator &D) { in CheckExtraCXXDefaultArguments() [all …]
|
| H A D | SemaTemplateVariadic.cpp | 349 bool Sema::isUnexpandedParameterPackPermitted() { in isUnexpandedParameterPackPermitted() 359 Sema::DiagnoseUnexpandedParameterPacks(SourceLocation Loc, in DiagnoseUnexpandedParameterPacks() 449 bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc, in DiagnoseUnexpandedParameterPack() 465 bool Sema::DiagnoseUnexpandedParameterPack(Expr *E, in DiagnoseUnexpandedParameterPack() 490 bool Sema::DiagnoseUnexpandedParameterPackInRequiresExpr(RequiresExpr *RE) { in DiagnoseUnexpandedParameterPackInRequiresExpr() 513 bool Sema::DiagnoseUnexpandedParameterPack(const CXXScopeSpec &SS, in DiagnoseUnexpandedParameterPack() 530 bool Sema::DiagnoseUnexpandedParameterPack(const DeclarationNameInfo &NameInfo, in DiagnoseUnexpandedParameterPack() 566 bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc, in DiagnoseUnexpandedParameterPack() 580 bool Sema::DiagnoseUnexpandedParameterPack(TemplateArgumentLoc Arg, in DiagnoseUnexpandedParameterPack() 593 void Sema::collectUnexpandedParameterPacks(TemplateArgument Arg, in collectUnexpandedParameterPacks() [all …]
|
| H A D | SemaModule.cpp | 25 static void checkModuleImportContext(Sema &S, Module *M, in checkModuleImportContext() 167 Sema::DeclGroupPtrTy 168 Sema::ActOnGlobalModuleFragmentDecl(SourceLocation ModuleLoc) { in ActOnGlobalModuleFragmentDecl() 189 void Sema::HandleStartOfHeaderUnit() { in HandleStartOfHeaderUnit() 231 static bool DiagReservedModuleName(Sema &S, const IdentifierInfo *II, in DiagReservedModuleName() 263 Sema::DeclGroupPtrTy 264 Sema::ActOnModuleDecl(SourceLocation StartLoc, SourceLocation ModuleLoc, in ActOnModuleDecl() 514 Sema::DeclGroupPtrTy 515 Sema::ActOnPrivateModuleFragmentDecl(SourceLocation ModuleLoc, in ActOnPrivateModuleFragmentDecl() 577 DeclResult Sema::ActOnModuleImport(SourceLocation StartLoc, in ActOnModuleImport() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFixedPoint.cpp | 129 APFixedPoint APFixedPoint::getMax(const FixedPointSemantics &Sema) { in getMax() argument 130 bool IsUnsigned = !Sema.isSigned(); in getMax() 131 auto Val = APSInt::getMaxValue(Sema.getWidth(), IsUnsigned); in getMax() 132 if (IsUnsigned && Sema.hasUnsignedPadding()) in getMax() 134 return APFixedPoint(Val, Sema); in getMax() 137 APFixedPoint APFixedPoint::getMin(const FixedPointSemantics &Sema) { in getMin() argument 138 auto Val = APSInt::getMinValue(Sema.getWidth(), !Sema.isSigned()); in getMin() 139 return APFixedPoint(Val, Sema); in getMin() 142 APFixedPoint APFixedPoint::getEpsilon(const FixedPointSemantics &Sema) { in getEpsilon() argument 143 APSInt Val(Sema.getWidth(), !Sema.isSigned()); in getEpsilon() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Parser.h | 67 class Sema { 69 virtual ~Sema(); 137 class RegistrySema : public Parser::Sema { 184 parseMatcherExpression(StringRef &MatcherCode, Sema *S, 187 parseMatcherExpression(StringRef &MatcherCode, Sema *S, Diagnostics *Error) { in parseMatcherExpression() 207 static bool parseExpression(StringRef &Code, Sema *S, 210 static bool parseExpression(StringRef &Code, Sema *S, VariantValue *Value, in parseExpression() 231 completeExpression(StringRef &Code, unsigned CompletionOffset, Sema *S, 234 completeExpression(StringRef &Code, unsigned CompletionOffset, Sema *S) { in completeExpression() 247 Parser(CodeTokenizer *Tokenizer, Sema *S, [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | InterpreterUtils.h | 38 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E); 40 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr); 42 Sema::DeclGroupPtrTy CreateDGPtrFrom(Sema &S, Decl *D); 44 NamespaceDecl *LookupNamespace(Sema &S, llvm::StringRef Name, 47 NamedDecl *LookupNamed(Sema &S, llvm::StringRef Name,
|
| H A D | InterpreterUtils.cpp | 22 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, Expr *E) { in CStyleCastPtrExpr() 34 Expr *CStyleCastPtrExpr(Sema &S, QualType Ty, uintptr_t Ptr) { in CStyleCastPtrExpr() 39 Sema::DeclGroupPtrTy CreateDGPtrFrom(Sema &S, Decl *D) { in CreateDGPtrFrom() 42 Sema::DeclGroupPtrTy DeclGroupPtr = S.BuildDeclaratorGroup(DeclsInGroup); in CreateDGPtrFrom() 46 NamespaceDecl *LookupNamespace(Sema &S, llvm::StringRef Name, in LookupNamespace() 50 Sema::LookupNestedNameSpecifierName); in LookupNamespace() 71 NamedDecl *LookupNamed(Sema &S, llvm::StringRef Name, in LookupNamed() 74 LookupResult R(S, DName, SourceLocation(), Sema::LookupOrdinaryName, in LookupNamed()
|
| /freebsd/lib/clang/libclang/ |
| H A D | Makefile | 572 SRCS_MIN+= Sema/AnalysisBasedWarnings.cpp 573 SRCS_MIN+= Sema/CheckExprLifetime.cpp 574 SRCS_MIN+= Sema/CodeCompleteConsumer.cpp 575 SRCS_MIN+= Sema/DeclSpec.cpp 576 SRCS_MIN+= Sema/DelayedDiagnostic.cpp 577 SRCS_MIN+= Sema/HLSLBuiltinTypeDeclBuilder.cpp 578 SRCS_MIN+= Sema/HLSLExternalSemaSource.cpp 579 SRCS_MIN+= Sema/HeuristicResolver.cpp 580 SRCS_MIN+= Sema/IdentifierResolver.cpp 581 SRCS_MIN+= Sema/JumpDiagnostics.cpp [all …]
|