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

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MoveChecker.cpp 1 // MoveChecker.cpp - Check use of moved-from objects. - C++ ---------------===//
9 // This defines checker which checks for potential misuses of a moved-from
10 // object. That means method calls on the object or copying it in moved-from
32 enum Kind { Moved, Reported } K;
37 bool isMoved() const { return K == Moved; }
40 static RegionState getMoved() { return RegionState(Moved); }
88 // STL smart pointers are automatically re-initialized to null when moved
307 OS << " is reset to null when moved from";
318 OS << " is moved";
409 OS << "Method called on moved-from object"
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 794 std::vector<NewArchiveMember> Moved;
825 addChildMember(Moved, Child, /*FlattenArchive=*/Thin);
828 addMember(Moved, *MemberI);
853 for (auto &M : Moved) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 91 // taking the address of a basic block moved to another function is illegal
530 bool Moved = moveOrIgnoreLifetimeMarkers(MarkerInfo);
531 if (Moved) {
1039 /// of allocas which will be moved from the caller function into the extracted
1590 // Remove @llvm.assume calls that will be moved to the new function from the
1793 // that were previously in the old function, but that have now been moved

Completed in 19 milliseconds