Searched refs:IdentInfo (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
H A D | MPIFunctionClassifier.cpp | 203 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const { in isMPIType() 204 return llvm::is_contained(MPIType, IdentInfo); in isMPIType() 208 const IdentifierInfo *IdentInfo) const { in isNonBlockingType() 209 return llvm::is_contained(MPINonBlockingTypes, IdentInfo); in isNonBlockingType() 214 const IdentifierInfo *IdentInfo) const { in isPointToPointType() 215 return llvm::is_contained(MPIPointToPointTypes, IdentInfo); in isPointToPointType() 220 const IdentifierInfo *IdentInfo) const { in isCollectiveType() 221 return llvm::is_contained(MPICollectiveTypes, IdentInfo); in isCollectiveType() 225 const IdentifierInfo *IdentInfo) const { in isCollToColl() 226 return llvm::is_contained(MPICollToCollTypes, IdentInfo); in isCollToColl() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
H A D | MPIFunctionClassifier.h | 28 bool isMPIType(const IdentifierInfo *const IdentInfo) const; 29 bool isNonBlockingType(const IdentifierInfo *const IdentInfo) const; 32 bool isPointToPointType(const IdentifierInfo *const IdentInfo) const; 35 bool isCollectiveType(const IdentifierInfo *const IdentInfo) const; 36 bool isCollToColl(const IdentifierInfo *const IdentInfo) const; 37 bool isScatterType(const IdentifierInfo *const IdentInfo) const; 38 bool isGatherType(const IdentifierInfo *const IdentInfo) const; 39 bool isAllgatherType(const IdentifierInfo *const IdentInfo) const; 40 bool isAlltoallType(const IdentifierInfo *const IdentInfo) const; 41 bool isReduceType(const IdentifierInfo *const IdentInfo) const; [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Pragma.cpp | 629 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok); in HandlePragmaPushMacro() local 630 if (!IdentInfo) return; in HandlePragmaPushMacro() 633 MacroInfo *MI = getMacroInfo(IdentInfo); in HandlePragmaPushMacro() 641 PragmaPushMacroInfo[IdentInfo].push_back(MI); in HandlePragmaPushMacro() 654 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok); in HandlePragmaPopMacro() local 655 if (!IdentInfo) return; in HandlePragmaPopMacro() 659 PragmaPushMacroInfo.find(IdentInfo); in HandlePragmaPopMacro() 662 if (MacroInfo *MI = getMacroInfo(IdentInfo)) { in HandlePragmaPopMacro() 665 appendMacroDirective(IdentInfo, AllocateUndefMacroDirective(MessageLoc)); in HandlePragmaPopMacro() 673 appendDefMacroDirective(IdentInfo, MacroToReInstall, MessageLoc); in HandlePragmaPopMacro() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseDeclCXX.cpp | 754 IdentifierInfo *IdentInfo = Tok.getIdentifierInfo(); in ParseUsingDeclaration() local 758 *IdentInfo, IdentLoc, getCurScope(), &SS, /*isClassName=*/true, in ParseUsingDeclaration() 764 getCurScope(), AS, UsingLoc, UELoc, IdentLoc, *IdentInfo, Type, &SS); in ParseUsingDeclaration()
|
H A D | ParseExpr.cpp | 2778 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression() 2794 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 15769 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf() 15807 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf() 15822 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd); in BuildBuiltinOffsetOf()
|
H A D | TreeTransform.h | 11977 Comp.U.IdentInfo = ON.getFieldName(); in TransformOffsetOfExpr() 11978 if (!Comp.U.IdentInfo) in TransformOffsetOfExpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | Sema.h | 7077 IdentifierInfo *IdentInfo; member
|