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

  /external/clang/include/clang/Analysis/Analyses/
LiveVariables.h 36 llvm::ImmutableSet<const VarDecl *> liveDecls;
41 : liveStmts(nullptr), liveDecls(nullptr) {}
44 llvm::ImmutableSet<const VarDecl *> LiveDecls)
45 : liveStmts(LiveStmts), liveDecls(LiveDecls) {}
  /external/clang/lib/Analysis/
LiveVariables.cpp 124 return liveDecls.contains(D);
152 DSetRefA(valsA.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory()),
153 DSetRefB(valsB.liveDecls.getRootWithoutRetain(), DSetFact.getTreeFactory());
166 return liveStmts == V.liveStmts && liveDecls == V.liveDecls;
285 val.liveDecls = LV.DSetFact.add(val.liveDecls,
349 val.liveDecls = LV.DSetFact.remove(val.liveDecls, VD);
363 val.liveDecls = LV.DSetFact.add(val.liveDecls, VD)
    [all...]

Completed in 196 milliseconds