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

12345678910

/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateTable_x86_64.cpp1920 Label loop_entry, loop, found, continue_execution; local
1935 __ jcc(Assembler::equal, found);
1943 // entry found -> get offset
1944 __ bind(found);
2044 // entry found -> j = offset
3672 __ testptr(c_rarg1, c_rarg1); // check if a slot has been found
3673 __ jcc(Assembler::notZero, allocated); // if found, continue with that one
3733 Label found; local
3748 __ jcc(Assembler::equal, found);
3765 __ bind(found);
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp1868 Label loop_entry, loop, found, continue_execution;
1882 __ br(Assembler::equal, true, Assembler::pn, found);
1898 // entry found -> get offset
1899 __ bind(found);
1952 Label found;
2012 // entry found -> j = offset
3270 // entry found and Rscratch points to it
3783 // found free slot?
3815 { Label entry, loop, found;
3826 __ brx( Assembler::equal, true, Assembler::pt, found );
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp330 static const char *unstable_chroot_error = "/proc file system not found.\n"
2026 bool found = false; local
2042 found = true;
2050 if (found && info->dlpi_name && info->dlpi_name[0]) {
4438 bool found = os::dll_address_to_library_name(handler, buf, buflen, &offset); local
4439 if (found) {
4596 tty->print_cr(" found:%s", get_signal_handler_name(thisHandler, buf, O_BUFLEN));
4602 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp323 static const char *unstable_chroot_error = "/proc file system not found.\n"
1756 bool found = false; local
1772 found = true;
1780 if (found && info->dlpi_name && info->dlpi_name[0]) {
4252 bool found = os::dll_address_to_library_name(handler, buf, buflen, &offset); local
4253 if (found) {
4410 tty->print_cr(" found:%s", get_signal_handler_name(thisHandler, buf, O_BUFLEN));
4416 tty->print_cr(" found:" PTR32_FORMAT, act.sa_flags);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java1436 * @return the index if found a notation with the name, otherwise -1.
1667 // not found
2729 boolean found = false;
2734 found = true;
2739 if (! found) {
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp351 // rewritten will have been set if loader constraint error found
726 // be relaxed if a need for it is found.
1057 // found matching name; do linear search to find matching signature
1075 // not found
1078 assert(index == -1, err_msg("binary search should have found entry %d", index));
1089 assert(index == -1, err_msg("binary search should have found entry %d", index));
1358 // Lookup a jmethodID, NULL if not found. Do no blocking, no allocations, no handles
1456 // deoptimization. Returns the number of nmethods found.
1460 int found = 0; local
1476 found
[all...]
H A DconstantPoolOop.cpp495 cache_index = _no_index_sentinel; // not found
1330 bool found = compare_entry_to(pattern_i, search_cp, i, CHECK_0); local
1331 if (found) {
1336 return 0; // entry not found; return unused index zero (0)
1646 assert(idx1 != 0, "Have not found a hashtable entry");
1669 DBG(printf("Index found: %d\n",idx1));
1677 assert(idx1 != 0, "Have not found a hashtable entry");
1686 assert(idx1 != 0, "Have not found a hashtable entry");
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java1957 // Check to see if this node has already been found
1959 boolean found = false;
1964 found = true;
1969 if (found == false) {
2342 // Need to get the last CipherData found, as earlier ones will
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java1282 boolean found = false;
1286 found = true;
1289 if (found == false) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp1609 bool found = false; local
1613 found = true;
1617 if (!found) {
1709 assert(rpo_idx == -1 && bb_ct == _block.length(), "all block members found");
2296 return false; // already found a scale
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java495 boolean found = false;
504 found = true;
508 return found;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java198 * defining section of the entry is found.
213 * Whether or not any parameter names have been found.
1541 // The method wasn't found: emit a warning and recover
1545 log.warning("annotation.method.not.found",
1549 log.warning("annotation.method.not.found.reason",
1779 * of parameter names found in LocalVariableTable attributes. It is
1804 * no parameter names were found in the class file) or will be set to a
1809 // if no names were found in the class file, there's nothing more to do
2012 printCCF("found.later.version",
2211 List<Type> found
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DXPathParser.java503 m_token }); //"Expected "+expected+", but found: "+m_token);
532 m_token }); //"Expected "+expected+", but found: "+m_token);
544 * @param msg An error msgkey that corresponds to one of the constants found
597 * @param msg An error msgkey that corresponds to one of the constants found
642 * @param msg An error msgkey that corresponds to one of the constants found
709 * values found in {@link com.sun.org.apache.xpath.internal.compiler.FunctionTable}, but may
1602 // "Location path expected, but found "+m_token+" was encountered."
1800 * @return FROM_XXX axes type, found in {@link com.sun.org.apache.xpath.internal.compiler.Keywords}.
1828 * @param axesType FROM_XXX axes type, found in {@link com.sun.org.apache.xpath.internal.compiler.Keywords}.
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp221 // found during scavenge. Note that we are updating the offset table based on
932 // An unparsable object found. Signal early termination.
974 // An unparsable object found. Signal early termination.
1887 /* None found. */
2764 bool found;
2767 for (k = 1, cur_sz = k * word_sz, found = false;
2783 found = true;
2796 if (found) {
2880 // If n is 0, the chunk fc that was found is not large
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java405 boolean found = false;
430 if (found) {
435 found = true;
439 if (!found) {
2557 // if not found, check in output parts
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java1719 // Check the case for no match found
3059 // Make sure that the pattern is found
3135 // Make sure that the pattern is found
3173 * also found in the file. The file format is described in comments
3208 boolean found = m.find();
3210 if (found)
3215 if (found) {
3224 if (found) {
3402 check(pattern, "zzzaabcazzz", true); // found "abca"
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp179 // found the caller
708 // if not found. ClassNotFoundException is not thrown.
1478 bool found = false; local
1484 for (; !iter.done() && !found; iter.next()) {
1493 found = (k() == inner_klass);
1494 if (found && ooff != 0) {
1503 if (found && outer_klass.is_null()) {
1513 // If no inner class attribute found for this class.
H A DjvmtiExport.cpp1573 bool found = JvmtiEnv::get_field_descriptor(field_klass(), field, &fd); local
1574 // should be found (if not, leave as is)
1575 if (found) {
2192 // not found - try local path
H A Djni.cpp2923 bool found = false; variable
2932 found = id->find_local_field(&fd);
2936 found = instanceKlass::cast(k)->find_field_from_offset(offset, false, &fd);
2938 assert(found, "bad fieldID passed into jni_ToReflectedField");
3975 return method; // wahoo, we found a prefixed version of the method, return it
3977 // found as non-native, so prefix is good, add it, probably just need more prefixes
3981 return NULL; // not found
4056 st.print("Method %s.%s%s not found", Klass::cast(h_k())->external_name(), meth_name, meth_sig);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp691 // a) found a non-child window so terminate
692 // b) found real toplevel window (e.g. EmbeddedFrame
732 goto found;
758 goto found;
770 found:
3126 BOOL found = false; local
3131 found = true;
3133 return; /* if ideal case found return, else keep looking */
3137 if (found) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java733 ".k.at.least.one.certificate.was.found.in.keystore"));
735 ".i.at.least.one.certificate.was.found.in.identity.scope"));
956 boolean found = false;
979 found = true;
1445 // If header end is not found, it means the MANIFEST.MF has only
1691 ("Certificate.not.found.for.alias.alias.must.reference.a.valid.KeyStore.entry.containing.an.X.509.public.key.certificate.for.the"));
1798 ("Certificate.chain.not.found.in.the.file.specified."));
1801 ("Certificate.chain.not.found.for.alias.alias.must.reference.a.valid.KeyStore.key.entry.containing.a.private.key.and"));
1811 ("found.non.X.509.certificate.in.signer.s.chain"));
H A DKeyTool.java3316 * and ending at a self-signed certificate found in the keystore.
4052 "Odd.number.of.hex.digits.found.") + extstr);
4100 boolean found = false;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DParsedSynthStyle.java56 boolean found = false;
62 found = true;
66 if (!found) {

Completed in 3238 milliseconds

12345678910