Path: blob/main/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/NSString.h
39642 views
//===-- NSString.h ---------------------------------------------------*- C++1//-*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H10#define LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H1112#include "lldb/Core/ValueObject.h"13#include "lldb/DataFormatters/TypeSummary.h"14#include "lldb/Utility/Stream.h"1516#include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h"1718namespace lldb_private {19namespace formatters {20bool NSStringSummaryProvider(ValueObject &valobj, Stream &stream,21const TypeSummaryOptions &options);2223bool NSTaggedString_SummaryProvider(24ValueObject &valobj, ObjCLanguageRuntime::ClassDescriptorSP descriptor,25Stream &stream, const TypeSummaryOptions &summary_options);2627bool NSAttributedStringSummaryProvider(ValueObject &valobj, Stream &stream,28const TypeSummaryOptions &options);2930bool NSMutableAttributedStringSummaryProvider(31ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options);3233class NSString_Additionals {34public:35static std::map<ConstString, CXXFunctionSummaryFormat::Callback> &36GetAdditionalSummaries();37};38} // namespace formatters39} // namespace lldb_private4041#endif // LLDB_SOURCE_PLUGINS_LANGUAGE_OBJC_NSSTRING_H424344