Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DType.cpp117 m_symbol_file(symbol_file), m_context(context), m_encoding_type(nullptr), in Type()
127 m_symbol_file(nullptr), m_context(nullptr), m_encoding_type(nullptr), in Type()
137 m_encoding_type(rhs.m_encoding_type), m_encoding_uid(rhs.m_encoding_uid), in Type()
304 if (m_encoding_type == nullptr && m_encoding_uid != LLDB_INVALID_UID) in GetEncodingType()
305 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetEncodingType()
306 return m_encoding_type; in GetEncodingType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h203 void SetEncodingType(Type *encoding_type) { m_encoding_type = encoding_type; } in SetEncodingType()
218 Type *m_encoding_type; variable