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

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFGStmtMap.cpp 21 typedef llvm::DenseMap<const Stmt*, CFGBlock*> SMap;
22 static SMap *AsMap(void *m) { return (SMap*) m; }
27 SMap *SM = AsMap(M);
33 SMap::iterator I = SM->find(X);
48 static void Accumulate(SMap &SM, CFGBlock *B) {
81 SMap *SM = new SMap();
ThreadSafetyCommon.cpp 72 auto It = SMap.find(S);
73 if (It != SMap.end())
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 466 SMap.insert(std::make_pair(S, E));
495 StatementMap SMap;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 2000 llvm::SmallPtrSet<const ObjCMethodDecl *, 8> &SMap) {
2001 // Check to see if we have a corresponding selector in SMap and with the
2003 auto I = llvm::find_if(SMap, [&](const ObjCMethodDecl *x) {
2011 if (I == SMap.end() &&
SemaCodeComplete.cpp 1115 ShadowMap &SMap = ShadowMaps.back();
1117 ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
1118 if (NamePos != SMap.end()) {
1197 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());

Completed in 31 milliseconds