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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp143 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { function in class:__anon3861::DeadStoreObs
144 if (Live.isLive(D))
214 if (!isLive(Live, VD) &&
340 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) {
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp425 if (isLive(sym))
439 return isLive(SR->getSymbol());
442 return isLive(VR, true);
460 bool SymbolReaper::isLive(SymbolRef sym) { function in class:SymbolReaper
467 if (isLive(derived->getParentSymbol())) {
499 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const { function in class:SymbolReaper
511 return LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, ExprVal);
514 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ function in class:SymbolReaper
523 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))
/external/clang/lib/Analysis/
H A DLiveVariables.cpp125 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { function in class:LiveVariables::LivenessValues
129 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { function in class:LiveVariables::LivenessValues
183 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { function in class:LiveVariables
184 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
187 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { function in class:LiveVariables
188 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
191 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { function in class:LiveVariables
192 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java1908 boolean isLive(ReferenceEntry<K, V> entry, long now) { method in class:LocalCache
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java1921 boolean isLive(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap

Completed in 113 milliseconds