Searched refs:list (Results 251 - 275 of 832) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipArchive.java94 List<String> list = map.get(dirname);
95 if (list == null)
96 list = List.nil();
97 list = list.prepend(basename);
98 map.put(dirname, list);
106 List<String> list = map.get(dirname);
107 return (list != null && list.contains(basename));
/openjdk7/jdk/test/java/security/cert/pkix/policyChanges/
H A DTestPolicy.java126 List list = new ArrayList();
129 list.add(toString(next));
131 Collections.sort(list);
132 return tree.getValidPolicy() + list;
/openjdk7/jdk/test/java/util/Collection/
H A DHotPotatoes.java66 final List<Integer> list = (List<Integer>) argClazz.newInstance();
73 list.add(one);
74 list.remove(one);
80 Collection<?> coll = constr.newInstance(list);
/openjdk7/jdk/test/java/util/UUID/
H A DUUIDTest.java49 // Verify that list.contains detects UUID collisons
51 List list = new LinkedList();
52 list.add(new UUID(4,4));
53 if (!list.contains(new UUID(4,4)))
58 List list = new LinkedList();
67 if (list.contains(u1))
69 list.add(u1);
76 List list = new LinkedList();
86 if (list.contains(u1))
88 list
[all...]
/openjdk7/jdk/test/java/util/zip/
H A DReadLoc.java40 List entries = Collections.list(zipFile.entries());
/openjdk7/langtools/test/tools/javac/unit/util/list/
H A DFromArray.java30 * @compile ../../util/list/FromArray.java
31 * @run main util.list.FromArray
34 package util.list;
/openjdk7/jdk/test/java/io/File/
H A DSymLinks.java245 header("list");
250 assertTrue(dir.list().length == 0); // directory should be empty
251 assertTrue(link2dir.list().length == 0);
252 assertTrue(link2link2dir.list().length == 0);
255 assertTrue(dir.list().length == 1);
256 assertTrue(dir.list()[0].equals(name));
259 assertTrue(link2dir.list().length == 1);
260 assertTrue(link2dir.list()[0].equals(name));
261 assertTrue(link2link2dir.list().length == 1);
262 assertTrue(link2link2dir.list()[
[all...]
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DSimpleValidator.java85 * The list is used because there may be multiple certificates
104 List<X509Certificate> list = trustedX500Principals.get(principal);
105 if (list == null) {
108 list = new ArrayList<X509Certificate>(2);
109 trustedX500Principals.put(principal, list);
111 list.add(cert);
376 List<X509Certificate> list = trustedX500Principals.get(issuer);
377 if (list != null) {
378 X509Certificate trustedCert = list.iterator().next();
395 List<X509Certificate> list
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DBindingIteratorImpl.java108 return list( how_many, blh );
114 * scope, It will be called from NamingContext.list() operation or
120 public boolean list( int how_many, org.omg.CosNaming.BindingListHolder blh) method in class:BindingIteratorImpl
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DSplitFilter.java53 List<Figure> list = selector.selected(d);
55 for (Figure f : list) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DUtils.java49 public static <T> List<T> list(final Object...args) { method in class:Utils
50 final ArrayList<Object> list = new ArrayList<Object>(args.length);
51 for (final Object arg : args) list.add(arg);
52 return (List<T>)list;
82 public static String joinWComma(final List<?> list) { return Fp.join(", ", list); } argument
83 public static String joinWComma(final Object[] list) { return Fp.join(", ", Arrays.asList(list)); } argument
131 * then A will come before B in the list.
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsUserDefinedFileAttributeView.java68 List<String> list = new ArrayList<>();
78 list.add(segs[1]);
82 list.add(segs[1]);
91 return Collections.unmodifiableList(list);
117 final List<String> list = new ArrayList<>();
166 list.add(segs[1]);
196 return Collections.unmodifiableList(list);
200 public List<String> list() throws IOException { method in class:WindowsUserDefinedFileAttributeView
/openjdk7/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DGetVMOption.java48 List<HotSpotDiagnosticMXBean> list =
50 HotSpotDiagnosticMXBean mbean = list.get(0);
/openjdk7/jdk/test/java/net/Inet4Address/
H A DPingThis.java46 List<NetworkInterface> nics = Collections.list(NetworkInterface
49 List<InetAddress> addrs = Collections.list(nic.getInetAddresses());
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DSecretKeyKS.sh71 ${TESTJAVA}${FS}bin${FS}keytool -list -keystore ${TESTSRC}${FS}SecretKeyKS.jks -storepass password
H A Dtrystore.sh60 $KEYTOOL -list -storepass changeit
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DPCSCTerminals.java75 public synchronized List<CardTerminal> list(State state) throws CardException { method in class:PCSCTerminals
81 List<CardTerminal> list = new ArrayList<CardTerminal>(readerNames.length);
96 list.add(terminal);
100 list.add(terminal);
105 list.add(terminal);
111 list.add(terminal);
117 list.add(terminal);
124 return Collections.unmodifiableList(list);
126 throw new CardException("list() failed", e);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassPath.java213 String list[] = path[i].getFiles(subdir);
215 if (list.length > 0) {
219 for (int j = 0; j < list.length; j++) {
220 if (basename.equals(list[j])) {
234 * Returns list of files given a package name and extension.
250 String[] list = path[i].getFiles(pkg);
251 for (int j = 0; j < list.length; j++) {
252 String name = list[j];
297 files = sd.list();
/openjdk7/jdk/test/java/security/cert/CertPathValidator/OCSP/
H A DAIACheck.java57 List<X509Certificate> list =
61 CertPath path = cf.generateCertPath(list);
/openjdk7/jdk/test/sun/rmi/transport/tcp/
H A DDeadCachedConnection.java78 String[] junk = reg.list();
88 junk = reg.list();
/openjdk7/jdk/src/share/classes/java/beans/
H A DChangeListenerMap.java71 * Adds a listener to the list of listeners for the specified property.
95 * Removes a listener from the list of listeners for the specified property.
129 * Returns the list of listeners for the specified property.
132 * @return the corresponding list of listeners
141 * Sets new list of listeners for the specified property.
144 * @param listeners new list of listeners
170 List<L> list = new ArrayList<L>();
175 list.add(listener);
182 list.add(newProxy(name, listener));
186 return list
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayReferenceImpl.java73 List list = getValues(index, 1);
74 return (Value)list.get(0);
131 List<Value> list = new ArrayList<Value>(1);
132 list.add(value);
133 setValues(index, list, 0, 1);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java107 String[] list = f.list();
112 for (int i=0; i<list.length; i++) {
113 p.println ("<li><a href=\""+list[i]+"\">"+list[i]+"</a></li>");
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DGroup.java110 * first in the sorted list.
165 * command line. Given a list of packages, search each package name in
168 * to the package list, which will fall under the specified group. If any
207 * list, if found return the group name. If not, return null.
210 * expression list.
223 * For the given group name, return the package list, on which it is mapped.
224 * Create a new list, if not found.
230 List<PackageDoc> list = map.get(groupname);
231 if (list == null) {
232 list
[all...]
H A DIndexBuilder.java34 * containing members names starting with it. Also build a list for all the
49 * Mapping of each Unicode Character with the member list containing
124 * sort each element which is a list.
134 * given on the command line. Form separate list of those members depending
182 * Adjust list of members according to their names. Check the first
183 * character in a member name, and then add the member to a list of members
196 List<Doc> list = indexmap.get(unicode);
197 if (list == null) {
198 list = new ArrayList<Doc>();
199 indexmap.put(unicode, list);
[all...]

Completed in 1572 milliseconds

<<11121314151617181920>>