Lines Matching refs:full
104 llvm::StringRef full = m_full; in GetClassName() local
105 const size_t class_start_pos = (full.front() == '[' ? 1 : 2); in GetClassName()
106 const size_t paren_pos = full.find('(', class_start_pos); in GetClassName()
109 return full.substr(class_start_pos, paren_pos - class_start_pos); in GetClassName()
112 const size_t space_pos = full.find(' ', class_start_pos); in GetClassName()
113 return full.substr(class_start_pos, space_pos - class_start_pos); in GetClassName()
117 llvm::StringRef full = m_full; in GetClassNameWithCategory() local
118 const size_t class_start_pos = (full.front() == '[' ? 1 : 2); in GetClassNameWithCategory()
119 const size_t space_pos = full.find(' ', class_start_pos); in GetClassNameWithCategory()
120 return full.substr(class_start_pos, space_pos - class_start_pos); in GetClassNameWithCategory()
124 llvm::StringRef full = m_full; in GetSelector() local
125 const size_t space_pos = full.find(' '); in GetSelector()
128 const size_t closing_bracket = full.find(']', space_pos); in GetSelector()
129 return full.substr(space_pos + 1, closing_bracket - space_pos - 1); in GetSelector()
133 llvm::StringRef full = m_full; in GetCategory() local
134 const size_t open_paren_pos = full.find('('); in GetCategory()
135 const size_t close_paren_pos = full.find(')'); in GetCategory()
141 return full.substr(open_paren_pos + 1, in GetCategory()
146 llvm::StringRef full = m_full; in GetFullNameWithoutCategory() local
147 const size_t open_paren_pos = full.find('('); in GetFullNameWithoutCategory()
148 const size_t close_paren_pos = full.find(')'); in GetFullNameWithoutCategory()