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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
TrigramIndex.cpp 39 bool Escaped = false;
41 if (!Escaped) {
44 Escaped = true;
58 if (Escaped && Char >= '1' && Char <= '9') {
63 Escaped = false;
  /external/syzkaller/vendor/google.golang.org/api/googleapi/internal/uritemplates/
uritemplates.go 37 // pairWriter is a convenience struct which allows escaped and unescaped
40 escaped, unescaped bytes.Buffer
45 w.escaped.WriteString(s)
50 // escaped output.
54 w.escaped.Write(reserved.ReplaceAllFunc([]byte(s), pctEncode))
56 w.escaped.Write(unreserved.ReplaceAllFunc([]byte(s), pctEncode))
60 // Escaped returns the escaped string.
61 func (w *pairWriter) Escaped() string {
62 return w.escaped.String(
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
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))
400 llvm::SmallPtrSet<const VarDecl*, 20> Escaped;
404 // escaped.
420 Escaped.insert(VD);
423 // Treat local variables captured by reference in C++ lambdas as escaped.
441 Escaped.insert(VD)
    [all...]
StreamChecker.cpp 30 enum Kind { Opened, Closed, OpenFailed, Escaped } K;
38 //bool isEscaped() const { return K == Escaped; }
50 return StreamState(Escaped, s);
MallocChecker.cpp 64 Escaped
81 bool isEscaped() const { return K == Escaped; }
105 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily());
121 CASE(Escaped)
215 const InvalidatedSymbols &Escaped,
219 const InvalidatedSymbols &Escaped,
349 const InvalidatedSymbols &Escaped,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 144 // otherwise escaped, but this is a local analysis).
204 // Track whether a block is reachable after an alloca has escaped. Blocks that
206 // escaped alloca, since that is how the block began.
210 ESCAPED
214 // We propagate the fact that an alloca has escaped from block to successor.
219 // We may enter a block and visit it thinking that no alloca has escaped yet,
229 VisitType Escaped = UNESCAPED;
233 Escaped = ESCAPED;
247 // Note that this runs whether we know an alloca has escaped or not. I
    [all...]
  /external/clang/lib/Format/
Format.cpp     [all...]

Completed in 3388 milliseconds