Searched defs:list (Results 176 - 200 of 323) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java190 public String[] list() method in class:RegistryImpl
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DRemoteClass.java170 * extends Remote to a list.
176 * Add interface to the list if it extends Remote and
216 * Convert list of remote interfaces to an array
510 * This list may include superfluous entries, such as
633 * Adds to the supplied list all exceptions in the "froms"
639 List<ClassDoc> list)
642 if (!list.contains(from)) {
645 list.add(from);
694 * type (if any) after the parameter list.
637 collectCompatibleExceptions(ClassDoc[] froms, ClassDoc[] withs, List<ClassDoc> list) argument
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DUtil.java210 ArrayList<Class<?>> list = new ArrayList<>();
211 getRemoteInterfaces(list, remoteClass);
212 return list.toArray(new Class<?>[list.size()]);
216 * Fills the given array list with the remote interfaces implemented
221 * @throws NullPointerException if the specified class or list is null
223 private static void getRemoteInterfaces(ArrayList<Class<?>> list, Class<?> cl) { argument
226 getRemoteInterfaces(list, superclass);
234 * java.rmi.Remote) and is not already in the list,
235 * then add the interface to the list
[all...]
/openjdk7/jdk/src/share/native/sun/security/pkcs11/
H A Dj2secmod.c82 SECMODModuleList *list; local
95 list = getModuleList();
96 if (list == NULL) {
97 dprintf("-module list is null\n");
110 while (list != NULL) {
111 module = list->module;
131 list = list->next;
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java180 /** Check to see if a list of annotations contains a named annotation, and
184 * @param annos the list of annotations to be checked
233 String print(List<? extends JCTree> list) { argument
234 return print(list, ", ");
237 String print(List<? extends JCTree> list, String sep) { argument
239 if (list.nonEmpty()) {
240 sb.append(print(list.head));
241 for (List<? extends JCTree> l = list.tail; l.nonEmpty(); l = l.tail) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNamedNodeMapImpl.java199 i = -1 - i; // Insert point (may be end of list)
249 i = -1 - i; // Insert point (may be end of list)
564 i = -1 - i; // Insert point (may be end of list)
577 * @param list ArrayList to copy information into.
580 protected ArrayList cloneMap(ArrayList list) { argument
581 if (list == null) {
582 list = new ArrayList(5);
584 list.clear();
588 list.add(nodes.get(i));
591 return list;
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextImpl.java78 * by doResolve(), unbind() by doUnbind(). list(), new_context() and
410 public void list(int how_many, BindingListHolder bl, method in class:NamingContextImpl
413 // List actually generates the list
422 "list(" + how_many + ") -> bindings[" + bl.value.length +
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DSkeleton.java318 * Build a list of all of the methods, keeping out duplicates.
468 Vector list = new Vector ();
469 buildIDList (i, list);
470 Enumeration e = list.elements ();
485 private void buildIDList (InterfaceEntry entry, Vector list) argument
490 if (!list.contains (id))
491 list.addElement (id);
494 buildIDList ((InterfaceEntry)e.nextElement (), list);
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonUI.java268 public static JScrollPane createListPane(JList list, String text) argument
270 JScrollPane pane = new JScrollPane(list);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConnectorImpl.java233 // free VirtualMachimeImpl Class list.
301 List list) {
306 mustSpecify, list));
299 addSelectedArgument(String name, String label, String description, String defaultValue, boolean mustSpecify, List list) argument
/openjdk7/jdk/src/share/classes/java/io/
H A DFileSystem.java175 public abstract String[] list(File f); method in class:FileSystem
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java368 * {@linkplain #enumerate(Thread[], boolean) enumerate}{@code (list, true)}
371 * @param list
372 * an array into which to put the list of threads
382 public int enumerate(Thread list[]) { argument
384 return enumerate(list, 0, true);
400 * int value is strictly less than the length of {@code list}.
405 * @param list
406 * an array into which to put the list of threads
420 public int enumerate(Thread list[], boolean recurse) { argument
422 return enumerate(list,
425 enumerate(Thread list[], int n, boolean recurse) argument
516 enumerate(ThreadGroup list[]) argument
554 enumerate(ThreadGroup list[], boolean recurse) argument
559 enumerate(ThreadGroup list[], int n, boolean recurse) argument
985 public void list() { method in class:ThreadGroup
988 void list(PrintStream out, int indent) { method in class:ThreadGroup
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.java59 // mapping table contracting list expanding list
220 * @param idx the index of the expanding string value list
263 final static int getEntry(Vector list, String name, boolean fwd) { argument
264 for (int i = 0; i < list.size(); i++) {
265 EntryPair pair = (EntryPair)list.elementAt(i);
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractList.java32 * access data (such as a linked list), {@link AbstractSequentialList} should
35 * <p>To implement an unmodifiable list, the programmer needs only to extend
39 * <p>To implement a modifiable list, the programmer must additionally
41 * throws an {@code UnsupportedOperationException}). If the list is
51 * list iterator are implemented by this class, on top of the "random access"
80 * Appends the specified element to the end of this list (optional
84 * elements may be added to this list. In particular, some
96 * @param e element to be appended to this list
99 * is not supported by this list
101 * prevents it from being added to this list
618 SubList(AbstractList<E> list, int fromIndex, int toIndex) argument
774 RandomAccessSubList(AbstractList<E> list, int fromIndex, int toIndex) argument
[all...]
H A DProperties.java42 * the property list is a string.
44 * A property list can contain another property list as its
45 * "defaults"; this second property list is searched if
46 * the property key is not found in the original property list.
56 * the call to the <code>propertyNames</code> or <code>list</code> method
124 * A property list that contains default values for any keys not
125 * found in this property list.
132 * Creates an empty property list with no default values.
139 * Creates an empty property list wit
1026 public void list(PrintStream out) { method in class:Properties
1054 public void list(PrintWriter out) { method in class:Properties
[all...]
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRelationSupport.java106 // Initialized by role list in the constructor, then updated:
146 * @param list list of roles (Role objects) to initialize the
159 RoleList list)
173 list);
217 * @param list list of roles (Role objects) to initialize the
231 RoleList list)
251 list);
497 * @param list lis
156 RelationSupport(String relationId, ObjectName relationServiceName, String relationTypeName, RoleList list) argument
227 RelationSupport(String relationId, ObjectName relationServiceName, MBeanServer relationServiceMBeanServer, String relationTypeName, RoleList list) argument
513 setRoles(RoleList list) argument
1473 setRolesInt(RoleList list, boolean relationServCallFlg, RelationService relationServ) argument
1566 initMembers(String relationId, ObjectName relationServiceName, MBeanServer relationServiceMBeanServer, String relationTypeName, RoleList list) argument
1604 initRoleMap(RoleList list) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DContext.java62 * from <tt>list()</tt> and <tt>listBindings()</tt> are composite names
149 * containing a list of key/value pairs.
228 * list of object factories is a concatenation of the property
256 * one of the standard JNDI properties that specify a list of JNDI
258 * concatenated into a single colon-separated list. For other
269 * In this way, each service provider developer can specify a list of
463 * the name of the context to list
469 * @see #list(String)
473 public NamingEnumeration<NameClassPair> list(Name name) method in interface:Context
479 * See {@link #list(Nam
488 public NamingEnumeration<NameClassPair> list(String name) method in interface:Context
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttribute.java144 // Go through both list of values
525 Enumeration list; field in class:BasicAttribute.ValuesEnumImpl
528 list = values.elements();
532 return list.hasMoreElements();
536 return(list.nextElement());
540 return list.nextElement();
544 return list.hasMoreElements();
548 list = null;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp279 // list. We should try to avoid doing operations that iterate over
308 // It adds hr to the list as the new head. The region should not be
312 // It adds hr to the list as the new tail. The region should not be
316 // It removes and returns the head of the list. It assumes that the
317 // list is not empty so it will return a non-NULL value.
323 // It moves the regions from from_list to this list and empties
325 // were in from_list and be linked in the beginning of this list.
328 // It moves the regions from from_list to this list and empties
330 // were in from_list and be linked in the end of this list.
333 // It empties the list b
377 HeapRegionLinkedListIterator(HeapRegionLinkedList* list) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.cpp194 // Enqueue a whole list of tasks. Empties the argument list.
195 void GCTaskQueue::enqueue(GCTaskQueue* list) { argument
198 " GCTaskQueue::enqueue(list: "
200 this, list);
202 list->print("list:");
204 if (list->is_empty()) {
205 // Enqueuing the empty list: nothing to do.
208 uint list_length = list
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp100 // Returns the head of the free list as a pointer to a TreeChunk.
103 // Returns the first available chunk in the free list as a pointer
108 // those in the list for this size; potentially slow and expensive,
113 // If "tc" is the first chunk in the list, it is also the
125 // maintains a pointer to the free list on which it is currently
130 // chunk in the free list is also the tree node. Note that the
132 // the first chunk in the list is distinguished in this fashion
134 // on the free list for a node in the tree and is only removed if
135 // it is the last chunk on the free list.
146 TreeList<Chunk>* list() { retur function in class:TreeChunk
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsComboBoxUI.java522 JList list,
528 super.getListCellRendererComponent(list, value, index,
535 new WindowsBorders.DashedBorder(list.getForeground());
556 component.setForeground(list.getForeground());
521 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java237 void list(PrintStream out) { method in class:PropMap
239 list(outw);
242 void list(PrintWriter out) { method in class:PropMap
/openjdk7/jdk/src/share/classes/com/sun/jndi/rmi/registry/
H A DRegistryContext.java198 public NamingEnumeration list(Name name) throws NamingException { method in class:RegistryContext
201 "RegistryContext: can only list \"\""));
204 String[] names = registry.list();
211 public NamingEnumeration list(String name) throws NamingException { method in class:RegistryContext
212 return list(new CompositeName(name));
220 "RegistryContext: can only list \"\""));
223 String[] names = registry.list();
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java285 public NamingEnumeration<NameClassPair> list(String name) method in class:PartialCompositeContext
288 return list(new CompositeName(name));
291 public NamingEnumeration<NameClassPair> list(Name name) method in class:PartialCompositeContext
309 answer = cctx.list(e.getRemainingName());

Completed in 102 milliseconds

1234567891011>>