Lines Matching refs:ae

714         const attribute_entry& ae(mAttributes.itemAt(i));  in getAttribute()  local
715 if (ae.ns == ns && ae.name == name) { in getAttribute()
716 return &ae; in getAttribute()
726 const attribute_entry& ae(mAttributes.itemAt(i)); in removeAttribute() local
727 if (ae.ns == ns && ae.name == name) { in removeAttribute()
739 attribute_entry * ae = &mAttributes.editItemAt(i); in editAttribute() local
740 if (ae->ns == ns && ae->name == name) { in editAttribute()
741 return ae; in editAttribute()
1360 const attribute_entry& ae = mAttributes.itemAt(i); in collect_strings() local
1361 if (ae.ns.size() > 0) { in collect_strings()
1362 dest->add(ae.ns, true); in collect_strings()
1364 if (!stripRawValues || ae.needStringValue()) { in collect_strings()
1365 dest->add(ae.string, true); in collect_strings()
1515 const attribute_entry& ae = mAttributes.itemAt(idx); in flatten_node() local
1516 if (ae.ns.size() == 0) { in flatten_node()
1517 if (ae.name == id16) { in flatten_node()
1519 } else if (ae.name == class16) { in flatten_node()
1521 } else if (ae.name == style16) { in flatten_node()
1567 const attribute_entry& ae = mAttributes.itemAt(idx); in flatten_node() local
1568 if (ae.ns.size() > 0) { in flatten_node()
1569 attr.ns.index = htodl(strings.offsetForString(ae.ns)); in flatten_node()
1573 attr.name.index = htodl(ae.namePoolIdx); in flatten_node()
1575 if (!stripRawValues || ae.needStringValue()) { in flatten_node()
1576 attr.rawValue.index = htodl(strings.offsetForString(ae.string)); in flatten_node()
1581 if (ae.value.dataType == Res_value::TYPE_NULL in flatten_node()
1582 || ae.value.dataType == Res_value::TYPE_STRING) { in flatten_node()
1585 attr.typedValue.data = htodl(strings.offsetForString(ae.string)); in flatten_node()
1588 attr.typedValue.dataType = ae.value.dataType; in flatten_node()
1589 attr.typedValue.data = htodl(ae.value.data); in flatten_node()