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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h119 static const char *GetKey(OptionNames enum_value) { argument
120 return g_option_names[(size_t) enum_value];
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DProperty.cpp83 OptionValueEnumeration *enum_value = new OptionValueEnumeration( local
85 m_value_sp.reset(enum_value);
87 if (enum_value
91 enum_value->SetDefaultValue(enum_value->GetCurrentValue());
96 enum_value->Clear();
H A DOptionArgParser.cpp61 for (const auto &enum_value : enum_values) {
62 llvm::StringRef this_enum(enum_value.string_value);
64 return enum_value.value;
70 for (const auto &enum_value : enum_values) {
72 is_first ? is_first = false,"" : ", ", enum_value.string_value);
H A DOptions.cpp601 for (const auto &enum_value : opt_defs[i].enum_values) {
603 strm.Printf("%s", enum_value.string_value);
607 strm.Printf(" | %s", enum_value.string_value);
752 for (const auto &enum_value : enum_values)
753 request.TryCompleteCurrentArg(enum_value.string_value);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h193 static const char *GetKey(OptionNames enum_value) { argument
194 return g_option_names[static_cast<uint32_t>(enum_value)];
H A DBreakpointOptions.h81 static const char *GetKey(OptionNames enum_value) { argument
82 return g_option_names[static_cast<uint32_t>(enum_value)];
368 static const char *GetKey(OptionNames enum_value) { argument
369 return g_option_names[(size_t)enum_value];
H A DBreakpoint.h93 static const char *GetKey(OptionNames enum_value) { argument
94 return g_option_names[static_cast<uint32_t>(enum_value)];
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h247 static const char *GetKey(enum OptionNames enum_value) { argument
248 return g_option_names[enum_value];
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp510 while (auto enum_value = enum_values->getNext()) {
511 if (enum_value->getDataKind() != PDB_DataKind::Constant)
513 AddEnumValue(ast_enum, *enum_value);
1124 const PDBSymbolData &enum_value) {
1126 Variant v = enum_value.getValue();
1128 std::string(MSVCUndecoratedNameParser::DropScope(enum_value.getName()));
1166 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl;
1123 AddEnumValue(CompilerType enum_type, const PDBSymbolData &enum_value) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2182 int64_t enum_value = 0; local
2194 enum_value = form_value.Signed();
2196 enum_value = form_value.Unsigned();
2222 clang_type, decl, name, enum_value, enumerator_byte_size * 8);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h945 int64_t enum_value, uint32_t enum_value_bit_size);
H A DTypeSystemClang.cpp8156 int64_t enum_value, uint32_t enum_value_bit_size) {
8162 value = enum_value;
8420 const int64_t enum_value = data.GetMaxU64Bitfield( local
8425 if (enum_pos->getInitVal() == enum_value) {
8432 s->Printf("%" PRIi64, enum_value);
8154 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, int64_t enum_value, uint32_t enum_value_bit_size) argument

Completed in 210 milliseconds