/external/clang/include/clang/Analysis/Analyses/ |
D | LiveVariables.h | 49 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/ |
D | SymbolManager.cpp | 425 if (isLive(sym)) in maybeDead() 439 return isLive(SR->getSymbol()); in isLiveRegion() 442 return isLive(VR, true); in isLiveRegion() 460 bool SymbolReaper::isLive(SymbolRef sym) { in isLive() function in SymbolReaper 467 if (isLive(derived->getParentSymbol())) { in isLive() 499 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const { in isLive() function in SymbolReaper 511 return LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, ExprVal); in isLive() 514 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ in isLive() function in SymbolReaper 523 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl())) in isLive()
|
D | Environment.cpp | 225 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { in removeDeadBindings()
|
D | RegionStore.cpp | 1896 if (SymReaper.isLive(VR)) in VisitAddedToCluster() 1903 if (SymReaper.isLive(SR->getSymbol())) in VisitAddedToCluster() 1991 if (SymReaper.isLive(SR->getSymbol())) { in UpdatePostponed()
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 125 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { in isLive() function in LiveVariables::LivenessValues 129 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { in isLive() function in LiveVariables::LivenessValues 183 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { in isLive() function in LiveVariables 184 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive() 187 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { in isLive() function in LiveVariables 188 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive() 191 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { in isLive() function in LiveVariables 192 return getImpl(impl).stmtsToLiveness[Loc].isLive(S); in isLive()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 143 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() function in __anon5b4b46d90211::DeadStoreObs 144 if (Live.isLive(D)) in isLive() 214 if (!isLive(Live, VD) && in CheckVarDecl() 340 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) { in observeStmt()
|
D | MacOSKeychainAPIChecker.cpp | 581 if (SR.isLive(I->first)) in checkDeadSymbols()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 595 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/ |
D | X86FloatingPoint.cpp | 195 bool isLive(unsigned RegNo) const { in isLive() function 203 if (!isLive(i)) in getScratchReg() 1330 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP() 1362 assert(!isLive(DstFP) && "Cannot copy ST to live FP register"); in handleSpecialFP() 1366 assert(isLive(SrcFP) && "Scratch holding ST is dead"); in handleSpecialFP() 1383 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP() 1640 if (isLive(FPReg)) in handleSpecialFP()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | StylesSidebarPane.js | 326 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]));
|
D | CSSStyleModel.js | 484 get isLive() getter in WebInspector.CSSProperty
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalCacheTest.java | 1566 if (map.isLive(e, now)) { in countLiveEntries() 2049 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterWrite() 2088 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterAccess()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 1043 if (map.isLive(e)) { in countLiveEntries()
|
/external/guava/guava/src/com/google/common/collect/ |
D | MapMakerInternalMap.java | 1921 boolean isLive(ReferenceEntry<K, V> entry) { in isLive() method in MapMakerInternalMap
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 1908 boolean isLive(ReferenceEntry<K, V> entry, long now) { in isLive() method in LocalCache
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2011-02-16 | 1155 (JSC::CollectorHeapIterator::isLive): Updated for new mark invariant: To 3273 (JSC::CollectorHeapIterator::isLive): 3282 two helper functions -- isValid() for "Am I past the end?" and isLive()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 14970 (WebInspector.CSSProperty.prototype.get isLive): 23987 (WebInspector.CSSProperty.prototype.get isLive):
|