/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 | 407 if (isLive(sym)) in maybeDead() 421 return isLive(SR->getSymbol()); in isLiveRegion() 424 return isLive(VR, true); in isLiveRegion() 442 bool SymbolReaper::isLive(SymbolRef sym) { in isLive() function in SymbolReaper 458 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol()); in isLive() 470 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS()); in isLive() 473 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS()); in isLive() 476 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) && in isLive() 477 isLive(cast<SymSymExpr>(sym)->getRHS()); in isLive() 480 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand()); in isLive() [all …]
|
D | Environment.cpp | 196 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { in removeDeadBindings()
|
D | RegionStore.cpp | 2054 if (SymReaper.isLive(VR)) in VisitAddedToCluster() 2061 if (SymReaper.isLive(SR->getSymbol())) in VisitAddedToCluster() 2139 if (SymReaper.isLive(SR->getSymbol())) { in UpdatePostponed()
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 135 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { in isLive() function in LiveVariables::LivenessValues 139 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { in isLive() function in LiveVariables::LivenessValues 193 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { in isLive() function in LiveVariables 194 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive() 197 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { in isLive() function in LiveVariables 198 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive() 201 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { in isLive() function in LiveVariables 202 return getImpl(impl).stmtsToLiveness[Loc].isLive(S); in isLive()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 142 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() function in __anone0b70ff90211::DeadStoreObs 143 if (Live.isLive(D)) in isLive() 213 if (!isLive(Live, VD) && in CheckVarDecl() 339 if (!isLive(Live, V) && V->getAttr<UnusedAttr>() == 0) { in observeStmt()
|
D | MacOSKeychainAPIChecker.cpp | 557 if (SR.isLive(I->first)) in checkDeadSymbols()
|
/external/llvm/lib/CodeGen/ |
D | RegisterPressure.cpp | 493 bool isLive = LiveRegs.contains(Reg); in advance() local 494 if (!isLive) in advance() 506 if (lastUse && isLive) { in advance() 510 else if (!lastUse && !isLive) in advance()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | SymbolManager.h | 594 bool isLive(SymbolRef sym); 596 bool isLive(const Stmt *ExprVal, const LocationContext *LCtx) const; 597 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):
|