Searched defs:list (Results 251 - 275 of 323) sorted by relevance

<<111213

/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DOption.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
466 private static String[] trim(String list[], int size) { argument
467 if (list.length == size) {
468 return list;
471 System.arraycopy(list, 0, newlist, 0, size);
475 private static Object[] trim(Object list[], int size) { argument
476 if (list.length == size) {
477 return list;
480 System.arraycopy(list,
676 trim(String list[], int size) argument
685 trim(Object list[], int size) argument
802 private Boolean list[]; field in class:Option.BooleanIterator
816 BooleanIterator(Boolean list[]) argument
837 private Object list[]; field in class:Option.SwitchIterator
841 SwitchIterator(Object[] list, int enabled) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthComboBoxUI.java90 * used for rendering the selected item in the combo box (not in the list),
465 public Component getListCellRendererComponent(JList list, Object value, argument
470 setBackground(list.getSelectionBackground());
471 setForeground(list.getSelectionForeground());
476 list.isEnabled(), false);
479 setBackground(list.getBackground());
480 setForeground(list.getForeground());
483 setFont(list.getFont());
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java228 * separate filenames in a sequence of files given as a <em>path list</em>.
1108 public String[] list() { method in class:File
1116 return fs.list(this);
1123 * {@link #list()} method, except that the strings in the returned array
1148 public String[] list(FilenameFilter filter) { method in class:File
1149 String names[] = list();
1201 String[] ss = list();
1242 String ss[] = list();
1280 String ss[] = list();
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.hpp507 // it to "list", leaving "list" pointing to the head of the
508 // augmented list. The default is to offer no space.
509 virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor, argument
H A DbinaryTreeDictionary.cpp49 if (prev() != NULL) { // interior list node shouldn'r have tree fields
63 // This first free chunk in the list will be the tree list.
87 // is not remangled when a free chunk is returned to the free list
88 // (since it is used to maintain the chunk on the free list).
106 Chunk* list = head(); local
107 assert(!list || list != list->next(), "Chunk on list twic
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java372 // create files list
644 public Component getListCellRendererComponent(JList list, Object value, int index, argument
647 super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
655 public Component getListCellRendererComponent(JList list, Object value, int index, argument
658 super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
688 // whole list has changed.
732 // whole list has changed.
763 public Component getListCellRendererComponent(JList list, argument
767 super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
805 // Ensure that the current filter is in the list
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java329 public NamingEnumeration list(String name) throws NamingException { method in class:HierMemDirCtx
330 return list(myParser.parse(name));
333 public NamingEnumeration list(Name name) throws NamingException { method in class:HierMemDirCtx
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp78 assert(q != NULL, "this is not in the block's instruction list");
311 void StateSplit::substitute(BlockList& list, BlockBegin* old_block, BlockBegin* new_block) { argument
313 for (int i = 0; i < list.length(); i++) {
314 BlockBegin** b = list.adr_at(i);
529 // Now reset successors list based on BlockEnd
592 // otherwise there is a dead predecessor in the list
636 BlockList& list = sux->_predecessors; local
637 for (int i = 0; i < list.length(); i++) {
638 BlockBegin** b = list.adr_at(i);
641 list
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.cpp523 GrowableArray<MonitorInfo*>* list = monitors(); local
524 if (list->is_empty()) return;
525 tty->print_cr("\tmonitor list:");
526 for (int index = (list->length()-1); index >= 0; index--) {
527 MonitorInfo* monitor = list->at(index);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c81 jobject list; member in struct:GdiFontMapInfo
135 * the canonical name is one of the"list" of members of the family.
157 (*env)->CallBooleanMethod(env, fmi->list, fmi->addMID, fullname);
241 (*env)->CallBooleanMethod(env, fmi->list, fmi->addMID, fullname);
251 * list of its members. To populate that list, further enumerate all faces
256 * Because we set fmi->list to be the newly created list the call back
257 * can safely add to that list without a search.
291 fmi->list
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java90 List<ProgramElementDoc> list = new ArrayList<ProgramElementDoc>();
93 list.add(members[i]);
96 Collections.sort(list);
97 return list;
101 * Return the list of ProgramElementDoc objects as Array.
103 public static ProgramElementDoc[] toProgramElementDocArray(List<ProgramElementDoc> list) { argument
104 ProgramElementDoc[] pgmarr = new ProgramElementDoc[list.size()];
105 for (int i = 0; i < list.size(); i++) {
106 pgmarr[i] = list.get(i);
258 String[] files = srcdir.list();
[all...]
H A DVisibleMemberMap.java124 * Return the list of visible classes in this map.
126 * @return the list of visible classes in this map.
184 * end of the list members that are inherited by inaccessible parents. We
196 * Retrn the list of members for the given class.
198 * @param cd the class to retrieve the list of visible members for.
200 * @return the list of members for the given class.
211 * Sort the given mixed list of classes and interfaces to a list of
214 private void sort(List<ClassDoc> list) { argument
217 for (int i = 0; i < list
230 fillMemberLevelMap(List<ProgramElementDoc> list, String level) argument
242 purgeMemberLevelMap(List<ProgramElementDoc> list, String level) argument
496 found(List<ProgramElementDoc> list, ProgramElementDoc elem) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java137 public Iterable<JavaFileObject> wrapJavaFileObjects(Iterable<? extends JavaFileObject> list) { argument
139 for (JavaFileObject fo : list)
210 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { method in class:ClientCodeWrapper.WrappedJavaFileManager
212 return wrapJavaFileObjects(clientJavaFileManager.list(location, packageName, kinds, recurse));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java335 // Because the archive map is a flat list of directories,
627 public Iterable<JavaFileObject> list(Location location, method in class:JavacFileManager
651 // Need to match the path semantics of list(location, ...)
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java321 private void append(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
324 for (Type t: list) {
332 private void appendIfNotEmpty(StringBuilder sb, String prefix, List<? extends Type> list, String suffix) { argument
333 if (!isEmpty(list))
334 append(sb, prefix, list, suffix);
337 private boolean isEmpty(List<? extends Type> list) { argument
338 return (list == null || list.isEmpty());
460 if (methodExceptions != null) { // use generic list if available
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_trace.c9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
327 /* Output a specific list of traces. */
329 output_list(JNIEnv *env, TraceIndex *list, jint count) argument
340 index = list[i];
562 /* Get traces for all threads in list (traces[i]==0 if thread not running) */
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java127 * complete list of supported property patterns, see the User's Guide
294 private int len; // length used; list may be longer to minimize reallocs
295 private int[] list; // MUST be terminated with HIGH field in class:UnicodeSet
310 * representation from the inversion list.
334 list = new int[1 + START_EXTRA];
335 list[len++] = HIGH;
371 list = (int[]) other.list.clone();
569 // find smallest i such that c < list[i]
578 // assert(list[le
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java245 list(fname, files);
249 list(new BufferedInputStream(in), files);
426 * Expands list of files to process into full list of all files that
453 expand(f, f.list(), isUpdate);
985 void list(InputStream in, String files[]) throws IOException { method in class:Main
1003 void list(String fname, String files[]) throws IOException { method in class:Main
1090 // use command line specified list of jars
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFont2DTest.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
1143 public Component getListCellRendererComponent(JList list, argument
1151 super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
1166 super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java581 * Sends the {@code FEAT} command to the server and returns the list of supported
585 * See the RFCs for a complete list.
702 * @param path the pathname of the directory to list, or {@code null}
710 public abstract InputStream list(String path) throws FtpProtocolException, IOException; method in class:FtpClient
714 * content. It differs from {@link #list(String)} method by the fact that
715 * it will only list the file names which would make the parsing of the
722 * directory to list or {@code null} for the current working directory.
785 * @param path the pathname of the directory to list or {@code null}
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java320 public Iterable<JavaFileObject> list(Location location, String packageName, Set<Kind> kinds, boolean recurse) throws IOException { method in class:TestClientCodeWrapper.UserFileManager
321 throwUserExceptionIfNeeded(fileManagerMethod, "list");
322 return wrap(super.list(location, packageName, kinds, recurse));
410 public Iterable<JavaFileObject> wrap(Iterable<? extends JavaFileObject> list) { argument
412 for (JavaFileObject fo : list)
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DStubGenerator.java217 // to the list of transactional classes.
262 Vector list = new Vector(count+5);
279 list.addElement(new OutputType(Utility.tieNameForCompiler(typeName), type));
314 list.addElement(new OutputType(Utility.stubNameForCompiler(typeName), type));
318 // Copy list into array..
320 OutputType[] outputTypes = new OutputType[list.size()];
321 list.copyInto(outputTypes);
1331 * Get a list of all the RepositoryIDs for interfaces
1334 * more remote interfaces, this list will begin with the
1337 * type is first in the list becaus
1468 addRemoteInterfaces(Vector list, CompoundType theType) argument
1542 countRemote(Type[] list, boolean includeAbstract) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboPopup.java86 protected JList list; field in class:BasicComboPopup
142 // Listeners that are attached to the list
233 return list;
292 // reference to the list, causing the list (and us) to never get gced.
293 list.setModel(EmptyListModel);
330 list = createList();
331 list.setName("ComboBox.list");
402 * Creates a list selectio
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DLocale.java90 * alpha-2 code must be used. You can find a full list of valid
105 * <dd>ISO 15924 alpha-4 script code. You can find a full list of
120 * You can find a full list of valid country and region codes in the
143 * region subtags. You can find a full list of valid variant codes
938 * Returns a list of all 2-letter country codes defined in ISO 3166.
943 * Therefore, the list returned by this method does not contain ALL valid
956 * Returns a list of all 2-letter language codes defined in ISO 639.
962 * The list this function returns includes both the new and the old codes for the
965 * 8 characters in length. Therefore, the list returned by this method does
1451 * <p>For a list o
1991 composeList(MessageFormat format, String[] list) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.hpp49 // A free list of Monitor*'s.
136 // A doubly-linked list of GCTasks.
137 // The list is not synchronized, because sometimes we want to
138 // build up a list and then make it available to other threads.
170 // Enqueue a list of tasks. Empties the argument list.
171 void enqueue(GCTaskQueue* list);
252 void enqueue(GCTaskQueue* list) { argument
254 unsynchronized_queue()->enqueue(list);
340 // list o
[all...]

Completed in 127 milliseconds

<<111213