Searched defs:children (Results 1 - 25 of 62) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DContentModelValidator.java77 * @param children
83 * of children, then the specified children are valid but additional
86 public int validate(QName[] children, int offset, int length); argument
H A DMixedContentModel.java72 * by an alternation of the possible children. The children cannot have any
77 * So, all we have to do is to keep an array of the possible children and
91 /** The count of possible children that we have to deal with. */
94 /** The list of possible children that we have to accept. */
97 /** The type of the children to support ANY. */
116 * @param children The list of allowed children.
117 * @param type The list of the types of the children.
118 * @param offset The start offset position in the children
122 MixedContentModel(QName[] children, int[] type, int offset, int length , boolean ordered) argument
163 validate(QName[] children, int offset, int length) argument
[all...]
H A DSimpleContentModel.java126 * involved (i.e. the children of the operation are always one or
149 // Store away the children and operation. This is all we need to
173 * A value of -1 in the children array indicates a PCDATA node. All other
178 * @param children The children of this element. Each integer is an index within
182 * @param offset Offset into the array where the children starts.
183 * @param length The number of entries in the <code>children</code> array.
187 * of children, then the specified children are valid but additional
191 public int validate(QName[] children, in argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTreeModelEvent.java56 /** Indices identifying the position of where the children were. */
59 protected Object[] children; field in class:TreeModelEvent
124 * @param children an array of Object containing the inserted, removed, or
129 Object[] children)
131 this(source, new TreePath(path), childIndices, children);
148 * @param children an array of Object containing the inserted, removed, or
154 Object[] children)
159 this.children = children;
172 * immediate children ar
128 TreeModelEvent(Object source, Object[] path, int[] childIndices, Object[] children) argument
153 TreeModelEvent(Object source, TreePath path, int[] childIndices, Object[] children) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeNode.java56 * Returns the number of children <code>TreeNode</code>s the receiver
67 * Returns the index of <code>node</code> in the receivers children.
74 * Returns true if the receiver allows children.
84 * Returns the children of the receiver as an <code>Enumeration</code>.
86 Enumeration children(); method in interface:TreeNode
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextMembershipEvent.java39 * the list of children added to, or removed from,
74 children = changes;
92 children = Arrays.asList(changes);
96 * Gets the number of children affected by the notification.
97 * @return the number of children affected by the notification
99 public int size() { return children.size(); }
107 return children.contains(child);
111 * Gets the array of children affected by this event.
112 * @return the array of children affected
114 public Object[] toArray() { return children
130 protected Collection children; field in class:BeanContextMembershipEvent
[all...]
/openjdk7/jdk/src/share/back/
H A DThreadGroupReferenceImpl.c88 children(PacketInputStream *in, PacketOutputStream *out) function
141 (void *)children };
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_tree_DefaultTreeModel.java74 public Enumeration children() { method in class:javax_swing_tree_DefaultTreeModel.RootNode
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DXMLNode.java41 children = new ArrayList<XMLNode>();
44 parent.children.add(this);
54 if (children.size() == 0)
58 for (XMLNode c: children)
68 final List<XMLNode> children; field in class:XMLNode
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DRevPtrsTreeNodeAdapter.java39 private List children; field in class:RevPtrsTreeNodeAdapter
47 children = VM.getVM().getRevPtrs().get(oop);
51 return children != null ? children.size() : 0;
55 LivenessPathElement lpe = (LivenessPathElement)children.get(index);
H A DSimpleTreeGroupNode.java33 private List children; field in class:SimpleTreeGroupNode
36 children = new ArrayList();
39 public int getChildCount() { return children.size(); }
41 return (SimpleTreeNode) children.get(index);
44 children.add(child);
47 return (SimpleTreeNode) children.remove(index);
50 children.clear();
56 return children.indexOf(child);
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DNameNode.java36 * children indexed by their labels converted to lower-case.
55 private Hashtable children = null; // child nodes field in class:NameNode
97 * Returns the children of this node, or null if there are none.
101 return children;
110 return (children != null)
111 ? (NameNode) children.get(key)
142 if (node.children == null) {
143 node.children = new Hashtable();
145 child = (NameNode) node.children.get(key);
150 node.children
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSearchPath.java81 public String[] children(String relativeDirName, FilenameFilter filter) { method in class:SearchPath
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DDOMUtils.java54 NodeList children = parent.getChildNodes();
55 for( int i=0; i<children.getLength(); i++ ) {
56 Node item = children.item(i);
69 NodeList children = parent.getChildNodes();
70 for( int i=0; i<children.getLength(); i++ ) {
71 Node item = children.item(i);
84 NodeList children = parent.getChildNodes();
85 for( int i=0; i<children.getLength(); i++ ) {
86 Node item = children.item(i);
105 NodeList children
145 getElements(NodeList children) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionFormat.java40 protected List<OptionFormat> children; field in class:OptionFormat
44 this.children = new ArrayList<OptionFormat>();
63 children.add(f);
67 return children.get(index);
71 children.add(index, f);
80 for (Iterator i = children.iterator(); i.hasNext(); /* empty */) {
85 for (Iterator i = children.iterator(); i.hasNext(); /* empty */) {
104 // iterate over all children and call their printFormat() methods
105 for (OptionFormat of : children) {
/openjdk7/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A DStubBranchElement.java29 Element[] children = new StubLeafElement[3]; field in class:StubBranchElement
35 children[i] = new StubLeafElement(
77 return children[index];
85 return children;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredObjectImpl.java41 private Map children = new HashMap(); field in class:MonitoredObjectImpl
57 return (MonitoredObject) children.get( name );
63 return children.values();
70 children.put( m.getName(), m);
79 children.remove( name );
121 * calls clearState() on all the registered children MonitoredObjects and
131 i = children.values().iterator();
132 // next call clearState on all the children MonitoredObjects
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSizeRequirements.java176 * @param children the space requirements for a set of components.
182 children) {
184 for (int i = 0; i < children.length; i++) {
185 SizeRequirements req = children[i];
200 * @param children the set of child requirements. If of zero length,
205 children) {
208 for (int i = 0; i < children.length; i++) {
209 SizeRequirements req = children[i];
250 * @param total the total of the children requests. This argument
252 * @param children th
181 getTiledSizeRequirements(SizeRequirements[] children) argument
204 getAlignedSizeRequirements(SizeRequirements[] children) argument
258 calculateTiledPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans) argument
298 calculateTiledPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans, boolean forward) argument
416 calculateAlignedPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans) argument
455 calculateAlignedPositions(int allocated, SizeRequirements total, SizeRequirements[] children, int[] offsets, int[] spans, boolean normal) argument
485 adjustSizes(int delta, SizeRequirements[] children) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFrameSetView.java48 String[] children; field in class:FrameSetView
63 children = null;
96 // extend spec if we have more children than specified
112 children = parseRowColSpec(HTML.Attribute.ROWS);
114 children = parseRowColSpec(HTML.Attribute.COLS);
116 percentChildren = new int[children.length];
117 relativeChildren = new int[children.length];
118 absoluteChildren = new int[children.length];
120 for (int i = 0; i < children.length; i++) {
125 if (children[
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DFolderNode.java52 private FolderChildren children; field in class:FolderNode
121 private FolderNode(String name, GroupOrganizer organizer, List<String> oldSubFolders, final List<Group> groups, FolderChildren children, InstanceContent content) { argument
122 super(children, new AbstractLookup(content));
123 children.setParent(this);
125 this.children = children;
148 children.addNotify();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DTree.java73 static Tree makeGroup(GroupKind kind, List<Tree> children ) {
75 if(children.size()==1)
76 return children.get(0);
78 // we neither have epsilon or emptySet, so can't handle children.length==0 nicely
82 List<Tree> normalizedChildren = new ArrayList<Tree>(children.size());
83 for (Tree t : children) {
87 normalizedChildren.addAll(Arrays.asList(g.children));
205 private final Tree[] children; field in class:Tree.Group
207 private Group(GroupKind kind, Tree... children) { argument
209 this.children
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/visitor/
H A DChildElementFinder.java64 private final Set children = new HashSet(); field in class:ChildElementFinder
102 return children;
106 children.add(new Element(nc,content));
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DMouseInfo.c99 Window * children = NULL; local
128 &rootWindow, &parentWindow, &children, &nchildren);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbeddingContainer.java35 HashMap children = new HashMap(); field in class:XEmbeddingContainer
54 children.put(Long.valueOf(child), proxy.getPeer());
109 return (XEmbedChildProxyPeer)children.get(Long.valueOf(child));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DVariablePanel.java210 private java.util.List children; field in class:VariablePanel.CCollector
213 children = new ArrayList();
217 return children.size();
221 return (SimpleTreeNode) children.get(i);
225 children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
228 children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
231 children.add(new sun.jvm.hotspot.bugspot.tree.EnumTreeNodeAdapter(enumName, val, f, true));
234 children.add(new sun.jvm.hotspot.bugspot.tree.FloatTreeNodeAdapter(val, f, true));
237 children.add(new sun.jvm.hotspot.bugspot.tree.DoubleTreeNodeAdapter(val, f, true));
240 children
[all...]

Completed in 165 milliseconds

123