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

1 2 3 4 5

  /external/clang/include/clang/Analysis/Analyses/
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/
SymbolManager.cpp 414 if (isLive(sym))
428 return isLive(SR->getSymbol());
431 return isLive(VR, true);
452 bool SymbolReaper::isLive(SymbolRef sym) {
468 KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
480 KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
483 KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
486 KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
487 isLive(cast<SymSymExpr>(sym)->getRHS());
490 KnownLive = isLive(cast<SymbolCast>(sym)->getOperand())
    [all...]
Environment.cpp 170 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
RegionStore.cpp     [all...]
  /build/blueprint/
live_tracker.go 185 _, isLive := l.variables[v]
186 if isLive {
189 return isLive
196 _, isLive := l.rules[r]
197 if isLive {
200 return isLive
context.go     [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkAllocationCallbackUtil.cpp 335 bool isLive;
338 : isLive (false)
343 , isLive (isLive_)
410 if (!allocations[slotNdx].isLive)
412 allocations[slotNdx].isLive = true;
442 if (!origSlot.isLive)
445 origSlot.isLive = true; // Mark live to suppress further errors
455 allocations[origSlotNdx].isLive = false;
464 if (!allocations[slotNdx].isLive)
466 allocations[slotNdx].isLive = true
    [all...]
  /external/clang/lib/Analysis/
LiveVariables.cpp 119 bool LiveVariables::LivenessValues::isLive(const Stmt *S) const {
123 bool LiveVariables::LivenessValues::isLive(const VarDecl *D) const {
177 bool LiveVariables::isLive(const CFGBlock *B, const VarDecl *D) {
178 return isAlwaysAlive(D) || getImpl(impl).blocksEndToLiveness[B].isLive(D);
181 bool LiveVariables::isLive(const Stmt *S, const VarDecl *D) {
182 return isAlwaysAlive(D) || getImpl(impl).stmtsToLiveness[S].isLive(D);
185 bool LiveVariables::isLive(const Stmt *Loc, const Stmt *S) {
186 return getImpl(impl).stmtsToLiveness[Loc].isLive(S);
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) {
148 if (Live.isLive(D))
219 if (!isLive(Live, VD) &&
347 if (!isLive(Live, V) &&
MacOSKeychainAPIChecker.cpp 558 if (SR.isLive(I->first))
  /packages/apps/TV/src/com/android/tv/search/
LocalSearchProvider.java 119 row.add(result.isLive ? LIVE_CONTENTS : NO_LIVE_CONTENTS);
166 public boolean isLive;
DataManagerSearch.java 228 result.isLive = true;
239 result.isLive = true;
TvProviderSearch.java 239 result.isLive = true;
381 result.isLive = true;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 512 bool isLive(SymbolRef sym);
514 bool isLive(const Stmt *ExprVal, const LocationContext *LCtx) const;
515 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
  /external/v8/tools/turbolizer/
node.js 22 isLive: function() {
graph-view.js 478 graph.nodes.filter(function(n) { if (!n.isLive()) n.visible = false; })
744 .classed("live", function(n) { return n.isLive(); })
745 .classed("dead", function(n) { return !n.isLive(); })
  /frameworks/support/tv-provider/tests/src/android/support/media/tv/
PreviewProgramTest.java 353 assertEquals(programA.isLive(), programB.isLive());
WatchNextProgramTest.java 332 assertEquals(programA.isLive(), programB.isLive());
  /external/swiftshader/third_party/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...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletableFuture.java 448 abstract boolean isLive();
491 if (q.isLive()) {
501 if (p.isLive())
542 final boolean isLive() { return dep != null; }
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 64 // The logic in isLive() is too much for it.
181 /// isLive - Is RegNo currently live in the stack?
182 bool isLive(unsigned RegNo) const {
430 if (Reg >= X86::FP0 && Reg <= X86::FP6 && isLive(Reg-X86::FP0)) {
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]
  /frameworks/support/tv-provider/src/android/support/media/tv/
BasePreviewProgram.java 206 public boolean isLive() {
  /prebuilts/sdk/current/support/tv-provider/
android-support-tv-provider.jar 
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java     [all...]

Completed in 1014 milliseconds

1 2 3 4 5