Searched refs:endsWith (Results 126 - 150 of 393) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/misc/JarIndex/metaInfFilenames/
H A DBasic.java166 if (javaHome.endsWith("jre")) {
432 if (path.endsWith("a.jar"))
434 else if (path.endsWith("b.jar"))
436 else if (path.endsWith("c.jar"))
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB6299712.java115 if (!uri.toString().endsWith("redirect")) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DMetaIndex.java237 if (isClassOnlyJar && !entry.endsWith(".class")){
H A DJarIndex.java315 while((line = br.readLine()) != null && !line.endsWith(".jar"));
321 if (line.endsWith(".jar")) {
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/logging/
H A DHttpLogFormatter.java72 if (s.endsWith(": null")) {
/openjdk7/langtools/test/tools/javac/file/zip/
H A DUtils.java79 return javaFile.getName().endsWith(".java")
/openjdk7/langtools/test/tools/javac/processing/model/testgetallmembers/
H A DMain.java77 if (type.endsWith("package-info"))
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java139 return text.startsWith("ABC") && text.endsWith("XYZ");
/openjdk7/langtools/test/tools/javah/compareTest/
H A DFindNativeFiles.java70 if (name.startsWith("META-INF") || !name.endsWith(".class"))
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassPath.java185 return name.endsWith(".zip") || name.endsWith(".jar");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DMethodBreakpointSpec.java187 !comp2.endsWith("...")) {
237 boolean isVarArgs = name.endsWith("...");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DBreakpointSpec.java240 !comp2.endsWith("...")) {
287 boolean isVarArgs = name.endsWith("...");
/openjdk7/jdk/make/tools/src/build/tools/dirdiff/
H A DDirDiff.java181 if (!(newGoldenDir.getAbsolutePath().endsWith("SCCS")) || traversSccsDirs ) {
218 if (!(currentTestDirs[i].getAbsolutePath().endsWith("SCCS")) || traversSccsDirs ) {
/openjdk7/jdk/make/tools/src/build/tools/jarreorder/
H A DJarReorder.java210 if (addClassSuffix && !path.endsWith(".class")) {
307 if (!path.endsWith(File.separator)) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DTypeToJType.java73 assert !className.endsWith("*");
91 if(type.name != null && type.name.endsWith("*")){
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DOptions.java202 if (file.getName().endsWith(".java")) {
224 if (file.getName().endsWith(".java")) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DTemporaryFiles.java56 if (suffix == null && !name.endsWith(".tmp"))
58 if (suffix != null && !name.endsWith(suffix))
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java316 if (issuer.endsWith("\n")) {
330 if (subject.endsWith("\n")) {
/openjdk7/langtools/test/tools/javac/diags/
H A DCheckResourceKeys.java140 if (s.endsWith(".1") && codeStrings.contains(s.substring(0, s.length() - 2)))
284 if (rk.endsWith(s))
H A DMessageInfo.java273 while (l.text.endsWith("\\"))
283 while (l.text.endsWith("\\") && l.next != null) {
349 (f.isFile() && f.getName().endsWith(".java"));
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DCallerSensitiveFinder.java199 if (home.endsWith("jre")) {
239 if (fn.endsWith(".jar") && !fn.equals("jfxrt.jar")) {
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java244 if (uname.endsWith(".SF")) {
788 if (name.endsWith(".DSA")
789 || name.endsWith(".RSA")
790 || name.endsWith(".SF")
791 || name.endsWith(".EC")
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DParseUtil.java246 while (file.endsWith("/..")) {
255 if (file.endsWith("/."))
269 if (!path.endsWith("/") && file.isDirectory()) {
288 if (auth != null && auth.endsWith(":-1"))
400 && !host.endsWith("]"));
/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java463 private static void endsWith() { method in class:Exceptions
464 System.out.println("endsWith(String suffix)");
467 "foo".endsWith(null);
649 endsWith(); // endsWith(String)
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DSignature.java281 return s.startsWith("L") && s.endsWith(">;");

Completed in 185 milliseconds

1234567891011>>