Searched refs:IdentInfo (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/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 …]
|
| /netbsd-src/external/apache2/llvm/dist/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 …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | Pragma.cpp | 609 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok); in HandlePragmaPushMacro() local 610 if (!IdentInfo) return; in HandlePragmaPushMacro() 613 MacroInfo *MI = getMacroInfo(IdentInfo); in HandlePragmaPushMacro() 621 PragmaPushMacroInfo[IdentInfo].push_back(MI); in HandlePragmaPushMacro() 634 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok); in HandlePragmaPopMacro() local 635 if (!IdentInfo) return; in HandlePragmaPopMacro() 639 PragmaPushMacroInfo.find(IdentInfo); in HandlePragmaPopMacro() 642 if (MacroInfo *MI = getMacroInfo(IdentInfo)) { in HandlePragmaPopMacro() 645 appendMacroDirective(IdentInfo, AllocateUndefMacroDirective(MessageLoc)); in HandlePragmaPopMacro() 653 appendDefMacroDirective(IdentInfo, MacroToReInstall, MessageLoc); in HandlePragmaPopMacro() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseExpr.cpp | 2525 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression() 2541 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 15113 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf() 15152 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf() 15163 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, in BuildBuiltinOffsetOf()
|
| H A D | TreeTransform.h | 10410 Comp.U.IdentInfo = ON.getFieldName(); in TransformOffsetOfExpr() 10411 if (!Comp.U.IdentInfo) in TransformOffsetOfExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 5480 IdentifierInfo *IdentInfo; member
|