Searched refs:success (Results 201 - 225 of 266) sorted by relevance

1234567891011

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTestSeq.java265 // On success branch to the template code
267 final InstructionHandle success = il.append(new GOTO_W(gtmpl));
270 trueList.backPatch(success);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImagingLib.java105 boolean success = init();
106 return Boolean.valueOf(success);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCDropTargetContextPeer.m147 [dropTarget javaDraggingEnded:(jlong)jdroptransfer success:jsuccess action:jdropaction];
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DStreamRemoteCall.java171 * relating to the success of the call).
172 * @param success If true, indicates normal return, else indicates
178 public ObjectOutput getResultStream(boolean success) throws IOException { argument
191 if (success) //
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp461 bool success) const {
465 if (success) {
502 print_inlining(callee_method, caller_bci, false /* !success */);
509 print_inlining(callee_method, caller_bci, false /* !success */);
515 bool success = try_to_inline(callee_method, caller_method, caller_bci, local
523 bool old_cold = !success;
535 if (success) {
553 print_inlining(callee_method, caller_bci, true /* success */);
565 print_inlining(callee_method, caller_bci, false /* !success */ );
H A Dmacro.cpp2358 bool success = false; local
2361 success = eliminate_locking_node(n->as_AbstractLock());
2363 assert(success == (C->macro_count() < old_macro_count), "elimination reduces macro count");
2364 progress = progress || success;
2373 bool success = false; local
2378 success = eliminate_allocate_node(n->as_Allocate());
2389 assert(success == (C->macro_count() < old_macro_count), "elimination reduces macro count");
2390 progress = progress || success;
2413 bool success = false; local
2419 success
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c951 GLint success; local
962 &success);
976 if (!success) {
994 &success);
1008 if (!success) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceContextPeer.java786 public void handleDragFinished(boolean success) { argument
792 public void handleDragFinished(boolean success, int action) { argument
795 handleDragFinished(success, action, xRoot, yRoot);
798 public void handleDragFinished(boolean success, int action, int x, int y) { argument
799 dragDropFinished(success, action, x, y);
H A DXDropTargetProtocol.java256 public abstract boolean sendDropDone(long ctxt, boolean success, argument
H A DXDnDDragSourceProtocol.java169 boolean success = (xclient.get_data(1) & XDnDConstants.XDND_ACCEPT_DROP_FLAG) != 0;
171 getProtocolListener().handleDragFinished(success, action);
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanTest.java154 success("MBeanAttributeInfo");
161 success("getAttribute");
169 success("getAttribute through proxy");
291 success("attribute " + name);
327 success("operation " + oname);
418 success(mname);
427 private static void success(String what) { method in class:MXBeanTest
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c382 int success = FALSE; local
394 success = TRUE;
404 success = (info->dstLines != NULL);
406 if (success && info->dstLines) {
428 success = (info->srcLines != NULL);
430 if (success && info->srcLines) {
444 success = (info->ports != NULL);
446 if (success && info->ports) {
472 if (!success) {
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerReordering.cpp180 LEErrorCode success = LE_NO_ERROR; local
184 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
185 fGlyphStorage.setAuxData(fOutIndex, charFeatures | (fSyllableCount & LE_GLYPH_GROUP_MASK), success);
H A DTibetanReordering.cpp182 LEErrorCode success = LE_NO_ERROR; local
186 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
187 fGlyphStorage.setAuxData(fOutIndex, featureMask, success);
H A DIndicReordering.h179 MPreFixups **outMPreFixups, LEErrorCode& success);
181 static void adjustMPres(MPreFixups *mpreFixups, LEGlyphStorage &glyphStorage, LEErrorCode& success);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServer.java760 // It seems that the init of "i" and "success"
765 boolean success = false;
775 while (i < bindRetries && !success) {
780 success = true;
792 if (!success) {
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.h82 le_int32 script, LEErrorCode &success) const {
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDragSourceContextPeer.java334 protected final void dragDropFinished(final boolean success, argument
340 success, x, y);
H A DSunDropTargetContextPeer.java684 public synchronized void dropComplete(boolean success) { argument
704 doDropDone(success, currentDA, local != null);
713 protected abstract void doDropDone(boolean success, argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java408 private boolean success; field in class:BugSpot.BreakpointResult
414 BreakpointResult(boolean success, boolean set, int lineNo) { argument
415 this(success, set, lineNo, null);
419 BreakpointResult(boolean success, boolean set, int lineNo, String why) { argument
420 this.success = success;
427 return success;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp384 void AwtDropTarget::DoDropDone(jboolean success, jint action) { argument
385 DropDoneRec ddr = { this, success, action };
397 (ddrp->dropTarget)->DropDone(ddrp->success, ddrp->action);
404 void AwtDropTarget::DropDone(jboolean success, jint action) { argument
405 m_dropSuccess = success;
611 //on success stgm would be deallocated by JAVA call freeStgMedium
1552 jlong dropTarget, jboolean success, jint actions) {
1558 pDropTarget->DoDropDone(success, actions);
1551 Java_sun_awt_windows_WDropTargetContextPeer_dropDone(JNIEnv* env, jobject self, jlong dropTarget, jboolean success, jint actions) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java1533 boolean success;
1536 success = importer.importData(support);
1538 success = false;
1541 e.dropComplete(success);
1542 cleanup(success);
H A DBufferStrategyPaintManager.java413 boolean success = true;
428 success = false;
432 return success;
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRETest.java46 // True if we want to see output from success cases
706 // If it was supposed to be an error, report success and continue
710 success("Produces an error (" + e.toString() + "), as expected.");
779 success((shouldMatch ? "Matched" : "Did not match")
871 * Show a success
874 void success(String s) method in class:RETestCase
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp97 inline void record_steal(bool success);
120 void TaskQueueStats::record_steal(bool success) { argument
122 if (success) ++_stats[steal];

Completed in 142 milliseconds

1234567891011