Home | History | Annotate | Download | only in parser

Lines Matching refs:node

51                 XFA_ObjectType::Node,
71 CXFA_Node* node = GetFirstChild();
72 ASSERT(!node || node->GetElementType() == XFA_Element::Arc);
73 return static_cast<CXFA_Arc*>(node);
77 CXFA_Node* node = GetFirstChild();
78 ASSERT(!node || node->GetElementType() == XFA_Element::Line);
79 return static_cast<CXFA_Line*>(node);
83 CXFA_Node* node = GetFirstChild();
84 ASSERT(!node || node->GetElementType() == XFA_Element::Rectangle);
85 return static_cast<CXFA_Rectangle*>(node);
89 CXFA_Node* node = GetFirstChild();
90 ASSERT(!node || node->GetElementType() == XFA_Element::Text);
91 return static_cast<CXFA_Text*>(node);
95 CXFA_Node* node = GetFirstChild();
96 ASSERT(!node || node->GetElementType() == XFA_Element::ExData);
97 return static_cast<CXFA_ExData*>(node);
101 CXFA_Node* node = GetFirstChild();
102 ASSERT(!node || node->GetElementType() == XFA_Element::Image);
103 return static_cast<CXFA_Image*>(node);