/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTree.js | 2 * actually have any user data. ANTLR v3 uses a list of children approach 4 * an empty node whose children represent the list. An empty, but 13 if ( !this.children || i>=this.children.length ) { 16 return this.children[i]; 19 /** Get the children internal List; note that if you directly mess with 23 return this.children; 28 for (i = 0; this.children && i < this.children.length; i++) { 29 t = this.children[i]; 38 if ( !this.children ) { 41 return this.children.length; [all …]
|
/external/yapf/yapf/yapflib/ |
D | split_penalty.py | 71 for child in node.children: 81 _SetUnbreakable(node.children[1]) 82 if len(node.children) > 4: 84 _SetUnbreakable(node.children[2]) 86 _SetUnbreakable(node.children[-2]) 95 while pytree_utils.NodeName(node.children[colon_idx]) == 'simple_stmt': 97 _SetUnbreakable(node.children[colon_idx]) 99 while colon_idx < len(node.children): 100 if isinstance(node.children[colon_idx], pytree.Leaf): 101 if node.children[colon_idx].value == ':': [all …]
|
D | blank_line_calculator.py | 67 if pytree_utils.NodeName(node.children[0]) == 'COMMENT': 68 self.last_comment_lineno = node.children[0].lineno 72 self.last_comment_lineno == node.children[0].lineno - 1): 73 self._SetNumNewlines(node.children[0], _NO_BLANK_LINES) 75 self._SetNumNewlines(node.children[0], self._GetNumNewlines(node)) 76 for child in node.children: 85 for child in node.children[index:]: 96 self._SetNumNewlines(node.children[0], None) 101 for child in node.children[index:]: 125 Class and function definitions have leading comments as children of the [all …]
|
D | identify_container.py | 40 for child in node.children: 43 if len(node.children) != 3: 45 if pytree_utils.NodeName(node.children[0]) != 'LPAR': 48 if pytree_utils.NodeName(node.children[1]) == 'arglist': 49 for child in node.children[1].children: 51 pytree_utils.FirstLeafNode(child), node.children[0]) 54 pytree_utils.FirstLeafNode(node.children[1]), node.children[0]) 57 for child in node.children: 60 if len(node.children) != 3: 62 if pytree_utils.NodeName(node.children[0]) != 'LPAR': [all …]
|
/external/antlr/runtime/ObjC/Framework/ |
D | BaseTree.m | 70 * as there are no fields other than the children list, which cannot 71 * be copied as the children are not considered part of this node. 82 children = nil; 92 // children = [[AMutableArray arrayWithCapacity:5] retain]; 93 // [children addObject:node]; 105 if ( children ) { 107 NSLog( @"called dealloc children in BaseTree" ); 109 [children release]; 116 if ( children == nil || i >= [children count] ) { 119 return (id<BaseTree>)[children objectAtIndex:i]; [all …]
|
/external/antlr/runtime/C/src/ |
D | antlr3basetree.c | 75 tree->children = NULL; in antlr3BaseTreeNew() 101 if (tree->children != NULL) in getFirstChildWithType() 103 cs = tree->children->size(tree->children); in getFirstChildWithType() 106 t = (pANTLR3_BASE_TREE) (tree->children->get(tree->children, i)); in getFirstChildWithType() 121 if ( tree->children == NULL in getChild() 122 || i >= tree->children->size(tree->children)) in getChild() 126 return tree->children->get(tree->children, i); in getChild() 133 if (tree->children == NULL) in getChildCount() 139 return tree->children->size(tree->children); in getChildCount() 156 if (child->children != NULL && child->children == tree->children) in addChild() [all …]
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTree.java | 34 * actually have any user data. ANTLR v3 uses a list of children approach 36 * an empty node whose children represent the list. An empty, but 40 protected List<Object> children; field in BaseTree 46 * as there are no fields other than the children list, which cannot 47 * be copied as the children are not considered part of this node. 54 if ( children==null || i>=children.size() ) { in getChild() 57 return (Tree)children.get(i); in getChild() 60 /** Get the children internal List; note that if you directly mess with 64 return children; in getChildren() 68 for (int i = 0; children!=null && i < children.size(); i++) { in getFirstChildWithType() [all …]
|
/external/yapf/yapftests/ |
D | comment_splicer_test.py | 31 self._AssertNodeType('COMMENT', node.children[0]) 32 node_value = node.children[0].value 52 expr = tree.children[0].children[0] 53 # Check that the expected node is still expr_stmt, but now it has 4 children 56 self.assertEqual(4, len(expr.children)) 57 comment_node = expr.children[3] 69 # The comment should've been added to the root's children (now 4, including 71 self.assertEqual(4, len(tree.children)) 72 comment_node = tree.children[1] 86 self.assertEqual(4, len(tree.children)) [all …]
|
D | pytree_utils_test.py | 55 self.assertEqual(2, len(tree.children)) 56 self.assertEqual('simple_stmt', pytree_utils.NodeName(tree.children[0])) 62 self.assertEqual(2, len(tree.children)) 63 self.assertEqual('simple_stmt', pytree_utils.NodeName(tree.children[0])) 68 self.assertEqual(2, len(tree.children)) 69 self.assertEqual('simple_stmt', pytree_utils.NodeName(tree.children[0])) 74 self.assertEqual(2, len(tree.children)) 75 self.assertEqual('classdef', pytree_utils.NodeName(tree.children[0])) 106 self._simple_tree.children[2]) 107 self.assertEqual(4, len(self._simple_tree.children)) [all …]
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTree.cs | 41 * actually have any user data. ANTLR v3 uses a list of children approach 43 * an empty node whose children represent the list. An empty, but 49 List<ITree> children; field in Antlr.Runtime.Tree.BaseTree 56 * as there are no fields other than the children list, which cannot 57 * be copied as the children are not considered part of this node. 64 * Get the children internal List; note that if you directly mess with 68 public virtual IList<ITree> Children { property in Antlr.Runtime.Tree.BaseTree 70 return children; 78 if (Children == null) 81 return Children.Count; [all …]
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTree.cs | 42 * actually have any user data. ANTLR v3 uses a list of children approach 44 * an empty node whose children represent the list. An empty, but 60 * as there are no fields other than the children list, which cannot 61 * be copied as the children are not considered part of this node. 69 * Get the children internal List; note that if you directly mess with 73 public virtual IList<ITree> Children property in Antlr.Runtime.Tree.BaseTree 92 if ( Children == null ) 95 return Children.Count; 174 if ( Children == null || i >= Children.Count ) in GetChild() 177 return Children[i]; in GetChild() [all …]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 32 for node in parent.children: 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 37 if expr_node.type == syms.expr_stmt and expr_node.children: 38 left_side = expr_node.children[0] 49 for node in cls_node.children: 55 for i, node in enumerate(cls_node.children): 63 while cls_node.children[i+1:]: 64 move_node = cls_node.children[i+1] 76 for semi_ind, node in enumerate(stmt_node.children): [all …]
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 32 for node in parent.children: 35 elif node.type == syms.simple_stmt and node.children: 36 expr_node = node.children[0] 37 if expr_node.type == syms.expr_stmt and expr_node.children: 38 left_side = expr_node.children[0] 49 for node in cls_node.children: 55 for i, node in enumerate(cls_node.children): 63 while cls_node.children[i+1:]: 64 move_node = cls_node.children[i+1] 76 for semi_ind, node in enumerate(stmt_node.children): [all …]
|
D | fix_itertools_imports.py | 16 if imports.type == syms.import_as_name or not imports.children: 17 children = [imports] 19 children = imports.children 20 for child in children[::2]: 29 name_node = child.children[0] 40 children = imports.children[:] or [imports] 42 for child in children: 48 while children and children[-1].type == token.COMMA: 49 children.pop().remove() 52 if (not (imports.children or getattr(imports, 'value', None)) or
|
/external/python/cpython3/Lib/lib2to3/ |
D | btm_utils.py | 24 self.children = [] 42 if len(node.alternatives) == len(node.children): 56 if len(node.group) == len(node.children): 98 for child in self.children: 100 if not self.children: 115 node = node.children[0] 119 if len(node.children) <= 2: 121 new_node = reduce_tree(node.children[0], parent) 125 #skip odd children('|' tokens) 126 for child in node.children: [all …]
|
D | fixer_util.py | 123 children = [Leaf(token.NAME, "from"), 127 imp = Node(syms.import_from, children) 160 if isinstance(node, Node) and node.children == [LParen(), RParen()]: 163 and len(node.children) == 3 164 and isinstance(node.children[0], Leaf) 165 and isinstance(node.children[1], Node) 166 and isinstance(node.children[2], Leaf) 167 and node.children[0].value == "(" 168 and node.children[2].value == ")") 173 and len(node.children) > 1 [all …]
|
/external/python/cpython2/Lib/compiler/ |
D | ast.py | 154 children = [] 155 children.append(self.test) 156 children.append(self.fail) 157 return tuple(children) 176 children = [] 177 children.extend(flatten(self.nodes)) 178 children.append(self.expr) 179 return tuple(children) 290 children = [] 291 children.append(self.node) [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
D | import_statement.py | 25 def Annotate(cls, symbol_type, children): argument 28 return cls(symbol_type, children) 41 # If we have too many children, cut the list down to size. 49 # Modify existing children. This helps preserve comments and spaces. 52 # Add children as needed. 60 def Annotate(cls, symbol_type, children): argument 64 return cls(symbol_type, children) 68 return self.children[0].value 72 self.children[0].value = value 76 if len(self.children) < 3: [all …]
|
/external/python/cpython2/Lib/lib2to3/ |
D | btm_utils.py | 24 self.children = [] 42 if len(node.alternatives) == len(node.children): 56 if len(node.group) == len(node.children): 98 for child in self.children: 101 if not self.children: 116 node = node.children[0] 120 if len(node.children) <= 2: 122 new_node = reduce_tree(node.children[0], parent) 126 #skip odd children('|' tokens) 127 for child in node.children: [all …]
|
D | fixer_util.py | 125 children = [Leaf(token.NAME, u"from"), 129 imp = Node(syms.import_from, children) 139 if isinstance(node, Node) and node.children == [LParen(), RParen()]: 142 and len(node.children) == 3 143 and isinstance(node.children[0], Leaf) 144 and isinstance(node.children[1], Node) 145 and isinstance(node.children[2], Leaf) 146 and node.children[0].value == u"(" 147 and node.children[2].value == u")") 152 and len(node.children) > 1 [all …]
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | BaseTree.as | 30 * actually have any user data. ANTLR v3 uses a list of children approach 32 * an empty node whose children represent the list. An empty, but 39 * as there are no fields other than the children list, which cannot 40 * be copied as the children are not considered part of this node. 52 /** Get the children internal List; note that if you directly mess with 55 public function get children():Array { property in org.antlr.runtime.tree.BaseTree 78 * Warning: if t has no children, but child does 79 * and child isNil then this routine moves children to t via 80 * t.children = child.children; i.e., without copying the array. 87 if ( childTree.isNil ) { // t is an empty node possibly with children [all …]
|
/external/antlr/tool/src/main/java/org/antlr/tool/ |
D | CompositeGrammarTree.java | 35 protected List<CompositeGrammarTree> children; field in CompositeGrammarTree 50 if ( children==null ) { in addChild() 51 children = new ArrayList<CompositeGrammarTree>(); in addChild() 53 children.add(t); in addChild() 62 for (int i = 0; r==null && children!=null && i < children.size(); i++) { in getRule() 63 CompositeGrammarTree child = children.get(i); in getRule() 93 for (int i = 0; n==null && children!=null && i < children.size(); i++) { in findNode() 94 CompositeGrammarTree child = children.get(i); in findNode() 108 for (int i = 0; n==null && children!=null && i < children.size(); i++) { in findNode() 109 CompositeGrammarTree child = children.get(i); in findNode() [all …]
|
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
D | Timeline.java | 80 * Creates a new timeline with a 'sequence' behavior. Its children will 90 * Creates a new timeline with a 'parallel' behavior. Its children will be 105 private final List<BaseTween<?>> children = new ArrayList<BaseTween<?>>(10); field in Timeline 123 children.clear(); in reset() 145 current.children.add(tween); in push() 158 current.children.add(timeline); in push() 164 * overlap the preceding and following children. 171 current.children.add(Tween.mark().delay(time)); in pushPause() 186 current.children.add(tl); in beginSequence() 202 current.children.add(tl); in beginParallel() [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/ |
D | snippet.py | 34 def children(self): member in Snippet 35 """Return a list of this node's children.""" 58 for child in self.children: 63 for child in self.children: 76 raise ValueError('%s is not in %s. Children are: %s' % 77 (snippet_type, self, self.children)) 81 for child in self.children: 85 for child in self.children: 129 def children(self): member in TokenSnippet 157 def __init__(self, symbol_type, children): argument [all …]
|
/external/ltp/testcases/kernel/syscalls/getrusage/ |
D | getrusage03.c | 121 * expect: initial.children ~= 100MB, child.children = 0 */ 127 tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss); in inherit_fork2() 129 tst_resm(TPASS, "initial.children ~= 100MB"); in inherit_fork2() 131 tst_resm(TFAIL, "initial.children !~= 100MB"); in inherit_fork2() 138 tst_resm(TINFO, "child.children = %ld", ru.ru_maxrss); in inherit_fork2() 145 check_return(WEXITSTATUS(status), "child.children == 0", in inherit_fork2() 146 "child.children != 0"); in inherit_fork2() 178 * expect: post_wait.children ~= 300MB */ 184 tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss); in grandchild_maxrss() 203 tst_resm(TINFO, "post_wait.children = %ld", ru.ru_maxrss); in grandchild_maxrss() [all …]
|