HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 1 - 25 of 973) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/mac/Misc/
MailQuirksUserScript.js 34 var children = [];
36 children.push(child);
37 return children;
46 var children = childrenBefore(document, document.documentElement);
47 children = children.concat(childrenBefore(document.documentElement, document.body));
49 for (var i = children.length - 1; i >= 0; i--) {
50 var child = children[i];
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java 36 private List<NodeImpl> children; field in class:NodeListImpl
39 children = new ArrayList<NodeImpl>();
43 children = list;
47 children.add(node);
51 return children.size();
55 if (index >= children.size()) {
58 return children.get(index);
LeafNodeImpl.java 31 * This class represents a Node that has a parent Node, but no children.
46 if (parent == null || index + 1 >= parent.children.size()) {
50 return parent.children.get(index + 1);
62 return parent.children.get(index - 1);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.cpp 35 PassRefPtr<ImmutableArray> InjectedBundleBackForwardListItem::children() const function in class:WebKit::InjectedBundleBackForwardListItem
37 const HistoryItemVector& children = m_item->children(); local
38 size_t size = children.size();
41 vector[i] = InjectedBundleBackForwardListItem::create(children[i]);
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 7 protected Node[] children; field in class:SimpleNode
30 if (children == null) {
31 children = new Node[i + 1];
32 } else if (i >= children.length) {
34 System.arraycopy(children, 0, c, 0, children.length);
35 children = c;
37 children[i] = n;
41 return children[i];
45 return (children == null) ? 0 : children.length
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
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 children; field in class: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.
53 if ( children==null || i>=children.size() ) {
56 return (Tree)children.get(i);
59 /** Get the children internal List; note that if you directly mess with
63 return children;
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_unittest.cc 38 ListValue* children; local
39 tree->GetList(keys::kChildrenKey, &children);
40 ASSERT_EQ(3U, children->GetSize());
48 ListValue* children; local
49 tree->GetList(keys::kChildrenKey, &children);
50 ASSERT_EQ(1U, children->GetSize());
58 ListValue* children; local
59 tree->GetList(keys::kChildrenKey, &children);
60 ASSERT_EQ(4U, children->GetSize());
62 ASSERT_TRUE(children->GetDictionary(1, &digg))
73 ListValue* children; local
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
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]
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Node.java 53 * node maintains a collection of children and handles merging said children
55 * allows for any number of children to be attached.
67 * This node's children.
69 protected SafeArrayList<Spatial> children = new SafeArrayList<Spatial>(Spatial.class); field in class:Node
79 * list for containing children.
91 * <code>getQuantity</code> returns the number of children this node
94 * @return the number of children this node maintains.
97 return children.size();
103 for (Spatial child : children.getArray())
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
TopDownProfileDataGridTree.js 28 var hasChildren = (profileNode.children && profileNode.children.length);
32 this._remainingChildren = profileNode.children;
38 var children = this._remainingChildren;
39 var childrenLength = children.length;
42 this.appendChild(new WebInspector.TopDownProfileDataGridNode(this.profileView, children[i], this.tree));
54 var children = this.children;
55 var index = this.children.length;
58 children[index]._exclude(aCallUID)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 47 public ITree[] Children
51 if (_tree == null || _tree.Children == null)
54 ITree[] children = new ITree[_tree.Children.Count];
55 _tree.Children.CopyTo(children, 0);
56 return children;