Searched defs:Refs (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransProtectedScope.cpp27 SmallVectorImpl<DeclRefExpr *> &Refs; member in class:__anon796::LocalRefsCollector
31 : Refs(refs) { }
36 Refs.push_back(E);
H A DTransAutoreleasePool.cpp94 clearRefsIn(info.Dcl, info.Refs);
99 clearRefsIn(*scope.Begin, info.Refs);
100 clearRefsIn(*scope.End, info.Refs);
101 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
106 if (info.Refs.empty())
176 collectRefs(VD, S, info.Refs);
421 ExprSet Refs; member in struct:__anon790::AutoreleasePoolRewriter::PoolVarInfo
H A DTransforms.cpp225 ExprSet &Refs; member in class:__anon803::ReferenceClear
227 ReferenceClear(ExprSet &refs) : Refs(refs) { }
228 bool VisitDeclRefExpr(DeclRefExpr *E) { Refs.erase(E); return true; }
233 ExprSet &Refs; member in class:__anon803::ReferenceCollector
237 : Dcl(D), Refs(refs) { }
241 Refs.insert(E);
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp57 unsigned Refs; member in struct:__anon10412::DomainValue
104 DomainValue() : Refs(0) { clear(); }
182 if (DV) ++DV->Refs;
223 assert(dv->Refs == 0 && "Reference count wasn't cleared");
232 assert(DV->Refs && "Bad DomainValue");
233 if (--DV->Refs)
322 if (LiveRegs && dv->Refs > 1)
/external/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h122 /// both. The lattice goes from "NoModRef" to either Refs or Mods, then to
126 NoModRef = 0, Refs = 1, // Ref = bit 1 enumerator in enum:llvm::AliasSet::AccessType
156 bool isRef() const { return AccessTy & Refs; }

Completed in 146 milliseconds