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

/external/clang/include/clang/Analysis/Analyses/
H A DLiveVariables.h47 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/
H A DSymbolManager.cpp402 if (isLive(sym))
416 return isLive(SR->getSymbol());
419 return isLive(VR, true);
440 bool SymbolReaper::isLive(SymbolRef sym) { function in class:SymbolReaper
456 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
468 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
471 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
474 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
475 isLive(cast<SymSymExpr>(sym)->getRHS());
478 KnownLive = isLive(cas
489 SymbolReaper::isLive(const Stmt *ExprVal, const LocationContext *ELCtx) const { function in class:SymbolReaper
508 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ function in class:SymbolReaper
[all...]
H A DEnvironment.cpp169 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
H A DRegionStore.cpp2205 if (SymReaper.isLive(VR))
2212 if (SymReaper.isLive(SR->getSymbol()))
2293 if (SymReaper.isLive(SR->getSymbol())) {
/external/clang/lib/Analysis/
H A DLiveVariables.cpp119 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const { function in class:LiveVariables::LivenessValues
123 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const { function in class:LiveVariables::LivenessValues
177 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) { function in class:LiveVariables
178 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
181 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) { function in class:LiveVariables
182 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
185 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) { function in class:LiveVariables
186 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { function in class:__anon1315::DeadStoreObs
148 if (Live.isLive(D))
219 if (!isLive(Live, VD) &&
345 if (!isLive(Live, V) &&
H A DMacOSKeychainAPIChecker.cpp568 if (SR.isLive(I->first))
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h594 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/
H A DRegisterPressure.cpp584 bool isLive = LiveRegs.contains(Reg); local
585 if (!isLive)
597 if (lastUse && isLive) {
601 else if (!lastUse && !isLive)
H A DRegisterCoalescer.cpp1104 bool isLive; local
1106 isLive = false;
1111 isLive = true;
1116 isLive = DstLI.liveAt(UseIdx);
1117 if (isLive)
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp64 // The logic in isLive() is too much for it.
178 /// isLive - Is RegNo currently live in the stack?
179 bool isLive(unsigned RegNo) const {
425 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) {
1319 assert(isLive(SrcFP) && "Cannot copy dead register");
1514 if (isLive(FPReg))
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java1652 if (map.isLive(e, now)) {
2135 assertTrue(map.isLive(entry, ticker.read()));
2174 assertTrue(map.isLive(entry, ticker.read()));
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapMakerInternalMapTest.java1017 if (map.isLive(e)) {
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java1857 boolean isLive(ReferenceEntry<K, V> entry, long now) { method in class:LocalCache
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java1871 boolean isLive(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 589 milliseconds