Lines Matching defs:form_value
357 DWARFFormValue form_value;
358 if (!attributes.ExtractFormValueAtIndex(i, form_value))
364 abstract_origin = form_value;
369 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
373 is_artificial = form_value.Boolean();
377 bit_stride = form_value.Unsigned();
381 byte_size = form_value.Unsigned();
385 alignment = form_value.Unsigned();
389 byte_stride = form_value.Unsigned();
393 calling_convention = form_value.Unsigned();
397 containing_type = form_value;
403 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned()));
406 decl.SetLine(form_value.Unsigned());
409 decl.SetColumn(form_value.Unsigned());
413 is_forward_declaration = form_value.Boolean();
417 encoding = form_value.Unsigned();
421 is_scoped_enum = form_value.Boolean();
425 is_explicit = form_value.Boolean();
429 if (form_value.Unsigned())
434 is_inline = form_value.Boolean();
439 mangled_name = form_value.AsCString();
443 name.SetCString(form_value.AsCString());
452 object_pointer = form_value.Reference();
456 signature = form_value;
460 specification = form_value;
464 type = form_value;
468 is_virtual = form_value.Boolean();
472 is_complete_objc_class = form_value.Signed();
480 class_language = (LanguageType)form_value.Signed();
484 is_vector = form_value.Boolean();
487 exports_symbols = form_value.Boolean();
606 ExtractDataMemberLocation(DWARFDIE const &die, DWARFFormValue const &form_value,
613 if (!form_value.BlockData())
614 return form_value.Unsigned();
618 uint32_t block_length = form_value.Unsigned();
620 form_value.BlockData() - debug_info_data.GetDataStart();
1554 DWARFFormValue form_value;
1555 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
1558 encoding_form = form_value;
1562 ExtractDataMemberLocation(die, form_value, module_sp))
1568 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
1572 is_virtual = form_value.Boolean();
2014 DWARFFormValue form_value;
2020 if (attributes.ExtractFormValueAtIndex(i, form_value))
2021 name = form_value.AsCString();
2025 if (attributes.ExtractFormValueAtIndex(i, form_value))
2026 template_name = form_value.AsCString();
2030 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2031 Type *lldb_type = die.ResolveTypeUID(form_value.Reference());
2038 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2040 uval64 = form_value.Unsigned();
2044 if (attributes.ExtractFormValueAtIndex(i, form_value))
2045 is_default_template_arg = form_value.Boolean();
2338 DWARFFormValue form_value;
2339 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2344 enum_value = form_value.Signed();
2346 enum_value = form_value.Unsigned();
2350 name = form_value.AsCString();
2357 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned()));
2360 decl.SetLine(form_value.Unsigned());
2363 decl.SetColumn(form_value.Unsigned());
2561 DWARFFormValue form_value;
2563 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2566 variant_name = ConstString(form_value.AsCString());
2569 type_ref = form_value;
2574 ExtractDataMemberLocation(die, form_value, module_sp))
2597 DWARFFormValue form_value;
2598 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2601 type_ref = form_value;
2605 ExtractDataMemberLocation(die, form_value, module_sp))
2635 DWARFFormValue form_value;
2636 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2639 name = form_value.AsCString();
2642 encoding_form = form_value;
2645 bit_offset = form_value.Signed();
2648 bit_size = form_value.Unsigned();
2651 byte_size = form_value.Unsigned();
2654 const_value_form = form_value;
2657 data_bit_offset = form_value.Unsigned();
2661 ExtractDataMemberLocation(die, form_value, module_sp))
2667 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
2670 is_artificial = form_value.Boolean();
2673 is_declaration = form_value.Boolean();
2704 DWARFFormValue form_value;
2705 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2708 prop_name = form_value.AsCString();
2711 prop_getter_name = form_value.AsCString();
2714 prop_setter_name = form_value.AsCString();
2717 prop_attributes = form_value.Unsigned();
2798 const CompilerType &int_type, const DWARFFormValue &form_value) const {
2826 llvm::APInt result(max_bit_size, form_value.Unsigned(), !is_unsigned);
2838 ? std::to_string(form_value.Unsigned())
2839 : std::to_string(form_value.Signed());