HomeSort by relevance Sort by last modified time
    Searched refs:isLive (Results 1 - 14 of 14) sorted by null

  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 49 bool isLive(const Stmt *S) const;
50 bool isLive(const VarDecl *D) const;
78 bool isLive(const CFGBlock *B, const VarDecl *D);
84 bool isLive(const Stmt *S, const VarDecl *D);
88 bool isLive(const Stmt *Loc, const Stmt *StmtVal);
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 311 if (isLive(sym))
325 return isLive(SR->getSymbol());
328 return isLive(VR, true);
346 bool SymbolReaper::isLive(SymbolRef sym) {
353 if (isLive(derived->getParentSymbol())) {
384 bool SymbolReaper::isLive(const Stmt *ExprVal) const {
385 return LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, ExprVal);
388 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{
393 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))
Environment.cpp 182 if (SymReaper.isLive(BlkExpr)) {
RegionStore.cpp     [all...]
  /external/clang/lib/Analysis/
LiveVariables.cpp 223 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const {
227 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const {
279 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) {
280 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
283 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) {
284 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
287 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) {
288 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 465 bool isLive(SymbolRef sym);
467 bool isLive(const Stmt *ExprVal) const;
468 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 149 if (!Live.isLive(VD) &&
269 if (!Live.isLive(V) && V->getAttr<UnusedAttr>() == 0) {
MacOSKeychainAPIChecker.cpp 532 if (SR.isLive(I->first))
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 58 // The logic in isLive() is too much for it.
193 /// isLive - Is RegNo currently live in the stack?
194 bool isLive(unsigned RegNo) const {
202 if (!isLive(i))
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
StylesSidebarPane.js 326 if (!property.isLive)
370 if (!property.isLive)
463 if (property.isLive && property.name in WebInspector.StylesSidebarPane.InheritedProperties)
    [all...]
CSSStyleModel.js 484 get isLive()
  /packages/apps/Browser/src/com/android/browser/
Controller.java     [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp     [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 513 milliseconds