HomeSort by: relevance | last modified time | path
    Searched defs:Escaped (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
TrigramIndex.cpp 34 bool Escaped = false;
36 if (!Escaped) {
39 Escaped = true;
53 if (Escaped && Char >= '1' && Char <= '9') {
58 Escaped = false;
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CalledOnceCheck.cpp 106 // We try to be lenient and trust users. Another kind `Escaped` reflects
108 // should always think of `Escaped` as the best possible option.
113 // we don't want to reuse `Escaped` and, thus, have another kind `NoReturn`.
136 // Escaped | K == K
137 // Escaped mirrors other statuses after joins.
150 // Escaped marks situations when marked parameter escaped into
152 Escaped = 0x1, /* 0001 */
827 // Escaped or DefinitelyCalled
894 // Otherwise, we mark this parameter as escaped, which can b
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 140 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
151 llvm::SmallPtrSet<const VarDecl *, 20> &escaped,
154 Escaped(escaped), currentBlock(nullptr) {}
197 if (Escaped.count(V))
484 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
488 // escaped.
504 Escaped.insert(VD);
507 // Treat local variables captured by reference in C++ lambdas as escaped.
525 Escaped.insert(VD)
    [all...]
FuchsiaHandleChecker.cpp 25 // +-----------------> Allocated +---------> Escaped <--+
78 // escaped state, it also needs to be open.
115 enum class Kind { MaybeAllocated, Allocated, Released, Escaped, Unowned } K;
126 bool isEscaped() const { return K == Kind::Escaped; }
143 return HandleState(Kind::Escaped, nullptr);
165 CASE(Kind::Escaped)
205 const InvalidatedSymbols &Escaped,
481 // is escaped.
573 ProgramStateRef State, const InvalidatedSymbols &Escaped,
601 if (Escaped.count(I.first) && !UnEscaped.count(I.first)
    [all...]
MallocChecker.cpp 140 Escaped
158 bool isEscaped() const { return K == Escaped; }
180 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily());
196 CASE(Escaped)
334 const InvalidatedSymbols &Escaped,
338 const InvalidatedSymbols &Escaped,
663 const InvalidatedSymbols &Escaped,
1411 // invocations of trivial constructors as escaped would cause too great of
1802 // If the pointer is allocated or escaped, but we are now trying to free it,
3068 const InvalidatedSymbols &Escaped,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 1589 bool Escaped = false;
1593 if (!Escaped && i + 1 < Input.size() &&
1601 Escaped = !Escaped;
1605 if (!Escaped && IsSingle == (Input[i] == '\'')) {
1609 Escaped = false;
1612 Escaped = false;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineCallAndReturn.cpp 606 SmallVector<std::pair<SVal, SVal>, 8> Escaped;
610 Escaped.clear();
623 Escaped.emplace_back(loc::MemRegionVal(MR), State->getSVal(MR, Pointee));
627 State = processPointerEscapedOnBind(State, Escaped, I->getLocationContext(),
ExprEngine.cpp 2788 SmallVector<SVal, 8> Escaped;
2793 Escaped.push_back(LocAndVal.second);
2802 Escaped.push_back(LocAndVal.second);
2815 Escaped.push_back(LocAndVal.second);
2818 if (Escaped.empty())
2821 return escapeValues(State, Escaped, Kind, Call);

Completed in 25 milliseconds