Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIFunctionClassifier.cpp204 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const { in isMPIType()
205 return llvm::is_contained(MPIType, IdentInfo); in isMPIType()
209 const IdentifierInfo *IdentInfo) const { in isNonBlockingType()
210 return llvm::is_contained(MPINonBlockingTypes, IdentInfo); in isNonBlockingType()
215 const IdentifierInfo *IdentInfo) const { in isPointToPointType()
216 return llvm::is_contained(MPIPointToPointTypes, IdentInfo); in isPointToPointType()
221 const IdentifierInfo *IdentInfo) const { in isCollectiveType()
222 return llvm::is_contained(MPICollectiveTypes, IdentInfo); in isCollectiveType()
226 const IdentifierInfo *IdentInfo) const { in isCollToColl()
227 return llvm::is_contained(MPICollToCollTypes, IdentInfo); in isCollToColl()
[all …]
DMPIFunctionClassifier.h29 bool isMPIType(const IdentifierInfo *const IdentInfo) const;
30 bool isNonBlockingType(const IdentifierInfo *const IdentInfo) const;
33 bool isPointToPointType(const IdentifierInfo *const IdentInfo) const;
36 bool isCollectiveType(const IdentifierInfo *const IdentInfo) const;
37 bool isCollToColl(const IdentifierInfo *const IdentInfo) const;
38 bool isScatterType(const IdentifierInfo *const IdentInfo) const;
39 bool isGatherType(const IdentifierInfo *const IdentInfo) const;
40 bool isAllgatherType(const IdentifierInfo *const IdentInfo) const;
41 bool isAlltoallType(const IdentifierInfo *const IdentInfo) const;
42 bool isReduceType(const IdentifierInfo *const IdentInfo) const;
[all …]
/external/clang/lib/Lex/
DPragma.cpp565 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok); in HandlePragmaPushMacro() local
566 if (!IdentInfo) return; in HandlePragmaPushMacro()
569 MacroInfo *MI = getMacroInfo(IdentInfo); in HandlePragmaPushMacro()
577 PragmaPushMacroInfo[IdentInfo].push_back(MI); in HandlePragmaPushMacro()
590 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok); in HandlePragmaPopMacro() local
591 if (!IdentInfo) return; in HandlePragmaPopMacro()
595 PragmaPushMacroInfo.find(IdentInfo); in HandlePragmaPopMacro()
598 if (MacroInfo *MI = getMacroInfo(IdentInfo)) { in HandlePragmaPopMacro()
601 appendMacroDirective(IdentInfo, AllocateUndefMacroDirective(MessageLoc)); in HandlePragmaPopMacro()
609 appendDefMacroDirective(IdentInfo, MacroToReInstall, MessageLoc); in HandlePragmaPopMacro()
[all …]
/external/clang/lib/Parse/
DParseExpr.cpp2001 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
2017 Comps.back().U.IdentInfo = Tok.getIdentifierInfo(); in ParseBuiltinPrimaryExpression()
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp2868 auto *IdentInfo = &C.Idents.get(".omp_offloading.reg_unreg_var"); in createOffloadingBinaryDescriptorRegistration() local
2870 IdentInfo, C.CharTy); in createOffloadingBinaryDescriptorRegistration()
/external/clang/lib/Sema/
DSemaExpr.cpp11767 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd)); in BuildBuiltinOffsetOf()
11806 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); in BuildBuiltinOffsetOf()
11817 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, in BuildBuiltinOffsetOf()
DTreeTransform.h8394 Comp.U.IdentInfo = ON.getFieldName(); in TransformOffsetOfExpr()
8395 if (!Comp.U.IdentInfo) in TransformOffsetOfExpr()
/external/clang/include/clang/Sema/
DSema.h4083 IdentifierInfo *IdentInfo; member