Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/elftosb2/
H A DElftosbAST.h1063 class SectionASTNode : public ASTNode
1074 SectionASTNode(std::string * name) in SectionASTNode() function
1079 SectionASTNode(std::string * name, match_action_t action) in SectionASTNode() function
1084 SectionASTNode(std::string * name, std::string * source) in SectionASTNode() function
1089 SectionASTNode(const SectionASTNode & other);
1091 virtual ASTNode * clone() const { return new SectionASTNode(*this); } in clone()
H A Delftosb_parser.y504 $$ = new SectionASTNode($1, SectionASTNode::kInclude);
509 $$ = new SectionASTNode($2, SectionASTNode::kExclude);
H A DElftosbAST.cpp1215 #pragma mark = SectionASTNode =
1217 SectionASTNode::SectionASTNode(const SectionASTNode & other) in SectionASTNode() function in SectionASTNode
1233 void SectionASTNode::printTree(int indent) const in printTree()
H A DConversionController.cpp1081 SectionASTNode * sectionNode; in createSourceFromNode()
1117 else if (sectionNode = dynamic_cast<SectionASTNode*>(dataNode)) in createSourceFromNode()
1152 sectionNode = dynamic_cast<SectionASTNode*>(node); in createSourceFromNode()
1157 bool isInclude = sectionNode->getAction() == SectionASTNode::kInclude; in createSourceFromNode()
H A Delftosb_parser.tab.cpp1951 (yyval.m_ast) = new SectionASTNode((yyvsp[0].m_str), SectionASTNode::kInclude);
1958 (yyval.m_ast) = new SectionASTNode((yyvsp[0].m_str), SectionASTNode::kExclude);