Searched refs:found (Results 176 - 200 of 248) sorted by relevance

12345678910

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java764 if((index = str.indexOf(old)) != -1) { // `old' found in str
934 boolean found = false;
936 for(int i=Constants.T_BOOLEAN; (i <= Constants.T_VOID) && !found; i++) {
938 found = true;
943 if(!found) // Class name
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java562 boolean found = true;
650 found = false;
663 if (!found || !(value instanceof Boolean)) { // set properties
664 found = true;
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c447 * be found must be handled through other mechanisms.
463 * be found must be handled through other mechanisms.
709 goto found;
715 goto found;
722 goto found;
730 found:
1833 /* name not found but still a success */
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c241 * assumed to be present in the "JRE path" directory. If it is not found
299 printf("EnsureJreInstallation:<%s>:not found\n", tmpbuf);
308 printf("EnsureJreInstallation:<%s>:not found\n", tmpbuf);
356 goto found;
363 goto found;
370 goto found;
377 found:
1019 * s, but with quotes removed so the result is a string as would be found
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DResourceBundleTest.java301 errln("Supposedly found FakeTestResource.properties, but it had the wrong contents.");
320 boolean found = false;
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexpPool.java53 matched. If ret is an instance of the RegexpTarget class, ret.found
70 * matched. If ret is an instance of the RegexpTarget class, ret.found
151 return.found(string_that_matched_wildcard).
226 o = ((RegexpTarget) o).found(s.substring(bst, bend));
/openjdk7/jdk/make/java/redist/
H A DMakefile308 $(warning WARNING: $(HOTSPOT_SERVER_PATH)/$(JVMDB_NAME) not found!)
372 $(warning WARNING: $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME) not found!)
393 $(warning WARNING: $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_NAME) not found!)
413 $(warning WARNING: $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_NAME) not found!)
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp649 bool found; local
652 found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
653 if (found) {
669 found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
671 if (found) {
1061 // frame. Consult ADLC for where parameter 0 is to be found. Then
1063 // register, both of which are saved in the local frame. If not found
H A Dthread.cpp433 assert(MinPriority <= priority && priority <= MaxPriority, "non-Java priority found");
1032 bool found = k != NULL && local
1035 if (found) {
1053 bool found = k != NULL && local
1056 if (found) {
2599 const char * found = strstr(DeoptimizeOnlyAt, buffer); local
2600 while (found != NULL) {
2601 if ((found[len] == ',' || found[len] == '\n' || found[le
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java336 * object could not be found
380 * <p>Instantiates this MBean instance with the data found for
1062 "class for invoke " + opName + " not found";
1074 mth, "found " + opMethodName + ", now invoking");
1135 "class not found");
1137 final String msg = "Parameter class not found";
1155 "Target method not found: " + targetClass.getName() + "." +
1459 * <LI> No ModelMBeanInfo was found for the Model MBean.</LI>
1460 * <LI> No ModelMBeanAttributeInfo was found for the specified
1510 "getAttribute failed: ModelMBeanInfo not found fo
[all...]
H A DDescriptorSupport.java1152 boolean found = false;
1155 found = true;
1159 if (!found)
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.java644 * with the given tag, or null if none is found.
659 * of the given class, or null if none is found.
684 * of the given class, or -1 if none is found.
1807 boolean found = false;
1815 found = true;
1819 if (!found) {
1861 boolean found = false;
1869 found = true;
1873 if (!found) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java1038 // found it but got no attributes
1571 // %%% Should we fail if not found, or just continue?
3318 int found = findControl(prevCtls, addition);
3319 if (found != -1) {
3344 int found = findControl(prevCtls, target);
3345 if (found == -1) {
3351 System.arraycopy(prevCtls, 0, newCtls, 0, found);
3352 System.arraycopy(prevCtls, found+1, newCtls, found,
3353 prevCtls.length-found
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DSignatureFileVerifier.java658 boolean found =
661 if (!found)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDValidator.java716 // we've found a cached one;so let's make sure not to read
1240 // found the match att decl,
1373 boolean found = false;
1376 found = false;
1381 found = true;
1386 if (!found) {
1869 // validate only against grammar we've found (depending on settings
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp123 bool found = false; local
124 while (itr->next() && !found) {
126 assert(itr->type()==old_type, "wrong relocInfo type found");
128 found=true;
131 assert(found, "no relocInfo found for pc");
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.cpp415 // A candidate chunk has been found. If it is already under
457 "A chunk of the wrong size was found");
879 // A list for this size may not be found (nd == 0) if
965 // tree and returns promptly when found.
1024 Chunk* found() { return _found; } function in class:EndTreeSearchClosure
1031 assert(found_target || etsc.found() == NULL, "Consistency check");
1032 assert(!found_target || etsc.found() != NULL, "Consistency check");
1033 return etsc.found();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp597 assert(continuation != NULL, "no handler found");
960 assert(caller_code != NULL, "nmethod not found");
1017 bool found = false; variable
1018 while (oops.next() && !found) {
1024 found = true;
1027 assert(found, "the oop must exist!");
/openjdk7/jdk/src/share/native/sun/security/jgss/wrapper/
H A DGSSLibStub.c81 jboolean found; local
84 found = JNI_FALSE;
93 found = JNI_TRUE;
99 if (found != JNI_TRUE) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java1001 boolean found = false;
1008 found = true;
1014 if (!found)
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java885 boolean found = false;
890 found = true;
895 if (! found) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComboBox.java561 boolean found = false;
565 found = true;
570 if (!found) {
1408 * If the Tab key is found, the popup window is closed.
1487 * found.
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormView.java843 boolean found = false;
847 found = true;
849 else if (found && isControl(next)) {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifFileChooserUI.java811 boolean found = false;
815 found = true;
818 if (!found) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java916 boolean found = false;
924 found = true;
925 } else if (found) {

Completed in 147 milliseconds

12345678910