Searched refs:isLive (Results 1 - 15 of 15) sorted by relevance

/external/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h49 bool isLive(const Stmt *S) const;
50 bool isLive(const VarDecl *D) const;
80 bool isLive(const CFGBlock *B, const VarDecl *D);
86 bool isLive(const Stmt *S, const VarDecl *D);
90 bool isLive(const Stmt *Loc, const Stmt *StmtVal);
/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()))
H A DEnvironment.cpp225 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
H A DRegionStore.cpp1896 if (SymReaper.isLive(VR))
1903 if (SymReaper.isLive(SR->getSymbol()))
1991 if (SymReaper.isLive(SR->getSymbol())) {
/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/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) {
H A DMacOSKeychainAPIChecker.cpp581 if (SR.isLive(I->first))
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h595 bool isLive(SymbolRef sym);
597 bool isLive(const Stmt *ExprVal, const LocationContext *LCtx) const;
598 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp57 // The logic in isLive() is too much for it.
194 /// isLive - Is RegNo currently live in the stack?
195 bool isLive(unsigned RegNo) const {
203 if (!isLive(i))
1330 assert(isLive(SrcFP) && "Cannot copy dead register");
1362 assert(!isLive(DstFP) && "Cannot copy ST to live FP register");
1366 assert(isLive(SrcFP) && "Scratch holding ST is dead");
1383 assert(isLive(SrcFP) && "Cannot copy dead register");
1640 if (isLive(FPReg))
/external/webkit/Source/WebCore/inspector/front-end/
H A DStylesSidebarPane.js326 if (!property.isLive)
370 if (!property.isLive)
463 if (property.isLive && property.name in WebInspector.StylesSidebarPane.InheritedProperties)
791 var isShorthand = !!(property.isLive && (shorthand || shorthandNames[property.name]));
H A DCSSStyleModel.js484 get isLive()
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java1566 if (map.isLive(e, now)) {
2049 assertTrue(map.isLive(entry, ticker.read()));
2088 assertTrue(map.isLive(entry, ticker.read()));
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapMakerInternalMapTest.java1043 if (map.isLive(e)) {
/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 338 milliseconds