Lines Matching refs:printTree

19 void ASTNode::printTree(int indent) const  in printTree()  function in ASTNode
83 void ListASTNode::printTree(int indent) const in printTree() function in ListASTNode
85 ASTNode::printTree(indent); in printTree()
93 (*it)->printTree(indent + 2); in printTree()
143 void CommandFileASTNode::printTree(int indent) const in printTree() function in CommandFileASTNode
145 ASTNode::printTree(indent); in printTree()
149 if (m_options) m_options->printTree(indent + 2); in printTree()
153 if (m_constants) m_constants->printTree(indent + 2); in printTree()
157 if (m_sources) m_sources->printTree(indent + 2); in printTree()
161 if (m_sections) m_sections->printTree(indent + 2); in printTree()
210 void IntConstExprASTNode::printTree(int indent) const in printTree() function in IntConstExprASTNode
237 void VariableExprASTNode::printTree(int indent) const in printTree() function in VariableExprASTNode
266 void SymbolRefExprASTNode::printTree(int indent) const in printTree() function in SymbolRefExprASTNode
349 void NegativeExprASTNode::printTree(int indent) const in printTree() function in NegativeExprASTNode
351 ExprASTNode::printTree(indent); in printTree()
352 if (m_expr) m_expr->printTree(indent + 1); in printTree()
383 void BooleanNotExprASTNode::printTree(int indent) const in printTree() function in BooleanNotExprASTNode
385 ExprASTNode::printTree(indent); in printTree()
386 if (m_expr) m_expr->printTree(indent + 1); in printTree()
418 void SourceFileFunctionASTNode::printTree(int indent) const in printTree() function in SourceFileFunctionASTNode
420 ExprASTNode::printTree(indent); in printTree()
465 void DefinedOperatorASTNode::printTree(int indent) const in printTree() function in DefinedOperatorASTNode
467 ExprASTNode::printTree(indent); in printTree()
493 void SizeofOperatorASTNode::printTree(int indent) const in printTree() function in SizeofOperatorASTNode
495 ExprASTNode::printTree(indent); in printTree()
506 m_symbol->printTree(indent + 2); in printTree()
600 void BinaryOpExprASTNode::printTree(int indent) const in printTree() function in BinaryOpExprASTNode
602 ExprASTNode::printTree(indent); in printTree()
606 if (m_left) m_left->printTree(indent + 2); in printTree()
613 if (m_right) m_right->printTree(indent + 2); in printTree()
823 void IntSizeExprASTNode::printTree(int indent) const in printTree() function in IntSizeExprASTNode
825 ExprASTNode::printTree(indent); in printTree()
845 if (m_expr) m_expr->printTree(indent + 2); in printTree()
873 void ExprConstASTNode::printTree(int indent) const in printTree() function in ExprConstASTNode
875 ConstASTNode::printTree(indent); in printTree()
876 if (m_expr) m_expr->printTree(indent + 1); in printTree()
887 void StringConstASTNode::printTree(int indent) const in printTree() function in StringConstASTNode
901 void BlobConstASTNode::printTree(int indent) const in printTree() function in BlobConstASTNode
918 void IVTConstASTNode::printTree(int indent) const in printTree() function in IVTConstASTNode
924 m_fields->printTree(indent + 1); in printTree()
937 void AssignmentASTNode::printTree(int indent) const in printTree() function in AssignmentASTNode
942 if (m_value) m_value->printTree(indent + 1); in printTree()
961 void PathSourceDefASTNode::printTree(int indent) const in printTree() function in PathSourceDefASTNode
963 SourceDefASTNode::printTree(indent); in printTree()
972 m_attributes->printTree(indent+2); in printTree()
984 void ExternSourceDefASTNode::printTree(int indent) const in printTree() function in ExternSourceDefASTNode
986 SourceDefASTNode::printTree(indent); in printTree()
990 if (m_expr) m_expr->printTree(indent + 2); in printTree()
996 m_attributes->printTree(indent+2); in printTree()
1008 void SectionContentsASTNode::printTree(int indent) const in printTree() function in SectionContentsASTNode
1010 ASTNode::printTree(indent); in printTree()
1014 if (m_sectionExpr) m_sectionExpr->printTree(indent + 2); in printTree()
1025 void DataSectionContentsASTNode::printTree(int indent) const in printTree() function in DataSectionContentsASTNode
1027 SectionContentsASTNode::printTree(indent); in printTree()
1031 m_contents->printTree(indent + 1); in printTree()
1043 void BootableSectionContentsASTNode::printTree(int indent) const in printTree() function in BootableSectionContentsASTNode
1045 SectionContentsASTNode::printTree(indent); in printTree()
1049 if (m_statements) m_statements->printTree(indent + 2); in printTree()
1077 void ModeStatementASTNode::printTree(int indent) const in printTree() function in ModeStatementASTNode
1079 StatementASTNode::printTree(indent); in printTree()
1082 if (m_modeExpr) m_modeExpr->printTree(indent + 2); in printTree()
1093 void MessageStatementASTNode::printTree(int indent) const in printTree() function in MessageStatementASTNode
1095 StatementASTNode::printTree(indent); in printTree()
1126 void LoadStatementASTNode::printTree(int indent) const in printTree() function in LoadStatementASTNode
1128 StatementASTNode::printTree(indent); in printTree()
1132 if (m_data) m_data->printTree(indent + 2); in printTree()
1136 if (m_target) m_target->printTree(indent + 2); in printTree()
1148 void CallStatementASTNode::printTree(int indent) const in printTree() function in CallStatementASTNode
1155 if (m_target) m_target->printTree(indent + 2); in printTree()
1159 if (m_arg) m_arg->printTree(indent + 2); in printTree()
1170 void SourceASTNode::printTree(int indent) const in printTree() function in SourceASTNode
1192 void SectionMatchListASTNode::printTree(int indent) const in printTree() function in SectionMatchListASTNode
1194 ASTNode::printTree(indent); in printTree()
1200 m_sections->printTree(indent+2); in printTree()
1233 void SectionASTNode::printTree(int indent) const in printTree() function in SectionASTNode
1267 void SymbolASTNode::printTree(int indent) const in printTree() function in SymbolASTNode
1313 void AddressRangeASTNode::printTree(int indent) const in printTree() function in AddressRangeASTNode
1315 ASTNode::printTree(indent); in printTree()
1319 if (m_begin) m_begin->printTree(indent + 2); in printTree()
1323 if (m_end) m_end->printTree(indent + 2); in printTree()
1340 void FromStatementASTNode::printTree(int indent) const in printTree() function in FromStatementASTNode
1342 ASTNode::printTree(indent); in printTree()
1350 if (m_statements) m_statements->printTree(indent + 2); in printTree()