Lines Matching defs:form
9 // * Redistributions in binary form must reproduce the above
63 // attribute/form pairs.
65 // zero for the form. The entire abbreviation section is terminated
126 const enum DwarfForm form = static_cast<enum DwarfForm>(formtemp);
127 abbrev.attributes.push_back(std::make_pair(name, form));
145 // Skips a single attribute form's data.
147 enum DwarfForm form) {
150 switch (form) {
152 form = static_cast<enum DwarfForm>(reader_->ReadUnsignedLEB128(start,
155 return SkipAttribute(start, form);
211 fprintf(stderr,"Unhandled form type");
310 enum DwarfForm form) {
313 switch (form) {
317 form = static_cast<enum DwarfForm>(reader_->ReadUnsignedLEB128(start,
320 return ProcessAttribute(dieoffset, start, attr, form);
323 handler_->ProcessAttributeUnsigned(dieoffset, attr, form, 1);
327 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
331 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
335 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
339 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
344 handler_->ProcessAttributeString(dieoffset, attr, form,
349 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
355 handler_->ProcessAttributeSigned(dieoffset, attr, form,
359 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
363 handler_->ProcessAttributeUnsigned(dieoffset, attr, form,
368 handler_->ProcessAttributeReference(dieoffset, attr, form,
373 handler_->ProcessAttributeReference(dieoffset, attr, form,
378 handler_->ProcessAttributeReference(dieoffset, attr, form,
383 handler_->ProcessAttributeReference(dieoffset, attr, form,
388 handler_->ProcessAttributeReference(dieoffset, attr, form,
398 handler_->ProcessAttributeReference(dieoffset, attr, form,
402 handler_->ProcessAttributeReference(dieoffset, attr, form,
408 handler_->ProcessAttributeSignature(dieoffset, attr, form,
414 handler_->ProcessAttributeBuffer(dieoffset, attr, form, start + 1,
420 handler_->ProcessAttributeBuffer(dieoffset, attr, form, start + 2,
426 handler_->ProcessAttributeBuffer(dieoffset, attr, form, start + 4,
433 form, start + len,
444 handler_->ProcessAttributeString(dieoffset, attr, form,
449 fprintf(stderr, "Unhandled form type\n");
1894 // effects on the form of rest of the content, so we have to give up.