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

  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 48 Function *RFn = R.getFunction(Name);
49 if (LFn && RFn)
50 Engine.diff(LFn, RFn);
51 else if (!LFn && !RFn)
DifferenceEngine.cpp 662 if (Function *RFn = R->getFunction(LFn->getName()))
663 Queue.push_back(std::make_pair(LFn, RFn));
669 Function *RFn = &*I;
670 if (!LNames.count(RFn->getName()))
671 logf("function %r exists only in right module") << RFn;
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
llvm-diff.cpp 51 Function *RFn = R->getFunction(Name);
52 if (LFn && RFn)
53 Engine.diff(LFn, RFn);
54 else if (!LFn && !RFn)
DifferenceEngine.cpp 657 if (Function *RFn = R->getFunction(LFn->getName()))
658 Queue.push_back(std::make_pair(LFn, RFn));
664 Function *RFn = &*I;
665 if (!LNames.count(RFn->getName()))
666 logf("function %r exists only in right module") << RFn;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-diff/
llvm-diff.cpp 48 Function *RFn = R.getFunction(Name);
49 if (LFn && RFn)
50 Engine.diff(LFn, RFn);
51 else if (!LFn && !RFn)
DifferenceEngine.cpp 693 if (Function *RFn = R->getFunction(LFn->getName()))
694 Queue.push_back(std::make_pair(LFn, RFn));
700 Function *RFn = &*I;
701 if (!LNames.count(RFn->getName()))
702 logf("function %r exists only in right module") << RFn;
  /external/libcxx/test/std/utilities/meta/meta.rel/
is_invocable.pass.cpp 45 using RFn = int(Tag::*)(int) &&;
51 static_assert(std::is_invocable<RFn, Tag&&, int>::value, "");
52 static_assert(!std::is_invocable<RFn, Tag&, int>::value, "");
66 static_assert(!std::is_invocable<RFn, T, int>::value, "");
80 static_assert(!std::is_invocable<RFn, T, int>::value, "");

Completed in 426 milliseconds