Home | History | Annotate | Download | only in parser

Lines Matching refs:property

321     XFA_Element property) const {
327 if (data->property == XFA_Element::Unknown)
329 if (data->property == property)
335 bool CXFA_Node::HasProperty(XFA_Element property) const {
336 return !!GetPropertyData(property);
339 bool CXFA_Node::HasPropertyFlags(XFA_Element property, uint8_t flags) const {
340 const PropertyData* data = GetPropertyData(property);
344 uint8_t CXFA_Node::PropertyOccuranceCount(XFA_Element property) const {
345 const PropertyData* data = GetPropertyData(property);
355 if (data->property == XFA_Element::Unknown)
358 return {data->property};
442 Optional<XFA_Element> property =
444 if (!property)
447 CXFA_Node* pNewNode = m_pDocument->CreateNode(GetPacketType(), *property);