Home
last modified time | relevance | path

Searched refs:IdentInfo (Results 1 – 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
HDMPIFunctionClassifier.cpp203 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-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
HDMPIFunctionClassifier.h28 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-11-stable/contrib/llvm-project/clang/lib/Lex/
HDPragma.cpp604 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok); in HandlePragmaPushMacro() local
605 if (!IdentInfo) return; in HandlePragmaPushMacro()
608 MacroInfo *MI = getMacroInfo(IdentInfo); in HandlePragmaPushMacro()
616 PragmaPushMacroInfo[IdentInfo].push_back(MI); in HandlePragmaPushMacro()
629 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok); in HandlePragmaPopMacro() local
630 if (!IdentInfo) return; in HandlePragmaPopMacro()
634 PragmaPushMacroInfo.find(IdentInfo); in HandlePragmaPopMacro()
637 if (MacroInfo *MI = getMacroInfo(IdentInfo)) { in HandlePragmaPopMacro()
640 appendMacroDirective(IdentInfo, AllocateUndefMacroDirective(MessageLoc)); in HandlePragmaPopMacro()
648 appendDefMacroDirective(IdentInfo, MacroToReInstall, MessageLoc); in HandlePragmaPopMacro()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
HDParseExpr.cpp2380 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
2396 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExpr.cpp14047 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
14086 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf()
14097 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, in BuildBuiltinOffsetOf()
HDTreeTransform.h9645 Comp.U.IdentInfo = ON.getFieldName(); in TransformOffsetOfExpr()
9646 if (!Comp.U.IdentInfo) in TransformOffsetOfExpr()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h4967 IdentifierInfo *IdentInfo; member