Searched refs:found (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-shape-complex-hebrew.cc71 bool found = (bool) c->unicode->compose (a, b, ab); local
73 if (!found && !c->plan->has_mark)
81 found = true;
87 found = true;
90 found = true;
96 found = true;
102 found = true;
108 found = (*ab != 0);
111 found = true;
114 found
[all...]
/openjdk9/langtools/test/jdk/javadoc/doclet/testModules/
H A DTestModules.java391 void checkDescription(boolean found) { argument
392 checkOutput("moduleA-summary.html", found,
399 checkOutput("moduleB-summary.html", found,
406 checkOutput("overview-summary.html", found,
429 void checkNoDescription(boolean found) { argument
430 checkOutput("moduleA-summary.html", found,
437 checkOutput("moduleB-summary.html", found,
446 void checkHtml5Description(boolean found) { argument
447 checkOutput("moduleA-summary.html", found,
459 checkOutput("moduleB-summary.html", found,
494 checkHtml5NoDescription(boolean found) argument
795 checkModuleClickThrough(boolean found) argument
801 checkModuleFilesAndLinks(boolean found) argument
821 checkModuleFrameFiles(boolean found) argument
832 checkAllModulesLink(boolean found) argument
837 checkModulesInSearch(boolean found) argument
923 checkModuleModeApi(boolean found) argument
950 checkModuleModeAll(boolean found) argument
1005 checkModuleDeprecation(boolean found) argument
1040 checkOverviewFrame(boolean found) argument
1047 checkModuleSummaryNoExported(boolean found) argument
1106 checkModuleName(boolean found) argument
[all...]
/openjdk9/hotspot/src/share/vm/ci/
H A DciConstantPoolCache.cpp56 bool found = false; local
57 int pos = _keys->find_sorted<int, ciConstantPoolCache::key_compare>(index, found);
58 if (!found) {
70 bool found = false; local
71 int pos = _keys->find_sorted<int, ciConstantPoolCache::key_compare>(index, found);
72 assert(!found, "duplicate");
/openjdk9/langtools/test/jdk/javadoc/tool/api/basic/
H A DDocumentationToolLocationTest.java53 String found = dl.getName();
54 if (!Objects.equals(expect, found))
55 throw new Exception("mismatch for " + dl + "; expected " + expect + ", found " + found);
70 DocumentationTool.Location found = DocumentationTool.Location.valueOf(dl.name());
71 if (!Objects.equals(expect, found))
72 throw new Exception("mismatch for " + dl + "; expected " + expect + ", found " + found);
/openjdk9/langtools/test/tools/javadoc/api/basic/
H A DDocumentationToolLocationTest.java53 String found = dl.getName();
54 if (!Objects.equals(expect, found))
55 throw new Exception("mismatch for " + dl + "; expected " + expect + ", found " + found);
70 DocumentationTool.Location found = DocumentationTool.Location.valueOf(dl.name());
71 if (!Objects.equals(expect, found))
72 throw new Exception("mismatch for " + dl + "; expected " + expect + ", found " + found);
/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jstat/
H A DSyntaxException.java47 public SyntaxException(int lineno, String expected, String found) { argument
50 + ", Found " + found;
53 public SyntaxException(int lineno, String expected, Token found) { argument
56 + ", Found " + found.toMessage();
59 public SyntaxException(int lineno, Token expected, Token found) { argument
62 + ", Found " + found.toMessage();
65 public SyntaxException(int lineno, Set<String> expected, Token found) { argument
78 message = msg.append("\', Found ").append(found.toMessage()).toString();
/openjdk9/jdk/test/java/awt/datatransfer/SystemFlavorMap/
H A DDuplicateMappingTest.java54 boolean found = false;
58 if (found) {
62 found = true;
67 if (!found) {
77 found = false;
81 if (found) {
85 found = true;
90 if (!found) {
/openjdk9/langtools/test/tools/doclint/
H A DOptionTest.java85 boolean found = DocLint.isValidOption(test);
86 if (found != expect)
87 error("Unexpected result: " + found + ",expected: " + expect);
/openjdk9/jdk/test/tools/jlink/plugins/SystemModuleDescriptors/src/m5/p5/
H A DMain.java50 boolean found = false;
53 found = true;
56 libClassFound = found;
/openjdk9/langtools/test/tools/javac/processing/model/util/
H A DBinaryName.java56 CharSequence found = elements.getBinaryName(t);
57 if (expected.contentEquals(found)) {
58 System.out.println(expected + " == " + found);
61 System.out.println(expected + " != " + found + " [FAIL]");
/openjdk9/langtools/test/tools/javac/
H A DT6351767.java64 boolean found = false;
69 System.err.println("found " + jfo.toUri());
71 found = true;
73 if (!found)
74 error("expected file, java/lang/Object.class, not found");
76 found = false;
82 System.err.println("found " + jfo.toUri());
84 found = true;
86 if (!found)
87 error("expected file, java/lang/Object.class, not found");
[all...]
/openjdk9/langtools/test/tools/javac/processing/model/element/
H A DTestTypeParameter.java46 int found = (new Scanner()).scan(roundEnv.getRootElements(), null);
47 if (found == expect) {
48 note("generic elements found and verified: " + found);
51 + ", found " + found);
62 found += check(e, e.getTypeParameters());
63 return found;
69 found += check(e, e.getTypeParameters());
70 return found;
73 int found; field in class:TestTypeParameter.Scanner
[all...]
/openjdk9/langtools/test/tools/javac/tree/
H A DJavacTreeScannerTest.java84 * The set of nodes found by the scanner are compared
85 * against the set of nodes found by reflection.
91 found = new HashSet<JCTree>();
96 if (found.equals(expect)) {
98 return found.size();
101 error(sourcefile, "differences found");
103 if (found.size() != expect.size())
104 error("Size mismatch; found: " + found.size() + ", expected: " + expect.size());
108 missing.removeAll(found);
156 Set<JCTree> found; field in class:JavacTreeScannerTest.ScanTester
[all...]
/openjdk9/hotspot/test/gc/g1/
H A DTestEagerReclaimHumongousRegions.java93 int found = 0;
95 while (m.find()) { found++; }
96 System.out.println("Issued " + found + " Full GCs");
97 Asserts.assertLT(found, 10, "Found that " + found + " Full GCs were issued. This is larger than the bound. Eager reclaim seems to not work at all");
H A DTestEagerReclaimHumongousRegionsWithRefs.java105 int found = 0;
108 found++;
110 System.out.println("Issued " + found + " Full GCs");
112 assertLessThan(found, 10, "Found that " + found + " Full GCs were issued. This is larger than the bound. Eager reclaim of objects once referenced from old gen seems to not work at all");
/openjdk9/langtools/test/tools/sjavac/util/
H A DOptionTestUtil.java37 public static void checkFilesFound(Collection<String> found, Path... expected) { argument
43 if (!expectedStrs.containsAll(found))
45 "contain all actual (" + found + ")");
47 if (!found.containsAll(expectedStrs))
48 throw new AssertionError("Actual (" + found + ") does not " +
/openjdk9/jdk/test/java/util/TimeZone/
H A DDaylightTimeTest.java46 boolean found = findDSTTransition(tz, now);
47 if (observes != found) {
55 found = findDSTTransition(tz, now);
56 if (observes != found) {
58 tz.getID(), found, now);
/openjdk9/hotspot/test/compiler/escapeAnalysis/
H A DTestAllocatedEscapesPtrComparison.java87 boolean found = false;
93 found = true;
98 if (!found) {
/openjdk9/jdk/test/java/nio/file/DirectoryStream/
H A DDriveLetter.java54 boolean found = false;
59 found = true;
64 if (!found)
65 throw new RuntimeException("Temporary file not found???");
/openjdk9/langtools/test/jdk/javadoc/tool/enum/docComments/
H A DMain.java76 private static boolean checkComment(String found, String expected) { argument
78 System.out.println("found: \"" + found + "\"");
79 return expected.equals(found);
/openjdk9/langtools/test/tools/javac/api/
H A DT6395981.java50 Set<SourceVersion> found = compiler.getSourceVersions();
51 Set<SourceVersion> notExpected = EnumSet.copyOf(found);
53 if (!found.contains(version))
54 throw new AssertionError("Expected source version not found: " + version);
/openjdk9/langtools/test/tools/javac/api/ToolProvider/
H A DToolProviderTest2.java66 boolean found = false;
70 found = true;
73 if (!found)
74 error("expected class name not found");
/openjdk9/jdk/test/sun/security/krb5/etype/
H A DWeakCrypto.java52 boolean found = false;
57 found = true;
60 if (expected != found) {
/openjdk9/langtools/test/tools/javadoc/enum/docComments/
H A DMain.java73 private static boolean checkComment(String found, String expected) { argument
75 System.out.println("found: \"" + found + "\"");
76 return expected.equals(found);
/openjdk9/langtools/test/tools/javac/generics/
H A DT6869075.java61 static void equals(String found, String req) { argument
62 if (!found.equals(req)) {
64 " - found: " + found + ")");

Completed in 155 milliseconds

1234567891011>>