HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 1 - 25 of 746) 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/emailcommon/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/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/src/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/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...]
ProfileDataGridTree.js 132 // If the grid node is collapsed, then don't sort children (save operation for later).
135 if (gridNode.children.length)
142 var children = gridNode.children;
143 var childCount = children.length;
146 children.sort(comparator);
149 children[childIndex]._recalculateSiblings(childIndex);
151 gridNodeGroups.push(children);
236 this._savedChildren = this.children.slice();
252 var children = this._savedChildren
    [all...]
  /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(); }
  /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)
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationSetTest.java 103 List<Animation> children = animationSet.getAnimations(); local
104 assertEquals(SHORT_CHILD_DURATION, children.get(0).getDuration());
105 assertEquals(MEDIUM_CHILD_DURATION, children.get(1).getDuration());
106 assertEquals(LONG_CHILD_DURATION, children.get(2).getDuration());
112 children = animationSet.getAnimations();
113 assertEquals(ANIMATIONSET_DURATION, children.get(0).getDuration());
114 assertEquals(ANIMATIONSET_DURATION, children.get(1).getDuration());
115 assertEquals(ANIMATIONSET_DURATION, children.get(2).getDuration());
145 List<Animation> children = animationSet.getAnimations(); local
146 children.get(0).setFillAfter(true)
167 List<Animation> children = animationSet.getAnimations(); local
200 final List<Animation> children = animationSet.getAnimations(); local
228 final List<Animation> children = animationSet.getAnimations(); local
250 final List<Animation> children = animationSet.getAnimations(); local
265 List<Animation> children = animationSet.getAnimations(); local
296 List<Animation> children = animationSet.getAnimations(); local
330 List<Animation> children = animationSet.getAnimations(); local
369 List<Animation> children = animationSet.getAnimations(); local
415 final List<Animation> children = animationSet.getAnimations(); local
457 final List<Animation> children = animationSet.getAnimations(); local
514 final List<Animation> children = animationSet.getAnimations(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNodeList.java 33 * Constructs a node list from a given children list.
35 * @param children The children list. Can be null.
37 public MockNodeList(MockXmlNode[] children) {
39 if (children != null) {
40 for (MockXmlNode n : children) {
  /external/doclava/src/com/google/doclava/
NavTree.java 27 List<Node> children = new ArrayList<Node>(); local
29 children.add(makePackageNode(pkg));
31 Node node = new Node("Reference", dir + "packages.html", children, null);
50 List<Node> children = new ArrayList<Node>(); local
52 addClassNodes(children, "Interfaces", pkg.interfaces());
53 addClassNodes(children, "Classes", pkg.ordinaryClasses());
54 addClassNodes(children, "Enums", pkg.enums());
55 addClassNodes(children, "Exceptions", pkg.exceptions());
56 addClassNodes(children, "Errors", pkg.errors());
58 return new Node(pkg.name(), pkg.htmlPage(), children, pkg.getSince())
62 List<Node> children = new ArrayList<Node>(); local
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.h 32 NSArray *children; variable
42 - (NSArray *)children;
WebRenderNode.h 35 NSArray *children; variable
43 - (NSArray *)children;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DocumentDescriptor.java 28 * It has a children list which represent all the possible roots of the document.
36 * Constructs a new {@link DocumentDescriptor} based on its XML name and children list.
44 * @param children The list of allowed children. Can be null or empty.
46 public DocumentDescriptor(String xml_name, ElementDescriptor[] children) {
47 super(xml_name, children, Mandatory.MANDATORY);
  /sdk/traceview/src/com/android/traceview/
ProfileNode.java 28 ProfileData[] children, boolean isParent, boolean isRecursive) {
31 mChildren = children;
  /external/chromium/chrome/browser/accessibility/
renderer_accessibility_browsertest.cc 52 for (size_t i = 0; i < node.children.size(); i++)
53 RecursiveAssertUniqueIds(node.children[i], ids);
119 ASSERT_EQ(1U, tree.children.size());
120 const WebAccessibility& body = tree.children[0];
125 // Check properties of the two children of the BODY element.
126 ASSERT_EQ(2U, body.children.size());
128 const WebAccessibility& button = body.children[0];
141 const WebAccessibility& checkbox = body.children[1];
168 ASSERT_EQ(1U, tree.children.size());
169 const WebAccessibility& body = tree.children[0]
    [all...]

Completed in 457 milliseconds

1 2 3 4 5 6 7 8 91011>>