HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 1 - 25 of 1052) 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;
  /external/webkit/Source/WebCore/editing/
RemoveNodePreservingChildrenCommand.cpp 43 Vector<RefPtr<Node> > children; local
45 children.append(child);
47 size_t size = children.size();
49 RefPtr<Node> child = children[i].release();
WrapContentsInDummySpanCommand.cpp 43 Vector<RefPtr<Node> > children; local
45 children.append(child);
49 size_t size = children.size();
51 m_dummySpan->appendChild(children[i].release(), ec);
70 Vector<RefPtr<Node> > children;
72 children.append(child);
76 size_t size = children.size();
78 m_element->appendChild(children[i].release(), ec);
MergeIdenticalElementsCommand.cpp 52 Vector<RefPtr<Node> > children; local
54 children.append(child);
56 size_t size = children.size();
58 m_element2->insertBefore(children[i].release(), m_atChild.get(), ec);
80 Vector<RefPtr<Node> > children;
82 children.append(child);
84 size_t size = children.size();
86 m_element1->appendChild(children[i].release(), ec);
SplitElementCommand.cpp 50 Vector<RefPtr<Node> > children;
52 children.append(node);
67 size_t size = children.size();
69 m_element1->appendChild(children[i], ec);
84 Vector<RefPtr<Node> > children;
86 children.append(node);
92 size_t size = children.size();
94 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
  /external/webkit/Source/WebCore/rendering/
RenderMedia.h 43 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderMedia
44 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderMedia
52 virtual RenderObjectChildList* virtualChildren() { return children(); }
53 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
RenderTableCol.h 39 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderTableCol
40 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderTableCol
48 virtual RenderObjectChildList* virtualChildren() { return children(); }
49 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammarTree.java 35 protected List<CompositeGrammarTree> children; field in class:CompositeGrammarTree
50 if ( children==null ) {
51 children = new ArrayList<CompositeGrammarTree>();
53 children.add(t);
62 for (int i = 0; r==null && children!=null && i < children.size(); i++) {
63 CompositeGrammarTree child = children.get(i);
93 for (int i = 0; n==null && children!=null && i < children.size(); i++) {
94 CompositeGrammarTree child = children.get(i)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c 75 tree->children = NULL;
101 if (tree->children != NULL)
103 cs = tree->children->size(tree->children);
106 t = (pANTLR3_BASE_TREE) (tree->children->get(tree->children, i));
121 if ( tree->children == NULL
122 || i >= tree->children->size(tree->children))
126 return tree->children->get(tree->children, i)
    [all...]
  /external/clang/bindings/python/tests/cindex/
util.py 42 children = []
44 children = source.get_children()
47 children = source.cursor.get_children()
49 for cursor in children:
53 # Recurse into children.
70 children = []
72 children = source.get_children()
75 children = source.cursor.get_children()
77 for cursor in children:
81 # Recurse into children
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ManifestElementDescriptor.java 41 * @param children The list of allowed children. Can be null or empty.
49 ElementDescriptor[] children,
51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
62 * @param children The list of allowed children. Can be null or empty.
70 ElementDescriptor[] children,
72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
83 * @param children The list of allowed children. Can be null or empty
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSScriptProfileNodeCustom.cpp 51 JSValue JSScriptProfileNode::children(ExecState* exec) const function in class:WebCore::JSScriptProfileNode
53 const ProfileNodesList& children = impl()->children(); local
56 ProfileNodesList::const_iterator end = children.end();
57 for (ProfileNodesList::const_iterator iter = children.begin(); iter != end; ++iter)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
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 class: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 {
70 return children;
78 if (Children == null)
81 return Children.Count
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 78 List<Animation> children = animationSet.getAnimations(); local
79 assertEquals(SHORT_CHILD_DURATION, children.get(0).getDuration());
80 assertEquals(MEDIUM_CHILD_DURATION, children.get(1).getDuration());
81 assertEquals(LONG_CHILD_DURATION, children.get(2).getDuration());
87 children = animationSet.getAnimations();
88 assertEquals(ANIMATIONSET_DURATION, children.get(0).getDuration());
89 assertEquals(ANIMATIONSET_DURATION, children.get(1).getDuration());
90 assertEquals(ANIMATIONSET_DURATION, children.get(2).getDuration());
115 List<Animation> children = animationSet.getAnimations(); local
116 children.get(0).setFillAfter(true)
132 List<Animation> children = animationSet.getAnimations(); local
153 final List<Animation> children = animationSet.getAnimations(); local
176 final List<Animation> children = animationSet.getAnimations(); local
193 final List<Animation> children = animationSet.getAnimations(); local
203 List<Animation> children = animationSet.getAnimations(); local
222 List<Animation> children = animationSet.getAnimations(); local
239 List<Animation> children = animationSet.getAnimations(); local
266 List<Animation> children = animationSet.getAnimations(); local
307 final List<Animation> children = animationSet.getAnimations(); local
337 final List<Animation> children = animationSet.getAnimations(); local
377 final List<Animation> children = animationSet.getAnimations(); local
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.h 32 NSArray *children; variable
42 - (NSArray *)children;

Completed in 1892 milliseconds

1 2 3 4 5 6 7 8 91011>>