/external/elfutils/tests/ |
D | run-show-abbrev.sh | 26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0 27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2 28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4 29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6 30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8 31 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10 32 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12 34 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19 35 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21 36 abbrev[19]: attr[2]: code = 3, form = 8, offset = 23 [all …]
|
D | show-die-info.c | 222 Dwarf_Attribute attr; in handle() local 227 if (dwarf_attr (die, DW_AT_low_pc, &attr) == NULL in handle() 228 || dwarf_formaddr (&attr, &addr2) != 0 in handle() 231 else if (! dwarf_hasform (&attr, DW_FORM_addr)) in handle() 233 else if (dwarf_whatform (&attr) != DW_FORM_addr) in handle() 235 else if (dwarf_whatattr (&attr) != DW_AT_low_pc) in handle() 240 Dwarf_Attribute attr; in handle() local 244 if (dwarf_attr (die, DW_AT_high_pc, &attr) == NULL in handle() 245 || dwarf_formaddr (&attr, &addr2) != 0 in handle() 248 else if (! dwarf_hasform (&attr, DW_FORM_addr)) in handle() [all …]
|
/external/webkit/WebCore/html/ |
D | HTMLMarqueeElement.cpp | 64 void HTMLMarqueeElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 66 if (attr->name() == widthAttr) { in parseMappedAttribute() 67 if (!attr->value().isEmpty()) in parseMappedAttribute() 68 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 69 } else if (attr->name() == heightAttr) { in parseMappedAttribute() 70 if (!attr->value().isEmpty()) in parseMappedAttribute() 71 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 72 } else if (attr->name() == bgcolorAttr) { in parseMappedAttribute() 73 if (!attr->value().isEmpty()) in parseMappedAttribute() 74 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value()); in parseMappedAttribute() [all …]
|
D | HTMLTablePartElement.cpp | 62 void HTMLTablePartElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 64 if (attr->name() == bgcolorAttr) in parseMappedAttribute() 65 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value()); in parseMappedAttribute() 66 else if (attr->name() == backgroundAttr) { in parseMappedAttribute() 67 String url = parseURL(attr->value()); in parseMappedAttribute() 69 … addCSSImageProperty(attr, CSSPropertyBackgroundImage, document()->completeURL(url).string()); in parseMappedAttribute() 70 } else if (attr->name() == bordercolorAttr) { in parseMappedAttribute() 71 if (!attr->value().isEmpty()) { in parseMappedAttribute() 72 addCSSColor(attr, CSSPropertyBorderColor, attr->value()); in parseMappedAttribute() 73 addCSSProperty(attr, CSSPropertyBorderTopStyle, CSSValueSolid); in parseMappedAttribute() [all …]
|
D | HTMLHRElement.cpp | 56 void HTMLHRElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 58 if (attr->name() == alignAttr) { in parseMappedAttribute() 59 if (equalIgnoringCase(attr->value(), "left")) { in parseMappedAttribute() 60 addCSSProperty(attr, CSSPropertyMarginLeft, "0"); in parseMappedAttribute() 61 addCSSProperty(attr, CSSPropertyMarginRight, CSSValueAuto); in parseMappedAttribute() 62 } else if (equalIgnoringCase(attr->value(), "right")) { in parseMappedAttribute() 63 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto); in parseMappedAttribute() 64 addCSSProperty(attr, CSSPropertyMarginRight, "0"); in parseMappedAttribute() 66 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto); in parseMappedAttribute() 67 addCSSProperty(attr, CSSPropertyMarginRight, CSSValueAuto); in parseMappedAttribute() [all …]
|
D | HTMLBodyElement.cpp | 86 void HTMLBodyElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 88 if (attr->name() == backgroundAttr) { in parseMappedAttribute() 89 String url = parseURL(attr->value()); in parseMappedAttribute() 91 … addCSSImageProperty(attr, CSSPropertyBackgroundImage, document()->completeURL(url).string()); in parseMappedAttribute() 92 } else if (attr->name() == marginwidthAttr || attr->name() == leftmarginAttr) { in parseMappedAttribute() 93 addCSSLength(attr, CSSPropertyMarginRight, attr->value()); in parseMappedAttribute() 94 addCSSLength(attr, CSSPropertyMarginLeft, attr->value()); in parseMappedAttribute() 95 } else if (attr->name() == marginheightAttr || attr->name() == topmarginAttr) { in parseMappedAttribute() 96 addCSSLength(attr, CSSPropertyMarginBottom, attr->value()); in parseMappedAttribute() 97 addCSSLength(attr, CSSPropertyMarginTop, attr->value()); in parseMappedAttribute() [all …]
|
D | HTMLElement.cpp | 131 void HTMLElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 133 if (attr->name() == idAttr || attr->name() == classAttr || attr->name() == styleAttr) in parseMappedAttribute() 134 return StyledElement::parseMappedAttribute(attr); in parseMappedAttribute() 137 if (attr->name() == alignAttr) { in parseMappedAttribute() 138 if (equalIgnoringCase(attr->value(), "middle")) in parseMappedAttribute() 139 addCSSProperty(attr, CSSPropertyTextAlign, "center"); in parseMappedAttribute() 141 addCSSProperty(attr, CSSPropertyTextAlign, attr->value()); in parseMappedAttribute() 142 } else if (attr->name() == contenteditableAttr) { in parseMappedAttribute() 143 setContentEditable(attr); in parseMappedAttribute() 144 } else if (attr->name() == tabindexAttr) { in parseMappedAttribute() [all …]
|
D | HTMLTableElement.cpp | 318 void HTMLTableElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 323 if (attr->name() == widthAttr) in parseMappedAttribute() 324 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 325 else if (attr->name() == heightAttr) in parseMappedAttribute() 326 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 327 else if (attr->name() == borderAttr) { in parseMappedAttribute() 329 if (attr->decl()) { in parseMappedAttribute() 330 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth); in parseMappedAttribute() 335 } else if (!attr->isNull()) { in parseMappedAttribute() 337 if (attr->isEmpty()) in parseMappedAttribute() [all …]
|
D | HTMLFrameSetElement.cpp | 85 void HTMLFrameSetElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 87 if (attr->name() == rowsAttr) { in parseMappedAttribute() 88 if (!attr->isNull()) { in parseMappedAttribute() 90 m_rows = newLengthArray(attr->value().string(), m_totalRows); in parseMappedAttribute() 93 } else if (attr->name() == colsAttr) { in parseMappedAttribute() 94 if (!attr->isNull()) { in parseMappedAttribute() 96 m_cols = newLengthArray(attr->value().string(), m_totalCols); in parseMappedAttribute() 99 } else if (attr->name() == frameborderAttr) { in parseMappedAttribute() 100 if (!attr->isNull()) { in parseMappedAttribute() 102 if (attr->value().toInt() == 0) { in parseMappedAttribute() [all …]
|
D | HTMLImageElement.cpp | 78 void HTMLImageElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 80 const QualifiedName& attrName = attr->name(); in parseMappedAttribute() 87 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 89 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 92 addCSSLength(attr, CSSPropertyBorderWidth, attr->value().toInt() ? attr->value() : "0"); in parseMappedAttribute() 93 addCSSProperty(attr, CSSPropertyBorderTopStyle, CSSValueSolid); in parseMappedAttribute() 94 addCSSProperty(attr, CSSPropertyBorderRightStyle, CSSValueSolid); in parseMappedAttribute() 95 addCSSProperty(attr, CSSPropertyBorderBottomStyle, CSSValueSolid); in parseMappedAttribute() 96 addCSSProperty(attr, CSSPropertyBorderLeftStyle, CSSValueSolid); in parseMappedAttribute() 98 addCSSLength(attr, CSSPropertyMarginTop, attr->value()); in parseMappedAttribute() [all …]
|
D | HTMLOListElement.cpp | 50 void HTMLOListElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 52 if (attr->name() == typeAttr) { in parseMappedAttribute() 53 if (attr->value() == "a") in parseMappedAttribute() 54 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerAlpha); in parseMappedAttribute() 55 else if (attr->value() == "A") in parseMappedAttribute() 56 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperAlpha); in parseMappedAttribute() 57 else if (attr->value() == "i") in parseMappedAttribute() 58 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerRoman); in parseMappedAttribute() 59 else if (attr->value() == "I") in parseMappedAttribute() 60 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperRoman); in parseMappedAttribute() [all …]
|
D | HTMLPlugInElement.cpp | 150 void HTMLPlugInElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 152 if (attr->name() == widthAttr) in parseMappedAttribute() 153 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 154 else if (attr->name() == heightAttr) in parseMappedAttribute() 155 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 156 else if (attr->name() == vspaceAttr) { in parseMappedAttribute() 157 addCSSLength(attr, CSSPropertyMarginTop, attr->value()); in parseMappedAttribute() 158 addCSSLength(attr, CSSPropertyMarginBottom, attr->value()); in parseMappedAttribute() 159 } else if (attr->name() == hspaceAttr) { in parseMappedAttribute() 160 addCSSLength(attr, CSSPropertyMarginLeft, attr->value()); in parseMappedAttribute() [all …]
|
D | HTMLLIElement.cpp | 52 void HTMLLIElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 54 if (attr->name() == valueAttr) { in parseMappedAttribute() 55 m_requestedValue = attr->value().toInt(); in parseMappedAttribute() 62 } else if (attr->name() == typeAttr) { in parseMappedAttribute() 63 if (attr->value() == "a") in parseMappedAttribute() 64 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerAlpha); in parseMappedAttribute() 65 else if (attr->value() == "A") in parseMappedAttribute() 66 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperAlpha); in parseMappedAttribute() 67 else if (attr->value() == "i") in parseMappedAttribute() 68 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerRoman); in parseMappedAttribute() [all …]
|
D | HTMLFrameElementBase.cpp | 109 void HTMLFrameElementBase::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 111 if (attr->name() == srcAttr) in parseMappedAttribute() 112 setLocation(parseURL(attr->value())); in parseMappedAttribute() 113 else if (attr->name() == idAttr) { in parseMappedAttribute() 115 HTMLFrameOwnerElement::parseMappedAttribute(attr); in parseMappedAttribute() 116 m_frameName = attr->value(); in parseMappedAttribute() 117 } else if (attr->name() == nameAttr) { in parseMappedAttribute() 118 m_frameName = attr->value(); in parseMappedAttribute() 122 } else if (attr->name() == marginwidthAttr) { in parseMappedAttribute() 123 m_marginWidth = attr->value().toInt(); in parseMappedAttribute() [all …]
|
D | HTMLIFrameElement.cpp | 63 void HTMLIFrameElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 65 if (attr->name() == widthAttr) in parseMappedAttribute() 66 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 67 else if (attr->name() == heightAttr) in parseMappedAttribute() 68 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 69 else if (attr->name() == alignAttr) in parseMappedAttribute() 70 addHTMLAlignment(attr); in parseMappedAttribute() 71 else if (attr->name() == nameAttr) { in parseMappedAttribute() 72 const AtomicString& newName = attr->value(); in parseMappedAttribute() 79 } else if (attr->name() == frameborderAttr) { in parseMappedAttribute() [all …]
|
/external/openssl/crypto/x509/ |
D | x509_att.c | 122 X509_ATTRIBUTE *attr) in STACK_OF() 141 if ((new_attr=X509_ATTRIBUTE_dup(attr)) == NULL) in STACK_OF() 160 X509_ATTRIBUTE *attr; in STACK_OF() local 162 attr = X509_ATTRIBUTE_create_by_OBJ(NULL, obj, type, bytes, len); in STACK_OF() 163 if(!attr) return 0; in STACK_OF() 164 ret = X509at_add1_attr(x, attr); in STACK_OF() 165 X509_ATTRIBUTE_free(attr); in STACK_OF() 173 X509_ATTRIBUTE *attr; in STACK_OF() local 175 attr = X509_ATTRIBUTE_create_by_NID(NULL, nid, type, bytes, len); in STACK_OF() 176 if(!attr) return 0; in STACK_OF() [all …]
|
/external/webkit/WebCore/dom/ |
D | StyledElement.cpp | 68 …Declaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr) in getMappedAttributeDecl() argument 72 …n mappedAttributeDecls->get(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->v… in getMappedAttributeDecl() 82 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMapp… in setMappedAttributeDecl() argument 86 …mappedAttributeDecls->set(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->val… in setMappedAttributeDecl() 150 void StyledElement::attributeChanged(Attribute* attr, bool preserveDecls) in attributeChanged() argument 152 if (!attr->isMappedAttribute()) { in attributeChanged() 153 Element::attributeChanged(attr, preserveDecls); in attributeChanged() 157 MappedAttribute* mappedAttr = static_cast<MappedAttribute*>(attr); in attributeChanged() 167 bool needToParse = mapToEntry(attr->name(), entry); in attributeChanged() 176 else if (!attr->isNull() && entry != eNone) { in attributeChanged() [all …]
|
/external/ppp/pppd/plugins/radius/ |
D | dict.c | 46 DICT_ATTR *attr; in rc_read_dictionary() local 182 if ((attr = in rc_read_dictionary() 190 strcpy (attr->name, namestr); in rc_read_dictionary() 192 attr->vendorcode = vdict->vendorcode; in rc_read_dictionary() 194 attr->vendorcode = VENDOR_NONE; in rc_read_dictionary() 196 attr->value = value; in rc_read_dictionary() 197 attr->type = type; in rc_read_dictionary() 201 attr->next = vdict->attributes; in rc_read_dictionary() 202 vdict->attributes = attr; in rc_read_dictionary() 204 attr->next = dictionary_attributes; in rc_read_dictionary() [all …]
|
/external/elfutils/libdw/ |
D | dwarf_formblock.c | 24 dwarf_formblock (attr, return_block) in dwarf_formblock() argument 25 Dwarf_Attribute *attr; in dwarf_formblock() 28 if (attr == NULL) 34 switch (attr->form) 37 return_block->length = *(uint8_t *) attr->valp; 38 return_block->data = attr->valp + 1; 42 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); 43 return_block->data = attr->valp + 2; 47 return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); 48 return_block->data = attr->valp + 4; [all …]
|
D | dwarf_formsdata.c | 24 dwarf_formsdata (attr, return_sval) in dwarf_formsdata() argument 25 Dwarf_Attribute *attr; in dwarf_formsdata() 28 if (attr == NULL) 34 switch (attr->form) 37 *return_sval = *attr->valp; 41 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); 45 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); 49 *return_sval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp); 53 datap = attr->valp; 59 datap = attr->valp;
|
D | dwarf_formudata.c | 24 dwarf_formudata (attr, return_uval) in dwarf_formudata() argument 25 Dwarf_Attribute *attr; in dwarf_formudata() 28 if (attr == NULL) 34 switch (attr->form) 37 *return_uval = *attr->valp; 41 *return_uval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); 45 *return_uval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); 49 *return_uval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp); 53 datap = attr->valp; 59 datap = attr->valp;
|
/external/webkit/WebCore/wml/ |
D | WMLImageElement.cpp | 67 void WMLImageElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 69 const QualifiedName& attrName = attr->name(); in parseMappedAttribute() 77 addCSSLength(attr, CSSPropertyWidth, attr->value()); in parseMappedAttribute() 79 addCSSLength(attr, CSSPropertyHeight, attr->value()); in parseMappedAttribute() 81 addCSSLength(attr, CSSPropertyMarginTop, attr->value()); in parseMappedAttribute() 82 addCSSLength(attr, CSSPropertyMarginBottom, attr->value()); in parseMappedAttribute() 84 addCSSLength(attr, CSSPropertyMarginLeft, attr->value()); in parseMappedAttribute() 85 addCSSLength(attr, CSSPropertyMarginRight, attr->value()); in parseMappedAttribute() 87 HTMLElement::addHTMLAlignmentToStyledElement(this, attr); in parseMappedAttribute() 89 WMLElement::parseMappedAttribute(attr); in parseMappedAttribute() [all …]
|
/external/webkit/WebCore/svg/ |
D | SVGImageElement.cpp | 58 void SVGImageElement::parseMappedAttribute(MappedAttribute *attr) in parseMappedAttribute() argument 60 if (attr->name() == SVGNames::xAttr) in parseMappedAttribute() 61 setXBaseValue(SVGLength(LengthModeWidth, attr->value())); in parseMappedAttribute() 62 else if (attr->name() == SVGNames::yAttr) in parseMappedAttribute() 63 setYBaseValue(SVGLength(LengthModeHeight, attr->value())); in parseMappedAttribute() 64 else if (attr->name() == SVGNames::preserveAspectRatioAttr) { in parseMappedAttribute() 65 const UChar* c = attr->value().characters(); in parseMappedAttribute() 66 const UChar* end = c + attr->value().length(); in parseMappedAttribute() 68 } else if (attr->name() == SVGNames::widthAttr) { in parseMappedAttribute() 69 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value())); in parseMappedAttribute() [all …]
|
D | SVGElement.cpp | 149 void SVGElement::parseMappedAttribute(MappedAttribute* attr) in parseMappedAttribute() argument 152 if (attr->name() == onloadAttr) in parseMappedAttribute() 153 setInlineEventListenerForTypeAndAttribute(eventNames().loadEvent, attr); in parseMappedAttribute() 154 else if (attr->name() == onclickAttr) in parseMappedAttribute() 155 setInlineEventListenerForTypeAndAttribute(eventNames().clickEvent, attr); in parseMappedAttribute() 156 else if (attr->name() == onmousedownAttr) in parseMappedAttribute() 157 setInlineEventListenerForTypeAndAttribute(eventNames().mousedownEvent, attr); in parseMappedAttribute() 158 else if (attr->name() == onmousemoveAttr) in parseMappedAttribute() 159 setInlineEventListenerForTypeAndAttribute(eventNames().mousemoveEvent, attr); in parseMappedAttribute() 160 else if (attr->name() == onmouseoutAttr) in parseMappedAttribute() [all …]
|
/external/wpa_supplicant/ |
D | eap_sim.c | 192 struct eap_sim_attrs *attr) in eap_sim_learn_ids() argument 194 if (attr->next_pseudonym) { in eap_sim_learn_ids() 196 data->pseudonym = os_malloc(attr->next_pseudonym_len); in eap_sim_learn_ids() 202 os_memcpy(data->pseudonym, attr->next_pseudonym, in eap_sim_learn_ids() 203 attr->next_pseudonym_len); in eap_sim_learn_ids() 204 data->pseudonym_len = attr->next_pseudonym_len; in eap_sim_learn_ids() 211 if (attr->next_reauth_id) { in eap_sim_learn_ids() 213 data->reauth_id = os_malloc(attr->next_reauth_id_len); in eap_sim_learn_ids() 219 os_memcpy(data->reauth_id, attr->next_reauth_id, in eap_sim_learn_ids() 220 attr->next_reauth_id_len); in eap_sim_learn_ids() [all …]
|