/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
D | graph-view.js | 24 function mergeCategoryTree(snapNode, treeNode) { argument 27 if (!('children' in treeNode)) 28 treeNode.children = {}; 30 if (!(child.id in treeNode.children)) 31 treeNode.children[child.id] = {}; 32 mergeCategoryTree(child, treeNode.children[child.id]); 35 treeNode.name = snapNode.name;
|
/external/antlr/antlr-3.4/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/antlr-3.4/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 | 524 UINT treeNode; in Hcr_State_BODY_ONLY() local 553 treeNode = iNode[codewordOffset]; in Hcr_State_BODY_ONLY() 565 treeNode, in Hcr_State_BODY_ONLY() 587 …treeNode = *(pCurrentTree + branchValue); /* update tr… in Hcr_State_BODY_ONLY() 590 …iNode[codewordOffset] = treeNode; /* store… in Hcr_State_BODY_ONLY() 648 UINT treeNode; in Hcr_State_BODY_SIGN__BODY() local 674 treeNode = iNode[codewordOffset]; in Hcr_State_BODY_SIGN__BODY() 686 treeNode, in Hcr_State_BODY_SIGN__BODY() 722 …treeNode = *(pCurrentTree + branchValue); /* update tr… in Hcr_State_BODY_SIGN__BODY() 725 …iNode[codewordOffset] = treeNode; /* store… in Hcr_State_BODY_SIGN__BODY() [all …]
|
D | rvlc.cpp | 231 UINT treeNode; in rvlcDecodeEscapeWord() local 240 treeNode = *pEscTree; /* init at starting node */ in rvlcDecodeEscapeWord() 248 treeNode, in rvlcDecodeEscapeWord() 264 …treeNode = *(pEscTree + branchValue); /* update treeNode for further step … in rvlcDecodeEscapeWord() 355 UINT treeNode = *pRvlCodeTree; in decodeRVLCodeword() local 363 treeNode, in decodeRVLCodeword() 394 …treeNode = *(pRvlCodeTree + branchValue); /* update treeNode for further step in decoding … in decodeRVLCodeword()
|
D | aacdec_hcr.h | 112 UINT treeNode,
|
D | aacdec_hcr.cpp | 1355 UINT treeNode, in CarryBitToBranchValue() argument 1360 *branchNode = (treeNode & MASK_LEFT) >> LEFT_OFFSET; /* MASK_LEFT: 00FFF000 */ in CarryBitToBranchValue() 1363 *branchNode = treeNode & MASK_RIGHT; /* MASK_RIGHT: 00000FFF */ in CarryBitToBranchValue() 1386 UINT treeNode; in DecodePCW_Body() local 1391 …treeNode = *pCurrentTree; /* get first node of cur… in DecodePCW_Body() 1404 treeNode, in DecodePCW_Body() 1412 …treeNode = *(pCurrentTree + branchValue); /* update treeNode for furth… in DecodePCW_Body()
|
/external/chromium_org/chrome/browser/ui/cocoa/content_settings/ |
D | collected_cookies_mac.mm | 226 for (NSTreeNode* treeNode in nodes) { 227 CocoaCookieTreeNode* node = [treeNode representedObject]; 228 CookieTreeNode* cookie = static_cast<CookieTreeNode*>([node treeNode]); 270 [[cocoaTreeNode representedObject] treeNode]); 298 index = allowedTreeModel_->GetIconIndex([node treeNode]); 300 index = blockedTreeModel_->GetIconIndex([node treeNode]); 330 for (NSTreeNode* treeNode in nodes) { 331 CocoaCookieTreeNode* node = [treeNode representedObject]; 332 CookieTreeNode* cookie = static_cast<CookieTreeNode*>([node treeNode]);
|
D | cookie_details.h | 180 - (id)initWithCookie:(const net::CanonicalCookie*)treeNode 221 + (CocoaCookieDetails*)createFromCookieTreeNode:(CookieTreeNode*)treeNode;
|
D | cookie_tree_node.h | 27 - (ui::TreeModelNode*)treeNode;
|
D | cookies_tree_controller_bridge.mm | 73 if ([start treeNode] == target) { 88 if ([node treeNode] == target)
|
D | cookie_tree_node.mm | 36 - (ui::TreeModelNode*)treeNode { method
|
D | cookie_details.mm | 286 + (CocoaCookieDetails*)createFromCookieTreeNode:(CookieTreeNode*)treeNode { 287 CookieTreeNode::DetailedInfo info = treeNode->GetDetailedInfo();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | NavigatorView.js | 1401 var treeNode = this; 1402 while (treeNode._isMerged) { 1403 treeNode = treeNode.parent; 1404 mergedToNodes.push(treeNode); 1410 treeNode = oldNode; 1412 nodes.push(treeNode); 1413 children = treeNode.children(); 1414 treeNode = children.length === 1 ? children[0] : null; 1415 } while (treeNode && treeNode._isMerged);
|
/external/antlr/antlr-3.4/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 : treeNode->dupNode(treeNode); in dupNode()
|
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeAdaptor.java | 96 public Object dupNode(Object treeNode) { in dupNode() argument 97 Object d = adaptor.dupNode(treeNode); in dupNode()
|
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeAdaptor.java | 57 public Object dupNode(Object treeNode); in dupNode() argument
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
D | ITreeAdaptor`1.cs | 54 T DupNode(T treeNode); in DupNode() argument
|
/external/antlr/antlr-3.4/runtime/C/include/ |
D | antlr3basetreeadaptor.h | 98 void * (*dupNode) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * treeNode);
|
/external/antlr/antlr-3.4/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()
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
D | bookmark_editor_base_controller.mm | 359 NSArray* treeNode = [self folderTreeArray]; 361 item = [treeNode objectAtIndex:[indexPath indexAtPosition:i]]; 362 treeNode = [item children];
|