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

Declarations

include/llvm/ExecutionEngine/Orc/Core.h
  609   Expected<SymbolFlagsMap> lookupFlags(const SymbolNameSet &Names);

References

lib/ExecutionEngine/Orc/Core.cpp
  684   auto Flags = SourceJD.lookupFlags(Symbols);
  716   auto Flags = SourceJD.lookupFlags(Names);
unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
  231   auto SymbolFlags = cantFail(JD.lookupFlags(Names));
  256   EXPECT_THAT_ERROR(JD.lookupFlags({Foo}).takeError(), Failed<StringError>())
  349   auto Flags = cantFail(JD.lookupFlags({Foo, Bar, Baz}));
unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp
   27         auto FlagsMap = cantFail(JD.lookupFlags(Symbols));