Lines Matching refs:FormatEntity

81 using Definition = lldb_private::FormatEntity::Entry::Definition;
82 using Entry = FormatEntity::Entry;
83 using EntryType = FormatEntity::Entry::Type;
264 FormatEntity::Entry::Entry(llvm::StringRef s) in Entry()
268 FormatEntity::Entry::Entry(char ch) in Entry()
271 void FormatEntity::Entry::AppendChar(char ch) { in AppendChar()
278 void FormatEntity::Entry::AppendText(const llvm::StringRef &s) { in AppendText()
285 void FormatEntity::Entry::AppendText(const char *cstr) { in AppendText()
289 Status FormatEntity::Parse(const llvm::StringRef &format_str, Entry &entry) { in Parse()
297 case FormatEntity::Entry::Type::eee: \
300 const char *FormatEntity::Entry::TypeToCString(Type t) { in TypeToCString()
370 void FormatEntity::Entry::Dump(Stream &s, int depth) const { in Dump()
674 const FormatEntity::Entry &entry, ValueObject *valobj) { in DumpValue()
688 case FormatEntity::Entry::Type::ScriptVariable: in DumpValue()
692 case FormatEntity::Entry::Type::Variable: in DumpValue()
697 case FormatEntity::Entry::Type::ScriptVariableSynthetic: in DumpValue()
700 case FormatEntity::Entry::Type::VariableSynthetic: in DumpValue()
968 success &= FormatEntity::FormatStringRef( in DumpValue()
1005 const FormatEntity::Entry &entry, in FormatThreadExtendedInfoRecurse()
1045 bool FormatEntity::FormatStringRef(const llvm::StringRef &format_str, Stream &s, in FormatStringRef()
1052 FormatEntity::Entry root; in FormatStringRef()
1053 Status error = FormatEntity::Parse(format_str, root); in FormatStringRef()
1055 return FormatEntity::Format(root, s, sc, exe_ctx, addr, valobj, in FormatStringRef()
1062 bool FormatEntity::FormatCString(const char *format, Stream &s, in FormatCString()
1068 FormatEntity::Entry root; in FormatCString()
1070 Status error = FormatEntity::Parse(format_str, root); in FormatCString()
1072 return FormatEntity::Format(root, s, sc, exe_ctx, addr, valobj, in FormatCString()
1079 bool FormatEntity::Format(const Entry &entry, Stream &s, in Format()
1916 const Definition *parent, FormatEntity::Entry &entry) { in ParseEntry()
1933 case FormatEntity::Entry::Type::ParentString: in ParseEntry()
1937 case FormatEntity::Entry::Type::ParentNumber: in ParseEntry()
1941 case FormatEntity::Entry::Type::EscapeCode: in ParseEntry()
1952 if (entry_def->type == FormatEntity::Entry::Type::Invalid) { in ParseEntry()
1987 if (parent->type == FormatEntity::Entry::Type::Root) in ParseEntry()
2029 Status FormatEntity::ParseInternal(llvm::StringRef &format, Entry &parent_entry, in ParseInternal()
2055 error = FormatEntity::ParseInternal(format, scope_entry, depth + 1); in ParseInternal()
2179 error = FormatEntity::ExtractVariableInfo(format, variable, in ParseInternal()
2318 Status FormatEntity::ExtractVariableInfo(llvm::StringRef &format_str, in ExtractVariableInfo()
2348 bool FormatEntity::FormatFileSpec(const FileSpec &file_spec, Stream &s, in FormatFileSpec()
2388 void FormatEntity::AutoComplete(CompletionRequest &request) { in AutoComplete()