Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DThreadInfo.h17 QoS() : constant_name(), printable_name(), enum_value(UINT32_MAX) {} in QoS()
18 bool IsValid() { return enum_value != UINT32_MAX; } in IsValid()
21 uint32_t enum_value; variable
H A DMachThread.cpp756 qos_value.enum_value = requested_qos; in GetRequestedQoS()
761 qos_value.enum_value = requested_qos; in GetRequestedQoS()
766 qos_value.enum_value = requested_qos; in GetRequestedQoS()
771 qos_value.enum_value = requested_qos; in GetRequestedQoS()
776 qos_value.enum_value = requested_qos; in GetRequestedQoS()
781 qos_value.enum_value = requested_qos; in GetRequestedQoS()
/llvm-project-15.0.7/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 DOptionValueDictionary.cpp166 auto enum_value = in SetArgs() local
168 error = enum_value->SetValueFromString(value); in SetArgs()
172 SetValueForKey(ConstString(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()
/llvm-project-15.0.7/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.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.h97 static const char *GetKey(OptionNames enum_value) { in GetKey() argument
98 return g_option_names[static_cast<uint32_t>(enum_value)]; in GetKey()
/llvm-project-15.0.7/llvm/bindings/python/llvm/tests/
H A Dtest_core.py15 for enum_name, enum_value in enum_spec:
25 self.assertEqual(v_attr.value, enum_value)
27 e = enum_cls.from_value(enum_value)
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/test/API/lang/c/enum_types/
H A DTestEnumTypes.py116 for enum_value in enum_values:
120 substrs=[enum_value])
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_cursor.py373 self.assertEqual(spam.enum_value, 1)
375 self.assertEqual(egg.enum_value, 2)
377 self.assertEqual(ham.enum_value, 40)
392 self.assertEqual(spam.enum_value, -1)
394 self.assertEqual(ham.enum_value, 0x10000000000)
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp512 while (auto enum_value = enum_values->getNext()) { in CreateLLDBTypeFromPDBType() local
513 if (enum_value->getDataKind() != PDB_DataKind::Constant) in CreateLLDBTypeFromPDBType()
515 AddEnumValue(ast_enum, *enum_value); in CreateLLDBTypeFromPDBType()
1151 const PDBSymbolData &enum_value) { in AddEnumValue() argument
1153 Variant v = enum_value.getValue(); in AddEnumValue()
1155 std::string(MSVCUndecoratedNameParser::DropScope(enum_value.getName())); in AddEnumValue()
1193 m_uid_to_decl[enum_value.getSymIndexId()] = enum_constant_decl; in AddEnumValue()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2231 int64_t enum_value = 0; in ParseChildEnumerators() local
2243 enum_value = form_value.Signed(); in ParseChildEnumerators()
2245 enum_value = form_value.Unsigned(); in ParseChildEnumerators()
2272 clang_type, decl, name, enum_value, enumerator_byte_size * 8); in ParseChildEnumerators()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h918 int64_t enum_value, uint32_t enum_value_bit_size);
H A DTypeSystemClang.cpp8421 int64_t enum_value, uint32_t enum_value_bit_size) { in AddEnumerationValueToEnumerationType() argument
8427 value = enum_value; in AddEnumerationValueToEnumerationType()
8684 const int64_t enum_value = data.GetMaxU64Bitfield( in DumpValue() local
8689 if (enum_pos->getInitVal() == enum_value) { in DumpValue()
8696 s->Printf("%" PRIi64, enum_value); in DumpValue()
/llvm-project-15.0.7/clang/bindings/python/clang/
H A Dcindex.py1715 def enum_value(self): member in Cursor
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DRNBRemote.cpp5824 json << "\"enum_value\":" << requested_qos.enum_value << ","; in HandlePacket_jThreadExtendedInfo()
/llvm-project-15.0.7/lldb/docs/
H A Dlldb-gdb-remote.txt1842 // {"tsd_address":4371349728,"requested_qos":{"enum_value":33,"constant_name":"QOS_CLASS_USER_INTE…