Lines Matching refs:FormValue

146     const DWARFUnit *U, const uint16_t Attr, DWARFFormValue &FormValue) const {  in getAttributeValue()
166 FormValue = DWARFFormValue(AbbrevDecl->getFormByIndex(AttrIdx)); in getAttributeValue()
167 return FormValue.extractValue(DebugInfoData, &DebugInfoOffset, U); in getAttributeValue()
172 DWARFFormValue FormValue; in getAttributeValueAsString() local
173 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsString()
175 Optional<const char *> Result = FormValue.getAsCString(U); in getAttributeValueAsString()
181 DWARFFormValue FormValue; in getAttributeValueAsAddress() local
182 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsAddress()
184 Optional<uint64_t> Result = FormValue.getAsAddress(U); in getAttributeValueAsAddress()
190 DWARFFormValue FormValue; in getAttributeValueAsUnsignedConstant() local
191 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsUnsignedConstant()
193 Optional<uint64_t> Result = FormValue.getAsUnsignedConstant(); in getAttributeValueAsUnsignedConstant()
199 DWARFFormValue FormValue; in getAttributeValueAsReference() local
200 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsReference()
202 Optional<uint64_t> Result = FormValue.getAsReference(U); in getAttributeValueAsReference()
208 DWARFFormValue FormValue; in getAttributeValueAsSectionOffset() local
209 if (!getAttributeValue(U, Attr, FormValue)) in getAttributeValueAsSectionOffset()
211 Optional<uint64_t> Result = FormValue.getAsSectionOffset(); in getAttributeValueAsSectionOffset()