Home
last modified time | relevance | path

Searched refs:_children (Results 1 – 19 of 19) 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/common/
DProgress.js89 this._children = []; property in WebInspector.CompositeProgress
99 if (++this._childrenDone !== this._children.length)
108 for (var i = 0; i < this._children.length; ++i) {
109 this._children[i].dispatchEventToListeners(WebInspector.Progress.Events.Canceled);
120 this._children.push(child);
129 for (var i = 0; i < this._children.length; ++i) {
130 var child = this._children[i];
/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/third_party/WebKit/Source/devtools/front_end/ui/
DView.js38 this._children = []; property in WebInspector.View
86 return this._children;
122 var copy = this._children.slice();
220 this._parentView._children.push(this);
285 var childIndex = this._parentView._children.indexOf(this);
287 this._parentView._children.splice(childIndex, 1);
298 var children = this._children.slice();
412 … lines.push(prefix + "[" + this.element.className + "]" + (this._children.length ? " {" : ""));
414 for (var i = 0; i < this._children.length; ++i)
415 this._children[i]._collectViewHierarchy(prefix + " ", lines);
[all …]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DDOMModel.js68 this._children = null;
102 this._children = [this._contentDocument]; property in WebInspector.DOMNode
152 return this._children ? this._children.slice() : null;
396 if (this._children) {
428 callback(error ? null : this._children);
595 this._children.splice(this._children.indexOf(prev) + 1, 0, node);
612 this._children.splice(this._children.indexOf(node), 1);
628 this._children = []; property
632 this._children.push(node);
655 this._childNodeCount = this._children.length;
[all …]
DLayerTreeModel.js608 return this._children;
618 this._children.push(child);
787 this._children = []; property
854 this._children.forEach(calculateQuadForLayer);
881 this._children = []; property
925 return this._children;
935 this._children.push(child);
DRemoteObject.js938 var children = this._children();
993 callback(this._children());
1005 callback(this._children(), null);
1011 _children: function() method in WebInspector.LocalJSONObject
1112 var children = this._children();
/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)
255 for child in self._children:
257 self._children = collections.deque()
/external/fonttools/Lib/fontTools/
Dinspect.py53 self._children = []
57 self._children = []
119 return len(self._children)
130 self._children = children
137 self._children = [None] * len(self)
138 c = self._children[n]
141 c = self._children[n] = Row(self, n, k, v, self._font)
/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
299 for child in self._children:
/external/chromium_org/v8/tools/
Drun_perf.py155 self._children = []
158 self._children.append(child)
292 for trace in self._children:
294 res = reduce(lambda r, t: r + t.GetResults(), self._children, Results())
405 for child in node._children:
/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;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DNavigatorView.js978 this._children = new StringMap();
1053 return !this._children.size;
1062 return this._children.get(id) || null;
1070 return this._children.values();
1078 this._children.set(node.id, node);
1089 this._children.remove(node.id);
1096 this._children.clear();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DWikiParser.js1037 this._children = children;
1047 return this._children;
1055 return !!this._children && !!this._children.length;
1101 this._children = children;
1110 return this._children;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DTracingTimelineModel.js761 this._children = []; property in WebInspector.TracingTimelineModel.TraceEventRecord
804 return this._children;
929 this._children.push(child);
DTimelineModelImpl.js300 this._children = []; property in WebInspector.TimelineModel.RecordImpl
411 return this._children;