HomeSort by: relevance | last modified time | path
    Searched refs:IdentInfo (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Checkers/
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...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIFunctionClassifier.cpp 203 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const {
204 return llvm::is_contained(MPIType, IdentInfo);
208 const IdentifierInfo *IdentInfo) const {
209 return llvm::is_contained(MPINonBlockingTypes, IdentInfo);
214 const IdentifierInfo *IdentInfo) const {
215 return llvm::is_contained(MPIPointToPointTypes, IdentInfo);
220 const IdentifierInfo *IdentInfo) const {
221 return llvm::is_contained(MPICollectiveTypes, IdentInfo);
225 const IdentifierInfo *IdentInfo) const {
226 return llvm::is_contained(MPICollToCollTypes, IdentInfo);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp 609 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok);
610 if (!IdentInfo) return;
612 // Get the MacroInfo associated with IdentInfo.
613 MacroInfo *MI = getMacroInfo(IdentInfo);
621 PragmaPushMacroInfo[IdentInfo].push_back(MI);
634 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok);
635 if (!IdentInfo) return;
639 PragmaPushMacroInfo.find(IdentInfo);
641 // Forget the MacroInfo currently associated with IdentInfo.
642 if (MacroInfo *MI = getMacroInfo(IdentInfo)) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExpr.cpp 2525 Comps.back().U.IdentInfo = Tok.getIdentifierInfo();
2541 Comps.back().U.IdentInfo = Tok.getIdentifierInfo();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 15113 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
15152 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
15163 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
TreeTransform.h 10410 Comp.U.IdentInfo = ON.getFieldName();
10411 if (!Comp.U.IdentInfo)
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 5480 IdentifierInfo *IdentInfo;

Completed in 105 milliseconds