HomeSort by relevance Sort by last modified time
    Searched full:_children (Results 1 - 20 of 20) sorted by null

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 36 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
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Progress.js 88 this._children = [];
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];
DOMAgent.js 62 this._children = null;
89 this._children = [this._contentDocument];
133 return this._children ? this._children.slice() : null;
311 if (this._children) {
343 callback(error ? null : this._children);
503 this._children.splice(this._children.indexOf(prev) + 1, 0, node);
513 this._children.splice(this._children.indexOf(node), 1)
    [all...]
View.js 38 this._children = [];
101 var copy = this._children.slice();
196 this._parentView._children.push(this);
253 var childIndex = this._parentView._children.indexOf(this);
255 this._parentView._children.splice(childIndex, 1);
263 var children = this._children.slice();
403 lines.push(prefix + "[" + this.element.className + "]" + (this._children.length ? " {" : ""));
405 for (var i = 0; i < this._children.length; ++i)
406 this._children[i]._collectViewHierarchy(prefix + " ", lines);
408 if (this._children.length
    [all...]
NavigatorView.js 686 this._children = new StringMap();
761 return !this._children.size();
770 return this._children.get(id);
778 return this._children.values();
786 this._children.put(node.id, node);
797 this._children.remove(node.id);
804 this._children.clear();
    [all...]
RemoteObject.js 693 var children = this._children();
748 callback(this._children());
760 callback(this._children());
766 _children: function()
TimelinePresentationModel.js 445 coalescedRecord._children.push(record);
452 parent._children[parent._children.indexOf(record)] = coalescedRecord;
615 this._children = [];
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 66 self._children = weakref.WeakKeyDictionary()
73 if hasattr(self._parent, '_children'):
74 self._parent._children[self] = None
97 current_process()._children = weakref.WeakKeyDictionary()
100 children = current_process()._children
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 66 self._children = weakref.WeakKeyDictionary()
73 if hasattr(self._parent, '_children'):
74 self._parent._children[self] = None
97 current_process()._children = weakref.WeakKeyDictionary()
100 children = current_process()._children
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 28 List _children,
36 children = _children;
  /external/chromium_org/tools/idl_parser/
idl_node.py 89 self._children = []
134 for child in self._children:
177 return self._children
202 self._children.append(child)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 70 return list(_current_process._children)
78 for p in list(_current_process._children):
80 _current_process._children.discard(p)
131 _current_process._children.add(self)
147 _current_process._children.discard(self)
246 self._children = set()
308 self._children = set()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
process.py 70 return list(_current_process._children)
78 for p in list(_current_process._children):
80 _current_process._children.discard(p)
131 _current_process._children.add(self)
147 _current_process._children.discard(self)
246 self._children = set()
308 self._children = set()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
mock.py 107 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/
davclient.py 223 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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 212 self._children = []
248 return len(self._children)
256 return len(self._children) != 0 # emulate old behaviour, for now
266 return self._children[index]
281 self._children[index] = element
290 del self._children[index]
302 self._children.append(element)
313 self._children.extend(elements)
322 self._children.insert(index, element)
337 self._children.remove(element
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py 212 self._children = []
248 return len(self._children)
256 return len(self._children) != 0 # emulate old behaviour, for now
266 return self._children[index]
281 self._children[index] = element
290 del self._children[index]
302 self._children.append(element)
313 self._children.extend(elements)
322 self._children.insert(index, element)
337 self._children.remove(element
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 52 private IList<ITree> _children; field in class:Antlr.Runtime.Tree.BaseTree
77 return _children;
82 _children = value;
  /system/media/camera/docs/
metadata_model.py 137 self._sort_by_name(self._children)
147 return (i for i in self._children)
661 self._children = self._sections
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 

Completed in 1424 milliseconds