std::string AppleObjCTypeEncodingParser::ReadQuotedString(lldb_utility::StringLexer& type) { StreamString buffer; while (type.HasAtLeast(1) && type.Peek() != '"') buffer.Printf("%c",type.Next()); StringLexer::Character next = type.Next(); assert (next == '"'); return buffer.GetString(); }
uint32_t AppleObjCTypeEncodingParser::ReadNumber(lldb_utility::StringLexer &type) { uint32_t total = 0; while (type.HasAtLeast(1) && isdigit(type.Peek())) total = 10 * total + (type.Next() - '0'); return total; }
std::string AppleObjCTypeEncodingParser::ReadStructName(lldb_utility::StringLexer &type) { StreamString buffer; while (type.HasAtLeast(1) && type.Peek() != '=') buffer.Printf("%c", type.Next()); return buffer.GetString(); }