reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ExecutionEngine/JITSymbol.h
  265     GetAddress = std::move(Other.GetAddress);
  299         GetAddress = nullptr;
include/llvm/Support/type_traits.h
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
lib/ExecutionEngine/Orc/Core.cpp
  320   NotifyComplete = SymbolsResolvedCallback();
  331   NotifyComplete = SymbolsResolvedCallback();
tools/clang/include/clang/Lex/Preprocessor.h
 1008     OnToken = std::move(F);
tools/clang/tools/extra/clangd/ClangdLSPServer.cpp
  210           ReplyHandler = std::move(ReplyCallbacks[Index].second);
  220       ReplyHandler = [&ID](llvm::Expected<llvm::json::Value> Result) {
tools/clang/tools/extra/clangd/Threading.cpp
   93         Action = nullptr;
unittests/ADT/FunctionExtrasTest.cpp
   26   Sum2 = std::move(Sum3);
   29   Sum2 = unique_function<int(int, int)>([](int A, int B) { return A + B; });
   33   *&Sum2 = std::move(Sum2);
   36   Sum2 = unique_function<int(int, int)>();
   81   Tmp = std::move(C1);
   86   Tmp = std::move(C2);
   91   Tmp = std::move(C3);
   96   Tmp = std::move(C4);
  101   Tmp = std::move(C5);
usr/include/c++/7.4.0/bits/stl_pair.h
  397 	second = std::forward<second_type>(__p.second);