HomeSort by relevance Sort by last modified time
    Searched refs:m_encoding_uid (Results 1 - 2 of 2) sorted by null

  /external/lldb/source/Symbol/
Type.cpp 95 m_encoding_uid (encoding_uid),
112 m_encoding_uid (LLDB_INVALID_UID),
130 m_encoding_uid (rhs.m_encoding_uid),
181 else if (m_encoding_uid != LLDB_INVALID_UID)
183 s->Printf(", type_uid = 0x%8.8" PRIx64, m_encoding_uid);
228 else if (m_encoding_uid != LLDB_INVALID_UID)
230 *s << ", type_data = " << (uint64_t)m_encoding_uid;
309 if (m_encoding_type == NULL && m_encoding_uid != LLDB_INVALID_UID)
310 m_encoding_type = m_symbol_file->ResolveTypeUID(m_encoding_uid);
    [all...]
  /external/lldb/include/lldb/Symbol/
Type.h 61 eEncodingIsUID, ///< This type is the type whose UID is m_encoding_uid
62 eEncodingIsConstUID, ///< This type is the type whose UID is m_encoding_uid with the const qualifier added
63 eEncodingIsRestrictUID, ///< This type is the type whose UID is m_encoding_uid with the restrict qualifier added
64 eEncodingIsVolatileUID, ///< This type is the type whose UID is m_encoding_uid with the volatile qualifier added
65 eEncodingIsTypedefUID, ///< This type is pointer to a type whose UID is m_encoding_uid
66 eEncodingIsPointerUID, ///< This type is pointer to a type whose UID is m_encoding_uid
67 eEncodingIsLValueReferenceUID, ///< This type is L value reference to a type whose UID is m_encoding_uid
68 eEncodingIsRValueReferenceUID, ///< This type is R value reference to a type whose UID is m_encoding_uid
289 lldb::user_id_t m_encoding_uid; member in class:lldb_private::Type

Completed in 2268 milliseconds