/external/clang/include/clang/Analysis/Analyses/ |
D | LiveVariables.h | 47 bool isLive(const Stmt *S) const; 48 bool isLive(const VarDecl *D) const; 77 bool isLive(const CFGBlock *B, const VarDecl *D); 83 bool isLive(const Stmt *S, const VarDecl *D); 87 bool isLive(const Stmt *Loc, const Stmt *StmtVal);
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SymbolManager.cpp | 402 if (isLive(sym)) in maybeDead() 416 return isLive(SR->getSymbol()); in isLiveRegion() 419 return isLive(VR, true); in isLiveRegion() 440 bool SymbolReaper::isLive(SymbolRef sym) { in isLive() function in SymbolReaper 456 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol()); in isLive() 468 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS()); in isLive() 471 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS()); in isLive() 474 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) && in isLive() 475 isLive(cast<SymSymExpr>(sym)->getRHS()); in isLive() 478 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand()); in isLive() [all …]
|
D | Environment.cpp | 169 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { in removeDeadBindings()
|
D | RegionStore.cpp | 2205 if (SymReaper.isLive(VR)) in VisitAddedToCluster() 2212 if (SymReaper.isLive(SR->getSymbol())) in VisitAddedToCluster() 2293 if (SymReaper.isLive(SR->getSymbol())) { in UpdatePostponed()
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 119 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { in isLive() function in LiveVariables::LivenessValues 123 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { in isLive() function in LiveVariables::LivenessValues 177 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { in isLive() function in LiveVariables 178 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D); in isLive() 181 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { in isLive() function in LiveVariables 182 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D); in isLive() 185 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { in isLive() function in LiveVariables 186 return getImpl(impl).stmtsToLiveness[Loc].isLive(S); in isLive()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DeadStoresChecker.cpp | 147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { in isLive() function in __anon2d72c4130211::DeadStoreObs 148 if (Live.isLive(D)) in isLive() 219 if (!isLive(Live, VD) && in CheckVarDecl() 345 if (!isLive(Live, V) && in observeStmt()
|
D | MacOSKeychainAPIChecker.cpp | 568 if (SR.isLive(I->first)) in checkDeadSymbols()
|
/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/CodeGen/ |
D | RegisterPressure.cpp | 584 bool isLive = LiveRegs.contains(Reg); in advance() local 585 if (!isLive) in advance() 597 if (lastUse && isLive) { in advance() 601 else if (!lastUse && !isLive) in advance()
|
D | RegisterCoalescer.cpp | 1104 bool isLive; in eliminateUndefCopy() local 1106 isLive = false; in eliminateUndefCopy() 1111 isLive = true; in eliminateUndefCopy() 1116 isLive = DstLI.liveAt(UseIdx); in eliminateUndefCopy() 1117 if (isLive) in eliminateUndefCopy()
|
/external/llvm/lib/Target/X86/ |
D | X86FloatingPoint.cpp | 179 bool isLive(unsigned RegNo) const { in isLive() function 425 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) { in processBasicBlock() 1319 assert(isLive(SrcFP) && "Cannot copy dead register"); in handleSpecialFP() 1514 if (isLive(FPReg)) in handleSpecialFP()
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalCacheTest.java | 1652 if (map.isLive(e, now)) { in countLiveEntries() 2135 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterWrite() 2174 assertTrue(map.isLive(entry, ticker.read())); in testExpireAfterAccess()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 1017 if (map.isLive(e)) { in countLiveEntries()
|
/external/guava/guava/src/com/google/common/collect/ |
D | MapMakerInternalMap.java | 1871 boolean isLive(ReferenceEntry<K, V> entry) { in isLive() method in MapMakerInternalMap
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 1857 boolean isLive(ReferenceEntry<K, V> entry, long now) { in isLive() method in LocalCache
|
/external/owasp/sanitizer/lib/guava-libraries/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/distrib/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |