Lines Matching defs:form_value

287     DWARFFormValue form_value;
288 if (!attributes.ExtractFormValueAtIndex(i, form_value))
294 abstract_origin = form_value;
299 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
303 is_artificial = form_value.Boolean();
307 bit_stride = form_value.Unsigned();
311 byte_size = form_value.Unsigned();
315 alignment = form_value.Unsigned();
319 byte_stride = form_value.Unsigned();
323 calling_convention = form_value.Unsigned();
327 containing_type = form_value;
333 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned()));
336 decl.SetLine(form_value.Unsigned());
339 decl.SetColumn(form_value.Unsigned());
343 is_forward_declaration = form_value.Boolean();
347 encoding = form_value.Unsigned();
351 is_scoped_enum = form_value.Boolean();
355 is_explicit = form_value.Boolean();
359 if (form_value.Unsigned())
364 is_inline = form_value.Boolean();
369 mangled_name = form_value.AsCString();
373 name.SetCString(form_value.AsCString());
377 object_pointer = form_value.Reference();
381 signature = form_value;
385 specification = form_value;
389 type = form_value;
393 is_virtual = form_value.Boolean();
397 is_complete_objc_class = form_value.Signed();
405 class_language = (LanguageType)form_value.Signed();
409 is_vector = form_value.Boolean();
412 exports_symbols = form_value.Boolean();
531 ExtractDataMemberLocation(DWARFDIE const &die, DWARFFormValue const &form_value,
538 if (!form_value.BlockData())
539 return form_value.Unsigned();
543 uint32_t block_length = form_value.Unsigned();
545 form_value.BlockData() - debug_info_data.GetDataStart();
1482 DWARFFormValue form_value;
1483 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
1486 encoding_form = form_value;
1490 ExtractDataMemberLocation(die, form_value, module_sp))
1496 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
1500 is_virtual = form_value.Boolean();
1976 DWARFFormValue form_value;
1982 if (attributes.ExtractFormValueAtIndex(i, form_value))
1983 name = form_value.AsCString();
1987 if (attributes.ExtractFormValueAtIndex(i, form_value))
1988 template_name = form_value.AsCString();
1992 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
1993 Type *lldb_type = die.ResolveTypeUID(form_value.Reference());
2000 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2002 uval64 = form_value.Unsigned();
2006 if (attributes.ExtractFormValueAtIndex(i, form_value))
2007 is_default_template_arg = form_value.Boolean();
2295 DWARFFormValue form_value;
2296 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2301 enum_value = form_value.Signed();
2303 enum_value = form_value.Unsigned();
2307 name = form_value.AsCString();
2314 attributes.CompileUnitAtIndex(i)->GetFile(form_value.Unsigned()));
2317 decl.SetLine(form_value.Unsigned());
2320 decl.SetColumn(form_value.Unsigned());
2501 DWARFFormValue form_value;
2503 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2506 variant_name = ConstString(form_value.AsCString());
2509 type_ref = form_value;
2514 ExtractDataMemberLocation(die, form_value, module_sp))
2537 DWARFFormValue form_value;
2538 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2541 type_ref = form_value;
2545 ExtractDataMemberLocation(die, form_value, module_sp))
2575 DWARFFormValue form_value;
2576 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2579 name = form_value.AsCString();
2582 encoding_form = form_value;
2585 bit_offset = form_value.Signed();
2588 bit_size = form_value.Unsigned();
2591 byte_size = form_value.Unsigned();
2594 const_value_form = form_value;
2597 data_bit_offset = form_value.Unsigned();
2601 ExtractDataMemberLocation(die, form_value, module_sp))
2607 DWARFASTParser::GetAccessTypeFromDWARF(form_value.Unsigned());
2610 is_artificial = form_value.Boolean();
2613 is_declaration = form_value.Boolean();
2644 DWARFFormValue form_value;
2645 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
2648 prop_name = form_value.AsCString();
2651 prop_getter_name = form_value.AsCString();
2654 prop_setter_name = form_value.AsCString();
2657 prop_attributes = form_value.Unsigned();
2738 const CompilerType &int_type, const DWARFFormValue &form_value) const {
2766 llvm::APInt result(max_bit_size, form_value.Unsigned(), !is_unsigned);
2778 ? std::to_string(form_value.Unsigned())
2779 : std::to_string(form_value.Signed());
3151 DWARFFormValue form_value;
3152 if (attributes.ExtractFormValueAtIndex(i, form_value)) {
3155 name = form_value.AsCString();
3158 param_type_die_form = form_value;
3161 is_artificial = form_value.Boolean();