Searched refs:found (Results 126 - 150 of 248) sorted by relevance

12345678910

/openjdk7/jdk/src/macosx/native/java/util/
H A DMacOSXPreferencesFile.m261 Boolean found;
264 found = CFStringFindWithOptions(path, CFSTR("/"), searchRange,
266 if (!found) return CFSTR("");
281 Boolean found;
285 found = CFStringFindWithOptions(path, CFSTR("/"), searchRange,
287 if (!found) return CFSTR("");
303 Boolean found;
307 found = CFStringFindWithOptions(path, CFSTR("/"), searchRange, 0,
309 if (!found) return NULL; // no second slash!
313 found
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java517 boolean found = false;
532 found = true;
536 if (!found) {
552 boolean found = false;
558 found = true;
562 if (!found) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DThreadTab.java277 boolean found = false;
280 found = true;
284 if (!found) {
295 boolean found = false;
298 found = true;
302 if (!found) {
520 // a cycle found
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSS.java1084 * be found, this will not throw a MalformedURLException, instead
2468 short found = 0;
2474 found |= 4;
2478 if ((found & 1) == 0) {
2480 found |= 1;
2483 found |= 1;
2488 if ((found & 2) == 0) {
2490 found |= 2;
2494 found |= 2;
2500 if (found !
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java323 boolean found = false;
327 found = true;
331 if (found) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSocketOptionTests.java211 boolean found = false;
216 found = true;
220 check(found, "SCTP_PRIMARY_ADDR returned bogus address!");
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DValidateOpenTypes.java117 boolean found = false;
120 found = true;
124 if (!found) {
126 "VM option " + OPTION + " not found");
146 KEY1 + " property found" +
154 KEY2 + " property found" +
162 KEY3 + " property found" +
172 key + " property found" +
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java147 Set<String> found = rewriteFile(f, "{\"");
150 if (!expected.equals(found)) {
151 throw new Exception("Expected and found do not match");
154 for (String name: found) {
233 err("Dup found for " + key + ":");
246 * the pattern. Note: pattern ignores whitespaces. Returns names found.
/openjdk7/jdk/src/share/classes/sun/misc/
H A DExtensionDependency.java56 * attribute, the following describing attribute can be found in
527 boolean found=false;
533 found=true;
537 if (!found) {
/openjdk7/jdk/src/share/classes/sun/net/spi/nameservice/dns/
H A DDNSNameService.java186 throw new UnknownHostException("DNS record not found");
258 boolean found = false;
262 found = true;
266 if (!found) {
354 // if not found then throw the (last) exception thrown.
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java150 error(file, tree, "Wrong number of annotations found: " + foundCount + ", expected: " + expectCount);
194 System.err.println("found: " + name + " " + expect);
195 String found = new TypePrinter().print(tree);
196 if (!found.equals(expect))
197 error(file, anno, "Unexpected result: expected: \"" + expect + "\", found: \"" + found + "\"");
219 /** The number of annotations that have been found. @see #check */
/openjdk7/jdk/test/sun/security/pkcs11/
H A DPKCS11Test.java86 boolean found = false;
89 found = true;
93 if (!found) return;
147 throw new Exception("Test root directory not found");
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubjectDomainCombiner.java452 boolean found = false;
453 for (int j = 0; j < num && !found; j++) {
454 found = (optimized[j] == pd);
456 if (!found) {
/openjdk7/jdk/test/javax/rmi/ssl/
H A DSocketFactoryTest.java94 final boolean found = a.equals(b);
95 if (found != expected)
97 ((found)?"equals":"not equals"));
98 if (found && a.hashCode()!=b.hashCode())
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DREADME.txt73 how to use the multiple server port APIs is found in
/openjdk7/hotspot/src/os/posix/launcher/
H A Dlauncher.script106 echo Failed to find JDK. ALT_JAVA_HOME is not set or ./jdkpath.sh is empty or not found.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.cpp103 if (c == card_index) return found;
106 if (c == card_index) return found;
109 if (c == card_index) return found;
112 if (c == card_index) return found;
118 if (c == card_index) return found;
327 // Otherwise, none found:
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp62 // derived pointers, and bases can be found from them. Finally, we'll also
306 if( m == d ) goto found; // breaks 3 loops
318 found: ;
401 bool found = false; local
404 found = true;
408 assert( found, "derived with no base in oopmap" );
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java317 //same class found at higher level.
369 if (!found(members, pgmelem)
496 private boolean found(List<ProgramElementDoc> list, ProgramElementDoc elem) { method in class:VisibleMemberMap.ClassMembers
508 * Is member overridden? The member is overridden if it is found in the
689 boolean found = false;
695 found = true;
700 return found;
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java160 String found = cause.getMessage();
161 checkEqual("exception messaqe", expect, found);
213 <T> void checkEqual(String label, T expect, T found) { argument
214 if (!expect.equals(found))
215 error("Unexpected value for " + label + ": " + found + "; expected: " + expect);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp599 bool found = false; local
602 found = id->find_local_field(fd);
606 found = instanceKlass::cast(k)->find_field_from_offset(offset, false, fd);
608 return found;
780 bool found = false; local
785 found = true; // we found the object
790 if (found) {
1117 // If the thread was found on the ObjectWaiter list, then
1450 bool found local
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReader.java292 boolean found = false;
297 found = true;
303 found = true;
306 if (!found) {
482 boolean found = false;
486 found = true;
491 if (!found) {
2434 * not found in the located <code>ResourceBundle</code>.
2482 throw new IllegalArgumentException("Bundle not found!");
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanInfoSupport.java522 * same name. If no descriptor is found, null is returned.
641 boolean found = false;
644 found = true;
652 found = true;
677 found = true;
690 found = true;
703 found = true;
716 if (!found) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfig.java176 boolean found = false;
183 found = true;
188 if (!found) {
206 * value are found in configuration file, or error occurs when parsing
237 * value are found in configuration file, or error occurs when parsing
264 * @return the default value, null is returned if it cannot be found.
279 * @return the value found in config file, returns null if no value
280 * matched with the key is found.
323 * @return the default value, null is returned if it cannot be found.
372 * found
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DServerRequestInfoImpl.java676 boolean found = false;
686 found = true;
697 if( !found ) {

Completed in 106 milliseconds

12345678910