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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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...]
  /build/tools/droiddoc/src/
NavTree.java 24 ArrayList<Node> children = new ArrayList(); local
26 children.add(makePackageNode(pkg));
28 Node node = new Node("Reference", dir + "packages.html", children, null);
47 ArrayList<Node> children = new ArrayList(); local
49 children.add(new Node("Description", pkg.fullDescriptionHtmlPage(), null, null));
51 addClassNodes(children, "Interfaces", pkg.interfaces());
52 addClassNodes(children, "Classes", pkg.ordinaryClasses());
53 addClassNodes(children, "Enums", pkg.enums());
54 addClassNodes(children, "Exceptions", pkg.exceptions());
55 addClassNodes(children, "Errors", pkg.errors())
61 ArrayList<Node> children = new ArrayList(); local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
wait.h 11 #define __WNOTHREAD 0x20000000 /* Don't wait on children of other threads in this group */
12 #define __WALL 0x40000000 /* Wait on all children, regardless of type */
13 #define __WCLONE 0x80000000 /* Wait only on non-SIGCHLD children */
  /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) {
  /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);
InnerNodeImpl.java 36 * (potentially) a number of children.
43 List<LeafNodeImpl> children = new ArrayList<LeafNodeImpl>(); field in class:InnerNodeImpl
50 return insertChildAt(newChild, children.size());
56 for (NodeImpl node : children) {
64 return (!children.isEmpty() ? children.get(0) : null);
68 return (!children.isEmpty() ? children.get(children.size() - 1) : null);
72 if (parent == null || index + 1 >= parent.children.size())
    [all...]
  /external/webkit/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 141 // If the grid node is collapsed, then don't sort children (save operation for later).
144 if (gridNode.children.length)
151 var children = gridNode.children;
152 var childCount = children.length;
155 children.sort(comparator);
158 children[childIndex]._recalculateSiblings(childIndex);
160 gridNodeGroups.push(children);
245 this._savedChildren = this.children.slice();
261 var children = this._savedChildren
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 13 protected List children; field in class:PKIXPolicyNode
36 children = _children;
48 children.add(_child);
54 return children.iterator();
84 return !children.isEmpty();
94 children.remove(_child);
119 for(int i = 0; i < children.size(); i++)
121 _buf.append(((PKIXPolicyNode)children.get(i)).toString(_indent + " "));
158 _iter = children.iterator();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ViewsTreeModel.java 37 return ((ViewNode) o).children.get(i);
41 return ((ViewNode) o).children.size();
46 return node.children == null || node.children.size() == 0;
54 return ((ViewNode) parent).children.indexOf(child);
  /external/webkit/WebCore/rendering/
RenderRubyBase.cpp 55 // Tests whether all children in the base before beforeChild are either floated/positioned,
57 // Note that beforeChild may be 0, in which case all children are looked at.
67 // This function removes all children that are before (!) beforeChild
72 // Inline children might be wrapped in an anonymous block if there's a continuation.
92 // The standard and easy case: move the children into the target base
102 toBase->children()->appendChildNode(toBase, toBlock);
105 // Move our inline children into the target block we determined above.
107 moveChildTo(toBlock, toBlock->children(), child);
122 anonBlock->moveAllChildrenTo(toBase, toBase->children());
127 moveChildTo(toBase, toBase->children(), child)
    [all...]
  /external/webkit/WebCore/editing/
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 49 Vector<RefPtr<Node> > children;
51 children.append(node);
62 size_t size = children.size();
64 m_element1->appendChild(children[i], ec);
79 Vector<RefPtr<Node> > children;
81 children.append(node);
87 size_t size = children.size();
89 m_element2->insertBefore(children[i].get(), refChild.get(), ec);
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);
  /sdk/layoutopt/libs/uix/src/resources/rules/
TooManyChildren.rule 3 // Description: Checks whether the layout has too many children.
14 analysis << "A list/grid should have no children declared in node"
UseCompoundDrawables.rule 8 // - The node has two children, ImageView and TextView
13 analysis << "This tag and its children can be replaced by one <TextView/> and " +
UselessView.rule 9 // - The node has no children
13 analysis << "This ${node.name()} view is useless (no children, no background, no id)"
  /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.
46 ElementDescriptor[] children,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
59 * @param children The list of allowed children. Can be null or empty.
63 ElementDescriptor[] children) {
64 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, false);
69 * ManifestElementDescriptor(xml_name, xml_name.capitalize(), null, null, null, children).
74 public ManifestElementDescriptor(String xml_name, ElementDescriptor[] children) {
    [all...]
  /external/clearsilver/man/man3/
hdf_sort_obj.3 14 hdf_sort_obj - sort the children of an HDF node
49 hdf_sort_obj will sort the children of an HDF node,
53 array, and then re-ordering the linked list of children
60 None (h children will be sorted)
  /frameworks/base/sax/java/android/sax/
Children.java 20 * Contains element children. Using this class instead of HashMap results in
23 class Children {
25 Child[] children = new Child[16]; field in class:Children
34 Child current = children[index];
36 // We have no children in this bucket yet.
38 children[index] = current;
69 Child current = children[index];
  /external/webkit/WebCore/accessibility/
AccessibilityARIAGrid.cpp 72 unsigned rowCellCount = row->children().size();
102 // in case the render tree doesn't match the expected ARIA hierarchy, look at the children
107 AccessibilityChildrenVector children = child->children(); local
108 unsigned length = children.size();
110 addChild(children[i].get(), appendedRows, columnCount);
144 AccessibilityChildrenVector children = tableRow->children();
147 if (column >= children.size())
150 tableCell = children[column].get()
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
times.h 34 /* Structure describing CPU time used by a process and its children. */
40 clock_t tms_cutime; /* User CPU time of dead children. */
41 clock_t tms_cstime; /* System CPU time of dead children. */
46 dead children (and their dead children) in BUFFER.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
ViewElementDescriptor.java 30 * The base class {@link ElementDescriptor} has a notion of "children", that is an XML element
32 * XML files all possible views are children of the document and of themselves (that is any
35 * that deals with the children hierarchy must also deal with potential infinite loops since views
41 * The super class hierarchy is very different from the descriptor's children hierarchy: the
60 * its children list and its mandatory flag.
70 * @param children The list of allowed children. Can be null or empty.
80 ElementDescriptor[] children, boolean mandatory) {
81 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
88 * name of the class it represents, and its children list
    [all...]
  /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, true /* mandatory */);

Completed in 750 milliseconds

1 2 3 4 5 6 7 8 91011>>