null

Searched defs:back (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DEditDistance.java85 /** back buffer. */
86 private int[] back; field in class:EditDistance
95 back = new int[a.length()+1]; // back buffer
106 cost = back;
107 back = t;
120 cost[i+1] = min( back[i]+match, cost[i]+1, back[i+1]+1 );
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/hw/
H A DExtendedBufferCapabilities.java87 * Creates an ExtendedBufferCapabilities object with front/back/flip caps
99 * Creates an ExtendedBufferCapabilities instance with front/back/flip caps
103 ImageCapabilities back, FlipContents flip)
105 super(front, back, flip);
111 * Creates an ExtendedBufferCapabilities instance with front/back/flip caps
115 ImageCapabilities back, FlipContents flip,
118 super(front, back, flip);
124 * Creates an ExtendedBufferCapabilities instance with front/back/flip caps
136 * Creates an ExtendedBufferCapabilities instance with front/back/flip caps
102 ExtendedBufferCapabilities(ImageCapabilities front, ImageCapabilities back, FlipContents flip) argument
114 ExtendedBufferCapabilities(ImageCapabilities front, ImageCapabilities back, FlipContents flip, VSyncType t) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapReferralException.java255 appendUnprocessedReferrals(LdapReferralException back) { argument
261 if (back != null) {
262 back.dump();
277 if (this == back) {
281 if ((back != null) && (! back.hasMoreReferrals())) {
282 back = back.nextReferralEx; // trim
285 if (back == null) {
294 ptr.nextReferralEx = back; // appen
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dgzio.c95 int back; /* one character push-back */ member in struct:gz_stream
96 int last; /* true if push-back is last character */
146 s->back = EOF;
436 if (s->stream.avail_out && s->back != EOF) {
437 *next_out++ = s->back;
440 s->back = EOF;
537 Push one byte back onto the stream.
545 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
546 s->back
[all...]
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java549 back();
570 private void back() { method in class:FileChooserDemo.WizardDialog
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c1552 png_color back, back_1; local
1559 back.red = png_ptr->gamma_table[png_ptr->background.red];
1560 back.green = png_ptr->gamma_table[png_ptr->background.green];
1561 back.blue = png_ptr->gamma_table[png_ptr->background.blue];
1591 gs = PNG_FP_1; /* back */
1597 back.red = png_gamma_8bit_correct(png_ptr->background.red,
1599 back.green = png_gamma_8bit_correct(png_ptr->background.green,
1601 back.blue = png_gamma_8bit_correct(png_ptr->background.blue,
1607 back.red = (png_byte)png_ptr->background.red;
1608 back
1778 png_color back; local
[all...]
H A Dpngwutil.c1438 png_write_bKGD(png_structp png_ptr, png_const_color_16p back, int color_type) argument
1452 back->index >= png_ptr->num_palette)
1458 buf[0] = back->index;
1464 png_save_uint_16(buf, back->red);
1465 png_save_uint_16(buf + 2, back->green);
1466 png_save_uint_16(buf + 4, back->blue);
1484 if (back->gray >= (1 << png_ptr->bit_depth))
1492 png_save_uint_16(buf, back->gray);
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp119 Node* back = head->in(LoopNode::LoopBackControl); local
120 while (back != head) {
121 if ((back->Opcode() == Op_IfTrue || back->Opcode() == Op_IfFalse) &&
122 back->in(0) &&
123 back->in(0)->is_If() &&
124 back->in(0)->as_If()->_fcnt != COUNT_UNKNOWN &&
125 back->in(0)->as_If()->_prob != PROB_UNKNOWN) {
128 back = phase->idom(back);
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c915 (JNIEnv *env , jclass clazz, jlong display, jlong source, jlong mask, jlong fore, jlong back, jint x , jint y) {
919 (XColor *) jlong_to_ptr(fore), (XColor *) jlong_to_ptr(back), x, y);
914 Java_sun_awt_X11_XlibWrapper_XCreatePixmapCursor(JNIEnv *env , jclass clazz, jlong display, jlong source, jlong mask, jlong fore, jlong back, jint x , jint y) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java402 static native long XCreatePixmapCursor(long display, long source, long mask, long fore, long back, int x, int y); argument

Completed in 95 milliseconds