HomeSort by relevance Sort by last modified time
    Searched defs:ParseNode (Results 1 - 6 of 6) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternParser.cs 53 object node = ParseNode();
67 object root = ParseNode();
79 object child = ParseNode();
94 public virtual object ParseNode() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternParser.cs 60 object node = ParseNode();
76 object root = ParseNode();
93 object child = ParseNode();
109 public virtual object ParseNode()
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpressionNode.h 53 class ParseNode : public NoBaseWillBeGarbageCollectedFinalized<ParseNode> {
55 virtual ~ParseNode() { }
59 class Expression : public ParseNode {
  /external/clang/test/Analysis/
unions.cpp 8 struct ParseNode {
11 ParseNode *data;
14 struct Definition : public ParseNode { };
16 void CloneParseTree(ParseNode *opn, ParseNode *pn, ParseNode *x) {
35 struct ParseNode {
43 ParseNode *data;
47 struct Definition : public ParseNode { };
49 void CloneParseTree(ParseNode *opn, ParseNode *pn, ParseNode *x)
    [all...]
  /external/chromium_org/tools/gn/
parse_tree.cc 35 ParseNode::ParseNode() {
38 ParseNode::~ParseNode() {
41 const AccessorNode* ParseNode::AsAccessor() const { return NULL; }
42 const BinaryOpNode* ParseNode::AsBinaryOp() const { return NULL; }
43 const BlockNode* ParseNode::AsBlock() const { return NULL; }
44 const ConditionNode* ParseNode::AsConditionNode() const { return NULL; }
45 const FunctionCallNode* ParseNode::AsFunctionCall() const { return NULL; }
46 const IdentifierNode* ParseNode::AsIdentifier() const { return NULL;
    [all...]
parse_tree.h 67 // ParseNode -------------------------------------------------------------------
70 class ParseNode {
72 ParseNode();
73 virtual ~ParseNode();
107 DISALLOW_COPY_AND_ASSIGN(ParseNode);
135 class AccessorNode : public ParseNode {
154 const ParseNode* index() const { return index_.get(); }
155 void set_index(scoped_ptr<ParseNode> i) { index_ = i.Pass(); }
170 scoped_ptr<ParseNode> index_;
178 class BinaryOpNode : public ParseNode {
    [all...]

Completed in 140 milliseconds