Home
last modified time | relevance | path

Searched refs:m_encoding_type (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp148 m_symbol_file(symbol_file), m_context(context), m_encoding_type(nullptr), in Type()
334 if (m_encoding_type == nullptr && m_encoding_uid != LLDB_INVALID_UID) in GetEncodingType()
335 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetEncodingType()
336 return m_encoding_type; in GetEncodingType()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h204 void SetEncodingType(Type *encoding_type) { m_encoding_type = encoding_type; } in SetEncodingType()
219 Type *m_encoding_type = nullptr; variable