Home
last modified time | relevance | path

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

/third_party/gn/src/gn/
Dparse_tree.cc318 base::Value AccessorNode::GetJSONNode() const { in GetJSONNode() function in AccessorNode
322 child.GetList().push_back(subscript_->GetJSONNode()); in GetJSONNode()
325 child.GetList().push_back(member_->GetJSONNode()); in GetJSONNode()
516 base::Value BinaryOpNode::GetJSONNode() const { in GetJSONNode() function in BinaryOpNode
519 child.GetList().push_back(left_->GetJSONNode()); in GetJSONNode()
520 child.GetList().push_back(right_->GetJSONNode()); in GetJSONNode()
608 base::Value BlockNode::GetJSONNode() const { in GetJSONNode() function in BlockNode
612 statements.GetList().push_back(statement->GetJSONNode()); in GetJSONNode()
614 dict.SetKey(kJsonEnd, end_->GetJSONNode()); in GetJSONNode()
704 base::Value ConditionNode::GetJSONNode() const { in GetJSONNode() function in ConditionNode
[all …]
Dparse_tree.h107 virtual base::Value GetJSONNode() const = 0;
168 base::Value GetJSONNode() const override;
241 base::Value GetJSONNode() const override;
290 base::Value GetJSONNode() const override;
340 base::Value GetJSONNode() const override;
385 base::Value GetJSONNode() const override;
425 base::Value GetJSONNode() const override;
455 base::Value GetJSONNode() const override;
512 base::Value GetJSONNode() const override;
542 base::Value GetJSONNode() const override;
[all …]
Dparser_unittest.cc34 RenderToText(result->GetJSONNode(), 0, collector); in DoParserPrintTest()
50 RenderToText(result->GetJSONNode(), 0, collector); in DoExpressionPrintTest()
Doperators_unittest.cc43 base::Value GetJSONNode() const override { return base::Value(); } in GetJSONNode() function in __anon495374550111::TestParseNode
Dcommand_format.cc1244 RenderToText(root->GetJSONNode(), 0, os); in DoFormat()
1249 root->GetJSONNode(), base::JSONWriter::OPTIONS_PRETTY_PRINT, &os); in DoFormat()