Searched refs:m_triple (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h338 return !m_triple.getVendorName().empty();
341 bool TripleOSWasSpecified() const { return !m_triple.getOSName().empty(); }
344 return m_triple.hasEnvironment();
434 llvm::Triple &GetTriple() { return m_triple; }
439 const llvm::Triple &GetTriple() const { return m_triple; }
514 llvm::Triple m_triple; member in class:lldb_private::ArchSpec
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp575 m_triple = llvm::Triple();
752 switch (m_triple.getArch()) {
763 return m_triple.isOSDarwin() || m_triple.isOSWindows();
767 return m_triple.isOSDarwin();
787 m_triple = triple;
897 m_triple.setArchName(llvm::StringRef(core_def->name));
899 m_triple.setVendor(llvm::Triple::Apple);
905 // information. NB: don't call m_triple.setOS
912 m_triple
[all...]

Completed in 170 milliseconds