Home
last modified time | relevance | path

Searched refs:Dictionary (Results 1 – 25 of 99) sorted by relevance

1234

/llvm-project/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableDictionary.cpp80 CFMutableDictionaryRef CFCMutableDictionary::Dictionary(bool can_create) { in Dictionary() function in CFCMutableDictionary
93 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValue()
104 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValue()
115 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt8()
130 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValueSInt8()
145 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt16()
160 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValueSInt16()
175 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt32()
190 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValueSInt32()
205 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt64()
[all …]
/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h63 class Dictionary; variable
73 typedef std::shared_ptr<Dictionary> DictionarySP;
99 Dictionary *GetAsDictionary() { in GetAsDictionary()
101 ? static_cast<Dictionary *>(this) in GetAsDictionary()
257 std::optional<Dictionary *> GetItemAtIndexAsDictionary(size_t idx) const { in GetItemAtIndexAsDictionary()
384 class Dictionary : public Object {
386 Dictionary() : Object(lldb::eStructuredDataTypeDictionary) {} in Dictionary() function
388 Dictionary(ObjectSP obj_sp) : Object(lldb::eStructuredDataTypeDictionary) { in Dictionary() function
394 Dictionary *dict = obj_sp->GetAsDictionary(); in Dictionary()
398 ~Dictionary() override = default;
[all …]
/llvm-project/lldb/tools/debugserver/source/
H A DJSONGenerator.h34 class Dictionary; variable
43 typedef std::shared_ptr<Dictionary> DictionarySP;
78 Dictionary *GetAsDictionary() { in GetAsDictionary()
80 return (Dictionary *)this; in GetAsDictionary()
254 class Dictionary : public Object {
256 Dictionary() : Object(Type::eTypeDictionary), m_dict() {} in Dictionary() function
258 virtual ~Dictionary() {} in ~Dictionary()
/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp79 const StructuredData::Dictionary &filter_dict, in CreateFromStructuredData()
104 StructuredData::Dictionary *subclass_options = nullptr; in CreateFromStructuredData()
181 auto type_dict_sp = std::make_shared<StructuredData::Dictionary>(); in WrapOptionsDict()
361 const StructuredData::Dictionary &data_dict, in CreateFromStructuredData()
370 auto result_sp = std::make_shared<StructuredData::Dictionary>(); in ModulePasses()
461 const StructuredData::Dictionary &data_dict, in CreateFromStructuredData()
492 auto options_dict_sp = std::make_shared<StructuredData::Dictionary>(); in SerializeToStructuredData()
593 const StructuredData::Dictionary &data_dict, in CreateFromStructuredData()
624 auto options_dict_sp = std::make_shared<StructuredData::Dictionary>();
643 const StructuredData::Dictionary in CreateFromStructuredData()
[all...]
H A DDebuggerEvents.cpp62 auto dictionary_sp = std::make_shared<StructuredData::Dictionary>(); in GetAsStructuredData()
118 auto dictionary_sp = std::make_shared<StructuredData::Dictionary>(); in GetAsStructuredData()
/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h204 const StructuredData::Dictionary &data_dict,
302 const StructuredData::Dictionary &data_dict,
344 const StructuredData::Dictionary &data_dict,
391 const StructuredData::Dictionary &data_dict,
430 const StructuredData::Dictionary &data_dict,
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp62 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData()
78 StructuredData::Dictionary *args_dict = nullptr; in CreateFromStructuredData()
89 new StructuredData::Dictionary()); in SerializeToStructuredData()
H A DBreakpointOptions.cpp41 new StructuredData::Dictionary()); in SerializeToStructuredData()
61 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData()
219 Target &target, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData()
285 StructuredData::Dictionary *cmds_dict; in CreateFromStructuredData()
330 StructuredData::Dictionary *thread_spec_dict; in CreateFromStructuredData()
351 new StructuredData::Dictionary()); in SerializeToStructuredData()
H A DBreakpointResolver.cpp74 const StructuredData::Dictionary &resolver_dict, Status &error) { in CreateFromStructuredData()
100 StructuredData::Dictionary *subclass_options = nullptr; in CreateFromStructuredData()
159 StructuredData::DictionarySP type_dict_sp(new StructuredData::Dictionary()); in WrapOptionsDict()
H A DBreakpointResolverFileRegex.cpp30 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData()
77 new StructuredData::Dictionary()); in SerializeToStructuredData()
H A DBreakpointResolverAddress.cpp34 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData()
67 new StructuredData::Dictionary()); in SerializeToStructuredData()
/llvm-project/clang/test/SemaObjC/
H A Dtypo-correction-subscript.m3 @class Dictionary;
8 - (void)rdar47403222:(Dictionary *)opts { argument
/llvm-project/lldb/include/lldb/Target/
H A DDynamicRegisterInfo.h50 Create(const StructuredData::Dictionary &dict, const ArchSpec &arch);
57 size_t SetRegisterInfo(const lldb_private::StructuredData::Dictionary &dict,
116 uint32_t index, lldb_private::StructuredData::Dictionary &reg_info_dict,
/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUserProperties.td16 def EmulatorEnvVars: Property<"emulator-env-vars", "Dictionary">,
20 def TargetEnvVars: Property<"target-env-vars", "Dictionary">,
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.h104 size_t AddWordFromDictionary(Dictionary &D, uint8_t *Data, size_t Size,
131 Dictionary ManualDictionary;
134 Dictionary PersistentAutoDictionary;
/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h96 size_t DumpHeader(Stream &stream, const StructuredData::Dictionary &event);
98 size_t HandleDisplayOfEvent(const StructuredData::Dictionary &event,
H A DStructuredDataDarwinLog.cpp209 StructuredData::Dictionary *dict_p = new StructuredData::Dictionary(); in Serialize()
238 virtual void DoSerialization(StructuredData::Dictionary &dict) const = 0;
274 void DoSerialization(StructuredData::Dictionary &dict) const override { in DoSerialization()
326 void DoSerialization(StructuredData::Dictionary &dict) const override { in DoSerialization()
567 StructuredData::DictionarySP config_sp(new StructuredData::Dictionary()); in BuildConfigurationData()
578 StructuredData::DictionarySP(new StructuredData::Dictionary()); in BuildConfigurationData()
1139 const StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); in GetDescription()
1650 const StructuredData::Dictionary &event) { in DumpHeader()
1733 const StructuredData::Dictionary in HandleDisplayOfEvent()
[all...]
/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp179 std::optional<StructuredData::Dictionary *> maybe_dict = in LoadArtificialStackFrames()
189 StructuredData::Dictionary *dict = *maybe_dict; in LoadArtificialStackFrames()
241 StructuredData::Dictionary *data_dict; in CalculateStopInfo()
274 StructuredData::Dictionary *mach_exception; in CalculateStopInfo()
/llvm-project/lldb/unittests/tools/lldb-server/tests/
H A DMessageObjects.cpp72 JThreadsInfo::parseRegisters(const StructuredData::Dictionary &Dict, in parseRegisters()
109 std::optional<StructuredData::Dictionary *> maybe_thread_info = in create()
114 StructuredData::Dictionary *thread_info = *maybe_thread_info; in create()
123 StructuredData::Dictionary *register_dict; in create()
/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp23 const StructuredData::Dictionary &spec_dict, Status &error) { in CreateFromStructuredData()
54 StructuredData::DictionarySP data_dict_sp(new StructuredData::Dictionary()); in SerializeToStructuredData()
/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp87 auto dict_up = std::make_unique<StructuredData::Dictionary>(); in ParseJSONObject()
163 void StructuredData::Dictionary::Serialize(json::OStream &s) const { in Serialize()
239 void StructuredData::Dictionary::GetDescription(lldb_private::Stream &s) const { in GetDescription()
/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPythonClassWithDict.cpp93 m_dict_sp = std::make_shared<StructuredData::Dictionary>(); in SetOptionValue()
103 m_dict_sp = std::make_shared<StructuredData::Dictionary>(); in SetOptionValue()
/llvm-project/compiler-rt/test/fuzzer/
H A Ddict1.txt1 # Dictionary for SimpleDictionaryTest
/llvm-project/clang/test/Import/objc-param-decl/Inputs/
H A DS.m4 @interface Dictionary <FirstParam : id <NSString>, NSString> interface
/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h58 CreateFromStructuredData(const StructuredData::Dictionary &options_dict,
128 const StructuredData::Dictionary &data_dict,

1234