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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h117 static const char *GetKey(OptionNames enum_value) { argument
118 return g_option_names[(size_t) enum_value];
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h190 static const char *GetKey(OptionNames enum_value) { argument
191 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-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h237 static const char *GetKey(enum OptionNames enum_value) { argument
238 return g_option_names[enum_value];
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp508 while (auto enum_value = enum_values->getNext()) {
509 if (enum_value->getDataKind() != PDB_DataKind::Constant)
511 AddEnumValue(ast_enum, *enum_value);
1119 const PDBSymbolData &enum_value) {
1121 Variant v = enum_value.getValue();
1122 std::string name = MSVCUndecoratedNameParser::DropScope(enum_value.getName());
1161 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl;
1118 AddEnumValue(CompilerType enum_type, const PDBSymbolData &enum_value) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2223 int64_t enum_value = 0; local
2235 enum_value = form_value.Signed();
2237 enum_value = form_value.Unsigned();
2263 clang_type, decl, name, enum_value, enumerator_byte_size * 8);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTContext.h824 int64_t enum_value, uint32_t enum_value_bit_size);
/freebsd-11-stable/contrib/gcc/
H A Dc-parser.c1885 tree enum_value;
1900 enum_value = c_parser_expr_no_commas (parser, NULL).value;
1903 enum_value = NULL_TREE;
1904 enum_decl = build_enumerator (enum_id, enum_value);
1883 tree enum_value; local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp7885 int64_t enum_value, uint32_t enum_value_bit_size) {
7892 value = enum_value;
8155 const int64_t enum_value = data.GetMaxU64Bitfield( local
8160 if (enum_pos->getInitVal() == enum_value) {
8167 s->Printf("%" PRIi64, enum_value);
7883 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, int64_t enum_value, uint32_t enum_value_bit_size) argument

Completed in 254 milliseconds