Searched refs:asList (Results 201 - 225 of 537) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/charset/StandardCharsets/
H A DStandard.java80 check(charsets.containsAll(Arrays.asList(standardCharsets)));
81 charsets.removeAll(Arrays.asList(standardCharsets));
/openjdk7/jdk/test/java/nio/file/attribute/AclFileAttributeView/
H A DBasic.java124 List<AclEntry> fileAcl = Arrays.asList(
138 List<AclEntry> dirAcl = Arrays.asList(
/openjdk7/langtools/test/tools/javac/6341866/
H A DT6341866.java100 opts.addAll(Arrays.asList("-d", ".", "-sourcepath", testSrc, "-classpath", testClasses, "-source", "1.6", "-Xlint:-options"));
109 opts.addAll(Arrays.asList("-processor", Anno.class.getName()));
/openjdk7/langtools/test/tools/javac/6402516/
H A DChecker.java116 System.err.println("Scope: " + (s == null ? null : asList(s.getLocalElements())));
163 static private <T> List<T> asList(Iterable<T> iter) { method in class:Checker
/openjdk7/langtools/test/tools/javac/6917288/
H A DT6917288.java97 Set<String> found = new TreeSet<String>(Arrays.asList(dir.list()));
98 Set<String> expect = new TreeSet<String>(Arrays.asList(paths));
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DTemplateManager.java121 System.out.println(key + " -> " + Arrays.asList(newAttrs));
236 return Arrays.asList(attributes).toString();
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DControlFactoryTest.java83 List<String> fmt = Arrays.asList(fmts);
112 fmt = Arrays.asList(fmtStrings);
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DRMIDownloadTest.java120 Arrays.asList("send", "receive").indexOf(args[0]);
122 Arrays.asList("with", "without").indexOf(args[1]);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DDirectoryScannerConfig.java240 this.includeFiles.addAll(Arrays.asList(includeFiles));
270 this.excludeFiles.addAll(Arrays.asList(excludeFiles));
/openjdk7/langtools/test/tools/javac/
H A DT6403466.java56 fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrcDir, self + ".java")));
58 Iterable<String> options = Arrays.asList("-processorpath", testClassDir,
H A DT6956638.java89 System.err.println("Test " + (++count) + ": " + Arrays.asList(sourceFiles));
96 List<String> compileOptions = Arrays.asList("-d", classesDir.getPath());
/openjdk7/langtools/test/tools/javac/annotations/6550655/
H A DT6550655.java70 Arrays.asList("-d", testDir.getAbsolutePath(), "-cp", testDir.getAbsolutePath()),
71 null, Arrays.asList(sources));
/openjdk7/langtools/test/tools/javac/scope/7046348/
H A DEagerInterfaceCompletionTest.java83 Arrays.asList("-d", testDir.getAbsolutePath(), "-cp", testDir.getAbsolutePath()),
84 null, Arrays.asList(sources));
/openjdk7/langtools/test/tools/javap/
H A DTestSuperclass.java109 fm.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(testDir));
113 CompilationTask t = comp.getTask(null, fm, null, null, null, Arrays.asList(js));
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java46 * when the method {@link #asList()} is called on it.</p>
62 the asList() method so you can write
63 for (Attribute a : attributeList.asList())
162 public List<Attribute> asList() { method in class:AttributeList
260 * a non-Attribute to the List, and disallow that if asList has ever
H A DMBeanInfo.java460 "attributes=" + Arrays.asList(fastGetAttributes()) + ", " +
461 "constructors=" + Arrays.asList(fastGetConstructors()) + ", " +
462 "operations=" + Arrays.asList(fastGetOperations()) + ", " +
463 "notifications=" + Arrays.asList(fastGetNotifications()) + ", " +
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DEditDistance.java60 return findNearest(key, Arrays.asList(group));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/exception/
H A DLocatableWebServiceException.java87 return Arrays.asList(location);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DListSimpleTypeImpl.java75 public XSListSimpleType asList() { return this; } method in class:ListSimpleTypeImpl
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DProbe.java60 List<String> names = new ArrayList<>(asList(classesAnnotation.value()));
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorTrustAnchor.java116 List<Certificate> list = Arrays.asList(new Certificate[] {
/openjdk7/jdk/test/sun/security/ssl/sanity/ciphersuites/
H A DCipherSuitesInOrder.java41 Arrays.<String>asList(
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttributes.java70 return Arrays.asList(attrs).iterator();
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTool.java67 Arrays.asList(arguments),
/openjdk7/langtools/test/tools/apt/Basics/
H A DTestGetTypeDeclarationApf.java44 = unmodifiableCollection(Arrays.asList("*"));

Completed in 60 milliseconds

1234567891011>>