OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ParseNode
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpressionNode.h
51
class
ParseNode
{
53
virtual ~
ParseNode
() { }
56
class Expression : public
ParseNode
{
/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/clang/test/Analysis/
unions.cpp
6
struct
ParseNode
{
9
ParseNode
*data;
12
struct Definition : public
ParseNode
{ };
14
void CloneParseTree(
ParseNode
*opn,
ParseNode
*pn,
ParseNode
*x) {
33
struct
ParseNode
{
41
ParseNode
*data;
45
struct Definition : public
ParseNode
{ };
47
void CloneParseTree(
ParseNode
*opn, ParseNode *pn, ParseNode *x)
[
all
...]
/external/chromium_org/tools/gn/
parse_tree.cc
27
ParseNode
::
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
::AsIdentifier() const { return NULL;
[
all
...]
parse_tree.h
28
//
ParseNode
-------------------------------------------------------------------
31
class
ParseNode
{
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 71 milliseconds