Home
last modified time | relevance | path

Searched refs:enum_value (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DProperty.cpp83 OptionValueEnumeration *enum_value = new OptionValueEnumeration( in Property() local
85 m_value_sp.reset(enum_value); in Property()
87 if (enum_value in Property()
91 enum_value->SetDefaultValue(enum_value->GetCurrentValue()); in Property()
96 enum_value->Clear(); in Property()
H A DOptionArgParser.cpp62 for (const auto &enum_value : enum_values) { in ToOptionEnum() local
63 llvm::StringRef this_enum(enum_value.string_value); in ToOptionEnum()
65 return enum_value.value; in ToOptionEnum()
71 for (const auto &enum_value : enum_values) { in ToOptionEnum() local
73 is_first ? is_first = false,"" : ", ", enum_value.string_value); in ToOptionEnum()
H A DOptionValueDictionary.cpp178 auto enum_value = in SetArgs() local
180 error = enum_value->SetValueFromString(value); in SetArgs()
184 SetValueForKey(key, enum_value, true); in SetArgs()
H A DOptions.cpp543 for (const auto &enum_value : opt_def.enum_values) { in GenerateOptionUsage() local
545 strm.Printf("%s", enum_value.string_value); in GenerateOptionUsage()
549 strm.Printf(" | %s", enum_value.string_value); in GenerateOptionUsage()
694 for (const auto &enum_value : enum_values) in HandleOptionArgumentCompletion() local
695 request.TryCompleteCurrentArg(enum_value.string_value); in HandleOptionArgumentCompletion()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h79 static const char *GetKey(OptionNames enum_value) { in GetKey()
80 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
366 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
367 return g_option_names[(size_t)enum_value]; in GetKey()
H A DBreakpointResolver.h194 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
195 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
H A DBreakpoint.h96 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
97 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h119 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
120 return g_option_names[(size_t) enum_value]; in GetKey()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h247 static const char *GetKey(enum OptionNames enum_value) { in GetKey() argument
248 return g_option_names[enum_value]; in GetKey()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp518 while (auto enum_value = enum_values->getNext()) { in CreateLLDBTypeFromPDBType() local
519 if (enum_value->getDataKind() != PDB_DataKind::Constant) in CreateLLDBTypeFromPDBType()
521 AddEnumValue(ast_enum, *enum_value); in CreateLLDBTypeFromPDBType()
1153 const PDBSymbolData &enum_value) { in AddEnumValue() argument
1155 Variant v = enum_value.getValue(); in AddEnumValue()
1157 std::string(MSVCUndecoratedNameParser::DropScope(enum_value.getName())); in AddEnumValue()
1195 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl; in AddEnumValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2360 int64_t enum_value = 0; in ParseChildEnumerators() local
2371 enum_value = form_value.Signed(); in ParseChildEnumerators()
2373 enum_value = form_value.Unsigned(); in ParseChildEnumerators()
2400 clang_type, decl, name, enum_value, enumerator_byte_size * 8); in ParseChildEnumerators()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h1008 int64_t enum_value, uint32_t enum_value_bit_size);
H A DTypeSystemClang.cpp8373 int64_t enum_value, uint32_t enum_value_bit_size) { in AddEnumerationValueToEnumerationType() argument
8379 value = enum_value; in AddEnumerationValueToEnumerationType()