Home
last modified time | relevance | path

Searched refs:SectionContentsASTNode (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.h727 class SectionContentsASTNode : public ASTNode
730 SectionContentsASTNode() : m_sectionExpr() {} in SectionContentsASTNode() function
731 SectionContentsASTNode(ExprASTNode * section) : m_sectionExpr(section) {} in SectionContentsASTNode() function
732 SectionContentsASTNode(const SectionContentsASTNode & other);
734 virtual ASTNode * clone() const { return new SectionContentsASTNode(*this); } in clone()
768 class DataSectionContentsASTNode : public SectionContentsASTNode
772 : SectionContentsASTNode(), m_contents(contents) in DataSectionContentsASTNode()
793 class BootableSectionContentsASTNode : public SectionContentsASTNode
797 : SectionContentsASTNode(), m_statements(statements) in BootableSectionContentsASTNode()
H A DElftosbAST.cpp1000 #pragma mark = SectionContentsASTNode =
1002 SectionContentsASTNode::SectionContentsASTNode(const SectionContentsASTNode & other) in SectionContentsASTNode() function in SectionContentsASTNode
1008 void SectionContentsASTNode::printTree(int indent) const in printTree()
1020 : SectionContentsASTNode(other), m_contents() in DataSectionContentsASTNode()
1027 SectionContentsASTNode::printTree(indent); in printTree()
1038 : SectionContentsASTNode(other), m_statements() in BootableSectionContentsASTNode()
1045 SectionContentsASTNode::printTree(indent); in printTree()
H A Delftosb_parser.y320 SectionContentsASTNode * sectionNode = dynamic_cast<SectionContentsASTNode*>($6);
H A DConversionController.cpp412 SectionContentsASTNode * node = dynamic_cast<SectionContentsASTNode*>(*it); in processSections()
H A Delftosb_parser.tab.cpp1716SectionContentsASTNode * sectionNode = dynamic_cast<SectionContentsASTNode*>((yyvsp[0].m_ast));