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

  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersChecker.cpp 57 const InvalidatedSymbols &Escaped,
156 const InvalidatedSymbols &Escaped,
159 for (InvalidatedSymbols::const_iterator I = Escaped.begin(),
160 E = Escaped.end();
CheckerDocumentation.cpp 276 /// \param Escaped The list of escaped symbols.
279 /// \param Kind How the symbols have escaped.
282 const InvalidatedSymbols &Escaped,
293 const InvalidatedSymbols &Escaped,
SimpleStreamChecker.cpp 83 const InvalidatedSymbols &Escaped,
254 // If the pointer we are tracking escaped, do not track the symbol as
258 const InvalidatedSymbols &Escaped,
266 for (InvalidatedSymbols::const_iterator I = Escaped.begin(),
267 E = Escaped.end();
271 // The symbol escaped. Optimistically, assume that the corresponding file
DeadStoresChecker.cpp 130 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
141 llvm::SmallPtrSet<const VarDecl *, 20> &escaped)
143 Escaped(escaped), currentBlock(nullptr) {}
166 if (Escaped.count(V))
398 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
402 // escaped.
418 Escaped.insert(VD);
421 // Treat local variables captured by reference in C++ lambdas as escaped.
439 Escaped.insert(VD)
    [all...]
MallocChecker.cpp 63 Escaped
80 bool isEscaped() const { return K == Escaped; }
104 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily());
120 CASE(Escaped)
213 const InvalidatedSymbols &Escaped,
217 const InvalidatedSymbols &Escaped,
346 const InvalidatedSymbols &Escaped,
    [all...]
StreamChecker.cpp 30 enum Kind { Opened, Closed, OpenFailed, Escaped } K;
38 //bool isEscaped() const { return K == Escaped; }
50 return StreamState(Escaped, s);
BasicObjCFoundationChecks.cpp 854 const InvalidatedSymbols &Escaped,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 336 const InvalidatedSymbols &Escaped,
343 Escaped,
348 for (InvalidatedSymbols::const_iterator I = Escaped.begin(),
349 E = Escaped.end(); I != E; ++I)
379 const InvalidatedSymbols &Escaped,
388 for (InvalidatedSymbols::const_iterator I = Escaped.begin(),
389 E = Escaped.end(); I != E; ++I)
CheckerManager.h 349 /// \param Escaped The list of escaped symbols.
358 const InvalidatedSymbols &Escaped,
450 const InvalidatedSymbols &Escaped,
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 212 // otherwise escaped, but this is a local analysis).
272 // Track whether a block is reachable after an alloca has escaped. Blocks that
274 // escaped alloca, since that is how the block began.
278 ESCAPED
282 // We propagate the fact that an alloca has escaped from block to successor.
287 // We may enter a block and visit it thinking that no alloca has escaped yet,
297 VisitType Escaped = UNESCAPED;
301 Escaped = ESCAPED;
315 // Note that this runs whether we know an alloca has escaped or not. I
    [all...]
  /external/v8/src/compiler/
graph-visualizer.cc 60 class Escaped {
62 explicit Escaped(const std::ostringstream& os,
66 friend std::ostream& operator<<(std::ostream& os, const Escaped& e) {
106 os_ << "{\"id\":" << SafeId(node) << ",\"label\":\"" << Escaped(label, "\"")
133 os_ << ",\"type\":\"" << Escaped(type_out, "\"") << "\"";
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 517 const InvalidatedSymbols &Escaped,
530 State = PointerEscapeCheckers[i](State, Escaped, Call, Kind, ETraits);

Completed in 369 milliseconds