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

References

tools/lldb/include/lldb/Utility/UUID.h
   55   void Clear() { m_bytes.clear(); }
   59   llvm::ArrayRef<uint8_t> GetBytes() const { return m_bytes; }
   62   bool IsValid() const { return !m_bytes.empty(); }
  102     return LHS.m_bytes == RHS.m_bytes;
  102     return LHS.m_bytes == RHS.m_bytes;
  108     return LHS.m_bytes < RHS.m_bytes;
  108     return LHS.m_bytes < RHS.m_bytes;
tools/lldb/source/Utility/UUID.cpp
  117     if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; }))