Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp114 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetClassName() local
115 const char *paren_pos = strchr(class_start, '('); in GetClassName()
117 m_class.SetCStringWithLength(class_start, paren_pos - class_start); in GetClassName()
124 m_class.SetCStringWithLength(class_start, space_pos - class_start); in GetClassName()
140 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetClassNameWithCategory() local
143 m_class_category.SetCStringWithLength(class_start, in GetClassNameWithCategory()
144 space_pos - class_start); in GetClassNameWithCategory()
179 const char *class_start = (full[0] == '[' ? full + 1 : full + 2); in GetCategory() local
180 const char *open_paren_pos = strchr(class_start, '('); in GetCategory()