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

  /external/lldb/include/lldb/Symbol/
Type.h 315 class TypeAndOrName
318 TypeAndOrName ();
319 TypeAndOrName (lldb::TypeSP &type_sp);
320 TypeAndOrName (const char *type_str);
321 TypeAndOrName (const TypeAndOrName &rhs);
322 TypeAndOrName (ConstString &type_const_string);
324 TypeAndOrName &
325 operator= (const TypeAndOrName &rhs);
328 operator==(const TypeAndOrName &other) const
    [all...]
  /external/lldb/source/Symbol/
Type.cpp 801 TypeAndOrName::TypeAndOrName () : m_type_sp(), m_type_name()
806 TypeAndOrName::TypeAndOrName (TypeSP &in_type_sp) : m_type_sp(in_type_sp)
812 TypeAndOrName::TypeAndOrName (const char *in_type_str) : m_type_name(in_type_str)
816 TypeAndOrName::TypeAndOrName (const TypeAndOrName &rhs) : m_type_sp (rhs.m_type_sp), m_type_name (rhs.m_type_name)
821 TypeAndOrName::TypeAndOrName (ConstString &in_type_const_string) : m_type_name (in_type_const_string
    [all...]

Completed in 975 milliseconds