HomeSort by relevance Sort by last modified time
    Searched refs:GetChild (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/pdfium/xfa/fxfa/parser/
cxfa_assist.cpp 14 return CXFA_ToolTip(m_pNode->GetChild(0, XFA_Element::ToolTip));
cxfa_calculate.cpp 21 return CXFA_Script(m_pNode->GetChild(0, XFA_Element::Script));
25 CXFA_Node* pNode = m_pNode->GetChild(0, XFA_Element::Message);
29 CXFA_Text text(pNode->GetChild(0, XFA_Element::Text));
cxfa_bind.cpp 14 if (CXFA_Node* pPicture = m_pNode->GetChild(0, XFA_Element::Picture))
cxfa_line.cpp 20 return CXFA_Edge(m_pNode->GetChild(0, XFA_Element::Edge));
cxfa_caption.cpp 33 return CXFA_Margin(m_pNode ? m_pNode->GetChild(0, XFA_Element::Margin)
38 return CXFA_Font(m_pNode ? m_pNode->GetChild(0, XFA_Element::Font) : nullptr);
42 return CXFA_Value(m_pNode ? m_pNode->GetChild(0, XFA_Element::Value)
cxfa_event.cpp 34 return CXFA_Script(m_pNode->GetChild(0, XFA_Element::Script));
38 return CXFA_Submit(m_pNode->GetChild(0, XFA_Element::Submit));
cxfa_fill.cpp 29 if (CXFA_Node* pNode = m_pNode->GetChild(0, XFA_Element::Color)) {
53 if (CXFA_Node* pColor = pNode->GetChild(0, XFA_Element::Color)) {
67 if (CXFA_Node* pColor = pNode->GetChild(0, XFA_Element::Color)) {
81 if (CXFA_Node* pColor = pNode->GetChild(0, XFA_Element::Color)) {
95 if (CXFA_Node* pColor = pNode->GetChild(0, XFA_Element::Color)) {
cxfa_attachnodelist.cpp 42 return m_pAttachNode->GetChild(
cxfa_validate.cpp 113 if (CXFA_Node* pNode = m_pNode->GetChild(0, XFA_Element::Picture))
118 return CXFA_Script(m_pNode->GetChild(0, XFA_Element::Script));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TreeExtensions.cs 41 return tree.Parent.GetChild( tree.ChildIndex + 1 );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammarHelper.cs 68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions )
71 localMemory[function.GetChild( 1 ).Text] = paramValue;
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
86 CommonTree formalPar = (CommonTree)f.GetChild( 1 );
ProfileTreeGrammarHelper.cs 68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions )
71 localMemory[function.GetChild( 1 ).Text] = paramValue;
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
86 CommonTree formalPar = (CommonTree)f.GetChild( 1 );
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITree.cs 52 ITree GetChild(int i);
TreeVisitor.cs 68 object child = adaptor.GetChild(t, i);
BaseTreeAdaptor.cs 101 object child = GetChild(t, i);
164 newRootTree = (ITree)newRootTree.GetChild(0);
185 r = (ITree)r.GetChild(0);
239 public virtual object GetChild(object t, int i) {
240 return ((ITree)t).GetChild(i);
CommonTreeAdaptor.cs 174 public override object GetChild(object t, int i) {
178 return ((ITree)t).GetChild(i);
TreeIterator.cs 109 tree = adaptor.GetChild(tree, 0);
132 tree = adaptor.GetChild(parent, nextSiblingIndex);
RewriteRuleSubtreeStream.cs 81 tree = adaptor.GetChild(tree, 0);
BaseTree.cs 141 public virtual ITree GetChild(int i) {
189 ITree c = t.GetChild(i);
295 newChildren.Add(newTree.GetChild(i));
354 ITree child = GetChild(c);
373 BaseTree child = (BaseTree)this.GetChild(c);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITree.cs 54 ITree GetChild( int i );
TreeVisitor.cs 70 object child = adaptor.GetChild( t, i );
TreeIterator.cs 128 tree = adaptor.GetChild( tree, 0 );
157 tree = adaptor.GetChild( parent, nextSiblingIndex );
RewriteRuleSubtreeStream.cs 88 tree = adaptor.GetChild(tree, 0);
BaseTree.cs 169 public virtual ITree GetChild( int i )
227 ITree c = t.GetChild( i );
350 newChildren.Add( newTree.GetChild( i ) );
425 ITree child = GetChild( c );
449 BaseTree child = (BaseTree)this.GetChild( c );
BaseTreeAdaptor.cs 133 object child = GetChild( t, i );
201 newRootTree = (ITree)newRootTree.GetChild( 0 );
228 r = (ITree)r.GetChild( 0 );
308 public virtual object GetChild( object t, int i )
314 return tree.GetChild(i);

Completed in 175 milliseconds

1 2 3