Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DProperty.cpp78 OptionValueEnumeration *enum_value = new OptionValueEnumeration( in Property() local
80 m_value_sp.reset(enum_value); in Property()
82 if (enum_value in Property()
86 enum_value->SetDefaultValue(enum_value->GetCurrentValue()); in Property()
91 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 DOptions.cpp604 for (const auto &enum_value : opt_defs[i].enum_values) { in GenerateOptionUsage() local
606 strm.Printf("%s", enum_value.string_value); in GenerateOptionUsage()
610 strm.Printf(" | %s", enum_value.string_value); in GenerateOptionUsage()
779 for (const auto &enum_value : enum_values) { in HandleOptionArgumentCompletion() local
780 if (strstr(enum_value.string_value, match_string.c_str()) == in HandleOptionArgumentCompletion()
781 enum_value.string_value) { in HandleOptionArgumentCompletion()
782 request.AddCompletion(enum_value.string_value); in HandleOptionArgumentCompletion()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h84 static const char *GetKey(OptionNames enum_value) { in GetKey()
85 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
424 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
425 return g_option_names[(size_t)enum_value]; in GetKey()
H A DBreakpointResolver.h219 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
220 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
H A DBreakpoint.h100 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
101 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h122 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
123 return g_option_names[(size_t) enum_value]; in GetKey()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp511 while (auto enum_value = enum_values->getNext()) { in CreateLLDBTypeFromPDBType() local
512 if (enum_value->getDataKind() != PDB_DataKind::Constant) in CreateLLDBTypeFromPDBType()
514 AddEnumValue(ast_enum, *enum_value); in CreateLLDBTypeFromPDBType()
1114 const PDBSymbolData &enum_value) { in AddEnumValue() argument
1116 Variant v = enum_value.getValue(); in AddEnumValue()
1117 std::string name = MSVCUndecoratedNameParser::DropScope(enum_value.getName()); in AddEnumValue()
1156 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl; in AddEnumValue()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSearchFilter.h294 static const char *GetKey(enum OptionNames enum_value) { in GetKey() argument
295 return g_option_names[enum_value]; in GetKey()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2466 int64_t enum_value = 0; in ParseChildEnumerators() local
2478 enum_value = form_value.Signed(); in ParseChildEnumerators()
2480 enum_value = form_value.Unsigned(); in ParseChildEnumerators()
2507 clang_type, decl, name, enum_value, enumerator_byte_size * 8); in ParseChildEnumerators()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h909 int64_t enum_value, uint32_t enum_value_bit_size);
/freebsd-12.1/contrib/gcc/
H A Dc-parser.c1883 tree enum_value; in c_parser_enum_specifier() local
1898 enum_value = c_parser_expr_no_commas (parser, NULL).value; in c_parser_enum_specifier()
1901 enum_value = NULL_TREE; in c_parser_enum_specifier()
1902 enum_decl = build_enumerator (enum_id, enum_value); in c_parser_enum_specifier()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp9003 int64_t enum_value, uint32_t enum_value_bit_size) { in AddEnumerationValueToEnumerationType() argument
9010 value = enum_value; in AddEnumerationValueToEnumerationType()
9260 const int64_t enum_value = data.GetMaxU64Bitfield( in DumpValue() local
9265 if (enum_pos->getInitVal() == enum_value) { in DumpValue()
9272 s->Printf("%" PRIi64, enum_value); in DumpValue()