Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp127 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetClassName() local
128 const char *paren_pos = strchr(class_start, '('); in GetClassName()
130 m_class.SetCStringWithLength(class_start, paren_pos - class_start); in GetClassName()
137 m_class.SetCStringWithLength(class_start, space_pos - class_start); in GetClassName()
153 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetClassNameWithCategory() local
156 m_class_category.SetCStringWithLength(class_start, in GetClassNameWithCategory()
157 space_pos - class_start); in GetClassNameWithCategory()
192 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetCategory() local
193 const char *open_paren_pos = strchr(class_start, '('); in GetCategory()