Lines Matching refs:FormValue
235 const DWARFUnit *U, const uint16_t Attr, DWARFFormValue &FormValue) const { in getAttributeValue()
255 FormValue = DWARFFormValue(AbbrevDecl->getFormByIndex(AttrIdx)); in getAttributeValue()
256 return FormValue.extractValue(DebugInfoData, &DebugInfoOffset, U); in getAttributeValue()
261 DWARFFormValue FormValue; in getAttributeValueAsString() local
262 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsString()
264 Optional<const char *> Result = FormValue.getAsCString(U); in getAttributeValueAsString()
270 DWARFFormValue FormValue; in getAttributeValueAsAddress() local
271 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsAddress()
273 Optional<uint64_t> Result = FormValue.getAsAddress(U); in getAttributeValueAsAddress()
279 DWARFFormValue FormValue; in getAttributeValueAsUnsignedConstant() local
280 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsUnsignedConstant()
282 Optional<uint64_t> Result = FormValue.getAsUnsignedConstant(); in getAttributeValueAsUnsignedConstant()
288 DWARFFormValue FormValue; in getAttributeValueAsReference() local
289 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsReference()
291 Optional<uint64_t> Result = FormValue.getAsReference(U); in getAttributeValueAsReference()
297 DWARFFormValue FormValue; in getAttributeValueAsSectionOffset() local
298 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsSectionOffset()
300 Optional<uint64_t> Result = FormValue.getAsSectionOffset(); in getAttributeValueAsSectionOffset()