Home
last modified time | relevance | path

Searched refs:field_type (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Platform/
H A DPlatformSiginfoTest.cpp62 CompilerType field_type = siginfo_type; in ExpectField() local
66 ASSERT_NE(field_type.GetIndexOfFieldWithName(field_name.str().c_str(), in ExpectField()
67 &field_type, &bit_offset), in ExpectField()
73 EXPECT_EQ(field_type.GetByteSize(nullptr), llvm::Optional<uint64_t>(size)); in ExpectField()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DProcessStructReader.h55 CompilerType field_type = struct_type.GetFieldAtIndex( in ProcessStructReader() local
60 auto size = field_type.GetByteSize(nullptr); in ProcessStructReader()
67 FieldImpl{field_type, byte_index, static_cast<size_t>(*size)}; in ProcessStructReader()
/llvm-project-15.0.7/clang/docs/tools/
H A Ddump_format_style.py274 field_type, field_name = re.match(r'([<>:\w(,\s)]+)\s+(\w+);',
279 option = Option(str(field_name), str(field_type), comment, version)
296 field_type, field_name = re.match(r'([<>:\w(,\s)]+)\s+(\w+);', line).groups()
297 if field_type in enums:
299 field_type,
301 enums[field_type].values))
303 nested_struct.values.append(NestedField(field_type + " " + field_name, comment))
/llvm-project-15.0.7/lldb/unittests/TestingSupport/Symbol/
H A DClangTestUtils.h40 CompilerType field_type, in createRecordWithField() argument
45 ast.AddFieldToRecordType(t, field_name, field_type, in createRecordWithField()
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp475 CompilerType field_type(this_type.GetFieldAtIndex( in GetFieldAtIndex() local
477 if (field_type.IsValid()) { in GetFieldAtIndex()
482 new TypeMemberImpl(TypeImplSP(new TypeImpl(field_type)), bit_offset, in GetFieldAtIndex()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h838 const CompilerType &field_type,
H A DTypeSystemClang.cpp6691 CompilerType field_type = GetType(field->getType()); in GetIndexOfChildMemberWithName() local
6693 if (field_type.GetIndexOfChildMemberWithName( in GetIndexOfChildMemberWithName()
8621 clang::QualType field_type = field->getType(); in DumpValue() local
8626 getASTContext().getTypeInfo(field_type); in DumpValue()
8638 std::string field_type_name(field_type.getAsString()); in DumpValue()
8649 CompilerType field_clang_type = GetType(field_type); in DumpValue()