Home
last modified time | relevance | path

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

/freebsd-13.1/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.cpp61 for (const auto &enum_value : enum_values) { in ToOptionEnum() local
62 llvm::StringRef this_enum(enum_value.string_value); in ToOptionEnum()
64 return enum_value.value; in ToOptionEnum()
70 for (const auto &enum_value : enum_values) { in ToOptionEnum() local
72 is_first ? is_first = false,"" : ", ", enum_value.string_value); in ToOptionEnum()
H A DOptions.cpp598 for (const auto &enum_value : opt_defs[i].enum_values) { in GenerateOptionUsage() local
600 strm.Printf("%s", enum_value.string_value); in GenerateOptionUsage()
604 strm.Printf(" | %s", enum_value.string_value); in GenerateOptionUsage()
749 for (const auto &enum_value : enum_values) in HandleOptionArgumentCompletion() local
750 request.TryCompleteCurrentArg(enum_value.string_value); in HandleOptionArgumentCompletion()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h80 static const char *GetKey(OptionNames enum_value) { in GetKey()
81 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
367 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
368 return g_option_names[(size_t)enum_value]; in GetKey()
H A DBreakpointResolver.h193 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
194 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
H A DBreakpoint.h94 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
95 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
/freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp510 while (auto enum_value = enum_values->getNext()) { in CreateLLDBTypeFromPDBType() local
511 if (enum_value->getDataKind() != PDB_DataKind::Constant) in CreateLLDBTypeFromPDBType()
513 AddEnumValue(ast_enum, *enum_value); in CreateLLDBTypeFromPDBType()
1144 const PDBSymbolData &enum_value) { in AddEnumValue() argument
1146 Variant v = enum_value.getValue(); in AddEnumValue()
1148 std::string(MSVCUndecoratedNameParser::DropScope(enum_value.getName())); in AddEnumValue()
1186 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl; in AddEnumValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2152 int64_t enum_value = 0; in ParseChildEnumerators() local
2164 enum_value = form_value.Signed(); in ParseChildEnumerators()
2166 enum_value = form_value.Unsigned(); in ParseChildEnumerators()
2193 clang_type, decl, name, enum_value, enumerator_byte_size * 8); in ParseChildEnumerators()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h925 int64_t enum_value, uint32_t enum_value_bit_size);
H A DTypeSystemClang.cpp8320 int64_t enum_value, uint32_t enum_value_bit_size) { in AddEnumerationValueToEnumerationType() argument
8326 value = enum_value; in AddEnumerationValueToEnumerationType()
8584 const int64_t enum_value = data.GetMaxU64Bitfield( in DumpValue() local
8589 if (enum_pos->getInitVal() == enum_value) { in DumpValue()
8596 s->Printf("%" PRIi64, enum_value); in DumpValue()