/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 110 public virtual object DupNode( object treeNode ) in DupNode() argument 112 object d = adaptor.DupNode( treeNode ); in DupNode() 117 public object DupNode(int type, object treeNode) in DupNode() argument 119 object d = adaptor.DupNode(type, treeNode); in DupNode() 124 public object DupNode(object treeNode, string text) in DupNode() argument 126 object d = adaptor.DupNode(treeNode, text); in DupNode() 131 public object DupNode(int type, object treeNode, string text) in DupNode() argument 133 object d = adaptor.DupNode(type, treeNode, text); in DupNode()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | ITreeAdaptor.cs | 116 object DupNode(object treeNode); in DupNode() argument 118 object DupNode(int type, object treeNode); in DupNode() argument 120 object DupNode(object treeNode, string text); in DupNode() argument 122 object DupNode(int type, object treeNode, string text); in DupNode() argument
|
D | BaseTreeAdaptor.cs | 87 public virtual object DupNode(int type, object treeNode) in DupNode() argument 89 object t = DupNode(treeNode); in DupNode() 94 public virtual object DupNode(object treeNode, string text) in DupNode() argument 96 object t = DupNode(treeNode); in DupNode() 101 public virtual object DupNode(int type, object treeNode, string text) in DupNode() argument 103 object t = DupNode(treeNode); in DupNode() 405 public virtual object DupNode(object treeNode) in DupNode() argument 407 ITree tree = GetTree(treeNode); in DupNode()
|
/external/aac/libAACdec/src/ |
D | aacdec_hcrs.cpp | 589 UINT treeNode; in Hcr_State_BODY_ONLY() local 618 treeNode = iNode[codewordOffset]; in Hcr_State_BODY_ONLY() 628 treeNode, &branchValue, &branchNode); in Hcr_State_BODY_ONLY() 665 treeNode = *( in Hcr_State_BODY_ONLY() 670 iNode[codewordOffset] = treeNode; /* store updated treeNode because maybe in Hcr_State_BODY_ONLY() 726 UINT treeNode; in Hcr_State_BODY_SIGN__BODY() local 752 treeNode = iNode[codewordOffset]; in Hcr_State_BODY_SIGN__BODY() 762 treeNode, &branchValue, &branchNode); in Hcr_State_BODY_SIGN__BODY() 819 treeNode = *( in Hcr_State_BODY_SIGN__BODY() 824 iNode[codewordOffset] = treeNode; /* store updated treeNode because maybe in Hcr_State_BODY_SIGN__BODY() [all …]
|
D | rvlc.cpp | 251 UINT treeNode; in rvlcDecodeEscapeWord() local 260 treeNode = *pEscTree; /* init at starting node */ in rvlcDecodeEscapeWord() 269 treeNode, &branchValue, &branchNode); in rvlcDecodeEscapeWord() 284 treeNode = *( in rvlcDecodeEscapeWord() 372 UINT treeNode = *pRvlCodeTree; in decodeRVLCodeword() local 381 treeNode, &branchValue, &branchNode); in decodeRVLCodeword() 414 treeNode = *( in decodeRVLCodeword()
|
D | aacdec_hcr.h | 117 void CarryBitToBranchValue(UCHAR carryBit, UINT treeNode, UINT *branchValue,
|
D | aacdec_hcr.cpp | 1314 void CarryBitToBranchValue(UCHAR carryBit, UINT treeNode, UINT *branchValue, in CarryBitToBranchValue() argument 1318 (treeNode & MASK_LEFT) >> LEFT_OFFSET; /* MASK_LEFT: 00FFF000 */ in CarryBitToBranchValue() 1320 *branchNode = treeNode & MASK_RIGHT; /* MASK_RIGHT: 00000FFF */ in CarryBitToBranchValue() 1341 UINT treeNode; in DecodePCW_Body() local 1346 treeNode = *pCurrentTree; /* get first node of current tree belonging to in DecodePCW_Body() 1357 CarryBitToBranchValue(carryBit, treeNode, &branchValue, &branchNode); in DecodePCW_Body() 1364 treeNode = *( in DecodePCW_Body()
|
/external/antlr/runtime/C/src/ |
D | antlr3commontreeadaptor.c | 46 …tic pANTLR3_BASE_TREE dupNode (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE treeNode); 253 dupNode (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE treeNode) in dupNode() argument 255 return treeNode == NULL ? NULL : (pANTLR3_BASE_TREE)treeNode->dupNode(treeNode); in dupNode()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 100 public virtual object DupNode(object treeNode) { in DupNode() argument 101 object d = adaptor.DupNode(treeNode); in DupNode()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | ITreeAdaptor.cs | 66 object DupNode(object treeNode); in DupNode() argument
|
D | BaseTreeAdaptor.cs | 306 public abstract object DupNode(object treeNode); in DupNode() argument
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeAdaptor.java | 100 public Object dupNode(Object treeNode) { in dupNode() argument 101 Object d = adaptor.dupNode(treeNode); in dupNode()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
D | ITreeAdaptor`1.cs | 54 T DupNode(T treeNode); in DupNode() argument
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeAdaptor.java | 57 public Object dupNode(Object treeNode); in dupNode() argument
|
/external/antlr/runtime/C/include/ |
D | antlr3basetreeadaptor.h | 98 void * (*dupNode) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * treeNode);
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3commontreeadaptor.hpp | 75 TreeType* dupNode( TreeType* treeNode);
|
D | antlr3commontreeadaptor.inl | 233 …ommonTreeAdaptor<ImplTraits>::TreeType* CommonTreeAdaptor<ImplTraits>::dupNode( TreeType* treeNode) argument 235 return (treeNode == NULL) ? NULL : treeNode->dupNode();
|
/external/antlr/runtime/Python3/antlr3/ |
D | tree.py | 298 def dupNode(self, treeNode): argument 1479 def dupNode(self, treeNode): argument 1488 if treeNode is None: 1491 return treeNode.dupNode()
|
D | debug.py | 273 def dupNode(self, treeNode): argument 274 d = self.adaptor.dupNode(treeNode)
|
/external/antlr/runtime/Python/antlr3/ |
D | tree.py | 298 def dupNode(self, treeNode): argument 1488 def dupNode(self, treeNode): argument 1497 if treeNode is None: 1500 return treeNode.dupNode()
|
D | debug.py | 266 def dupNode(self, treeNode): argument 267 d = self.adaptor.dupNode(treeNode)
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeAdaptor.as | 55 function dupNode(treeNode:Object):Object;
|
/external/antlr/runtime/C/ |
D | README | 538 * Cleaned up some comments and removed field treeNode
|
/external/antlr/tool/ |
D | CHANGES.txt | 2179 * Cleaned up some comments and removed field treeNode
|