Searched defs:ParseNode (Results 1 - 6 of 6) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreePatternParser.cs53 object node = ParseNode();
67 object root = ParseNode();
79 object child = ParseNode();
94 public virtual object ParseNode() { method in class:Antlr.Runtime.Tree.TreePatternParser
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternParser.cs60 object node = ParseNode();
76 object root = ParseNode();
93 object child = ParseNode();
109 public virtual object ParseNode() method in class:Antlr.Runtime.Tree.TreePatternParser
/external/clang/test/Analysis/
H A Dunions.cpp6 struct ParseNode { struct in namespace:PR14054_reduced
9 ParseNode *data;
12 struct Definition : public ParseNode { };
14 void CloneParseTree(ParseNode *opn, ParseNode *pn, ParseNode *x) {
33 struct ParseNode { struct in namespace:PR14054_original
41 ParseNode *data;
45 struct Definition : public ParseNode { };
47 void CloneParseTree(ParseNode *op
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathExpressionNode.h51 class ParseNode { class in namespace:WebCore::XPath
53 virtual ~ParseNode() { }
56 class Expression : public ParseNode {
/external/chromium_org/tools/gn/
H A Dparse_tree.cc27 ParseNode::ParseNode() { function in class:ParseNode
30 ParseNode::~ParseNode() {
33 const AccessorNode* ParseNode::AsAccessor() const { return NULL; }
34 const BinaryOpNode* ParseNode::AsBinaryOp() const { return NULL; }
35 const BlockNode* ParseNode::AsBlock() const { return NULL; }
36 const ConditionNode* ParseNode::AsConditionNode() const { return NULL; }
37 const FunctionCallNode* ParseNode::AsFunctionCall() const { return NULL; }
38 const IdentifierNode* ParseNode
[all...]
H A Dparse_tree.h28 // ParseNode -------------------------------------------------------------------
31 class ParseNode { class
33 ParseNode();
34 virtual ~ParseNode();
61 DISALLOW_COPY_AND_ASSIGN(ParseNode);
70 class AccessorNode : public ParseNode {
89 const ParseNode* index() const { return index_.get(); }
90 void set_index(scoped_ptr<ParseNode> i) { index_ = i.Pass(); }
94 scoped_ptr<ParseNode> index_;
101 class BinaryOpNode : public ParseNode {
[all...]

Completed in 1007 milliseconds