Home
last modified time | relevance | path

Searched refs:_children (Results 1 – 16 of 16) sorted by relevance

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTree.as36 protected var _children:Array;
46 if ( _children==null || i>=_children.length ) {
49 return BaseTree(_children[i]);
56 return _children;
60 for (var i:int = 0; _children!=null && i < _children.length; i++) {
61 var t:Tree = Tree(_children[i]);
70 if ( _children==null ) {
73 return _children.length;
88 if ( this._children!=null && this._children == childTree._children ) {
92 if ( childTree._children!=null ) {
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DProgress.js88 this._children = []; property in WebInspector.CompositeProgress
98 if (++this._childrenDone === this._children.length)
105 for (var i = 0; i < this._children.length; ++i) {
106 this._children[i].dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
116 this._children.push(child);
125 for (var i = 0; i < this._children.length; ++i) {
126 var child = this._children[i];
DView.js38 this._children = []; property in WebInspector.View
93 var copy = this._children.slice();
188 this._parentView._children.push(this);
246 var childIndex = this._parentView._children.indexOf(this);
248 this._parentView._children.splice(childIndex, 1);
256 var children = this._children.slice();
396 … lines.push(prefix + "[" + this.element.className + "]" + (this._children.length ? " {" : ""));
398 for (var i = 0; i < this._children.length; ++i)
399 this._children[i]._collectViewHierarchy(prefix + " ", lines);
401 if (this._children.length)
DDOMAgent.js64 this._children = null;
93 this._children = [this._contentDocument]; property in WebInspector.DOMNode
129 return this._children ? this._children.slice() : null;
340 if (this._children) {
372 callback(error ? null : this._children);
498 this._children.splice(this._children.indexOf(prev) + 1, 0, node);
515 this._children.splice(this._children.indexOf(node), 1);
531 this._children = []; property
535 this._children.push(node);
558 this._childNodeCount = this._children.length;
[all …]
DLayerTreeModel.js271 return this._children;
281 this._children.push(child);
415 this._children = []; property
DNavigatorView.js783 this._children = new StringMap();
858 return !this._children.size();
867 return this._children.get(id);
875 return this._children.values();
883 this._children.put(node.id, node);
894 this._children.remove(node.id);
901 this._children.clear();
DRemoteObject.js732 var children = this._children();
787 callback(this._children());
799 callback(this._children());
805 _children: function() method in WebInspector.LocalJSONObject
DTimelinePresentationModel.js462 coalescedRecord._children.push(record);
468 parent._children[parent._children.indexOf(record)] = coalescedRecord;
717 this._children = []; property in WebInspector.TimelinePresentationModel.Record
957 return this._children;
1141 if (!this.coalesced && this._children.length) {
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
Dbackground.js72 this._children = [];
82 return this._nodesMap[this._parentId]._children.indexOf(this);
87 this._children.push(node);
95 (node._children || []).forEach(removeFromNodesMap);
99 if (this._children)
108 typeof this._children === typeof bookmark.children;
116 var currentChildren = this._children;
117 this._children = []; property
180 (self._children || []).forEach(function(child, i) {
238 result['children'] = node._children.map(serializeNode);
/external/chromium_org/tools/cr/cr/
Dvisitor.py151 self._children = collections.deque()
194 return self._children
212 if child and child != self and child not in self._children:
213 self._children.appendleft(child)
252 for child in self._children:
254 self._children = collections.deque()
/external/chromium_org/tools/idl_parser/
Didl_node.py89 self._children = []
134 for child in self._children:
177 return self._children
202 self._children.append(child)
/external/chromium_org/ppapi/generators/
Didl_node.py77 self._children = []
151 for child in self._children:
161 for child in self._children:
179 self._children.append(node)
183 return self._children
295 for child in self._children:
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
Dmock.py107 self._children = {}
121 for child in self._children.itervalues():
178 if name not in self._children:
182 self._children[name] = Mock(parent=self, name=name, wraps=wraps)
184 return self._children[name]
/external/chromium_org/tools/telemetry/third_party/davclient/
Ddavclient.py223 for response in self.response.tree._children:
234 if len(prop._children) is not 0:
235 property_dict[name] = parse_props(prop._children)
241 property_dict = parse_props(property_stat.find('{DAV:}prop')._children)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXPolicyNode.java28 List _children, in PKIXPolicyNode() argument
36 children = _children; in PKIXPolicyNode()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs52 private IList<ITree> _children; field in Antlr.Runtime.Tree.BaseTree
77 return _children;
82 _children = value;