HomeSort by: relevance | last modified time | path
    Searched refs:SectionASTNode (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbAST.h 1063 class SectionASTNode : public ASTNode
1074 SectionASTNode(std::string * name)
1079 SectionASTNode(std::string * name, match_action_t action)
1084 SectionASTNode(std::string * name, std::string * source)
1089 SectionASTNode(const SectionASTNode & other);
1091 virtual ASTNode * clone() const { return new SectionASTNode(*this); }
1093 virtual std::string nodeName() const { return "SectionASTNode"; }
elftosb_parser.y 504 $$ = new SectionASTNode($1, SectionASTNode::kInclude);
509 $$ = new SectionASTNode($2, SectionASTNode::kExclude);
ElftosbAST.cpp 1215 #pragma mark = SectionASTNode =
1217 SectionASTNode::SectionASTNode(const SectionASTNode & other)
1233 void SectionASTNode::printTree(int indent) const
ConversionController.cpp 1063 //! - SectionASTNode
1081 SectionASTNode * sectionNode;
1117 else if (sectionNode = dynamic_cast<SectionASTNode*>(dataNode))
1152 sectionNode = dynamic_cast<SectionASTNode*>(node);
1157 bool isInclude = sectionNode->getAction() == SectionASTNode::kInclude;
elftosb_parser.tab.cpp 1954 (yyval.m_ast) = new SectionASTNode((yyvsp[0].m_str), SectionASTNode::kInclude);
1961 (yyval.m_ast) = new SectionASTNode((yyvsp[0].m_str), SectionASTNode::kExclude);

Completed in 56 milliseconds