LLDB mainline
NSString.h
Go to the documentation of this file.
1//===-- NSString.h ---------------------------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H
11#define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H
12
15#include "lldb/Utility/Stream.h"
16
18
19namespace lldb_private {
20namespace formatters {
21bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream,
22 const TypeSummaryOptions &options);
23
25 ValueObject &valobj, ObjCLanguageRuntime::ClassDescriptorSP descriptor,
26 Stream &stream, const TypeSummaryOptions &summary_options);
27
28bool NSAttributedStringSummaryProvider(ValueObject &valobj, Stream &stream,
29 const TypeSummaryOptions &options);
30
32 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options);
33
35public:
36 static std::map<ConstString, CXXFunctionSummaryFormat::Callback> &
38};
39} // namespace formatters
40} // namespace lldb_private
41
42#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H
std::shared_ptr< ClassDescriptor > ClassDescriptorSP
static std::map< ConstString, CXXFunctionSummaryFormat::Callback > & GetAdditionalSummaries()
Definition: NSString.cpp:28
bool NSMutableAttributedStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
Definition: NSString.cpp:307
bool NSAttributedStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
Definition: NSString.cpp:278
bool NSTaggedString_SummaryProvider(ValueObject &valobj, ObjCLanguageRuntime::ClassDescriptorSP descriptor, Stream &stream, const TypeSummaryOptions &summary_options)
Definition: NSString.cpp:312
bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options)
Definition: NSString.cpp:33
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14