Searched defs:rh (Results 1 - 16 of 16) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A D_CodeBaseImplBase.java57 org.omg.CORBA.portable.ResponseHandler rh)
59 org.omg.CORBA.portable.OutputStream out = rh.createReply();
55 _invoke(String method, org.omg.CORBA.portable.InputStream in, org.omg.CORBA.portable.ResponseHandler rh) argument
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.cpp67 jint rh = read_int(); local
69 jint h = reverse_int(rh);
108 juint rh = reverse_int(h); local
110 assert(h == reverse_int(rh), "can re-read same bits");
112 write_int(rh);
H A DrelocInfo.hpp930 RelocationHolder rh = newHolder(); local
931 new(rh) oop_Relocation(oop_index, offset);
932 return rh;
938 RelocationHolder rh = newHolder(); local
939 new(rh) oop_Relocation(oop_index, offset);
940 return rh;
983 RelocationHolder rh = newHolder(); local
984 new(rh) virtual_call_Relocation(first_oop, oop_limit);
985 return rh;
1030 RelocationHolder rh local
1052 RelocationHolder rh = newHolder(); local
1073 RelocationHolder rh = newHolder(); local
1103 RelocationHolder rh = newHolder(); local
1121 RelocationHolder rh = newHolder(); local
1129 RelocationHolder rh = newHolder(); local
1170 RelocationHolder rh = newHolder(); local
1177 RelocationHolder rh = newHolder(); local
1216 RelocationHolder rh = newHolder(); local
1276 RelocationHolder rh = newHolder(); local
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DBorderedComponent.java505 int rx, int ry, int rw, int rh) {
509 int y2 = Math.min(ry + rh, dest.y + dest.height);
504 computeIntersection(Rectangle dest, int rx, int ry, int rw, int rh) argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DPixelToParallelogramConverter.java294 double rw, double rh)
307 dx2 *= rh;
308 dy2 *= rh;
322 outrenderer.fillParallelogram(sg2d, rx, ry, rx+rw, ry+rh,
328 double rw, double rh,
347 dx2 *= rh;
348 dy2 *= rh;
370 rx, ry, rx+rw, ry+rh,
375 rx, ry, rx+rw, ry+rh,
292 fillRectangle(SunGraphics2D sg2d, double rx, double ry, double rw, double rh) argument
326 drawRectangle(SunGraphics2D sg2d, double rx, double ry, double rw, double rh, double lw) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultFormatter.java398 * Returns true if the operation described by <code>rh</code> will
400 * field of <code>rh</code>.
402 boolean isValidEdit(ReplaceHolder rh) { argument
404 String newString = getReplaceString(rh.offset, rh.length, rh.text);
407 rh.value = stringToValue(newString);
537 * Returns true if the edit described by <code>rh</code> will result
540 boolean canReplace(ReplaceHolder rh) { argument
541 return isValidEdit(rh);
565 replace(ReplaceHolder rh) argument
[all...]
H A DInternationalFormatter.java625 * {@code rh.length} is corrected as to preserve trailing literals.
631 boolean canReplace(ReplaceHolder rh) { argument
633 String text = rh.text;
637 if (tl == 0 && rh.length == 1 && c.getSelectionStart() != rh.offset) {
639 rh.offset = getNextNonliteralIndex(rh.offset, -1);
641 int pos = rh.offset;
645 for (int i = 0; i < rh.length; i++) {
655 rh
688 replace(ReplaceHolder rh) argument
[all...]
H A DMaskFormatter.java672 * Returns true if the operation described by <code>rh</code> will
674 * field of <code>rh</code>.
678 boolean isValidEdit(ReplaceHolder rh) { argument
680 String newString = getReplaceString(rh.offset, rh.length, rh.text);
683 rh.value = stringToValue(newString, false);
715 boolean canReplace(ReplaceHolder rh) { argument
721 String text = rh.text;
724 if (tl == 0 && rh
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DJ2DAnalyzer.java186 ResultHolder rh = base.getResultByKey(key);
187 double score = rh.getScore();
204 System.out.println(rh.getShortKey()+":");
368 ResultHolder rh = new ResultHolder(srs);
369 rh.setName(name);
370 rh.setReps(numreps);
371 rh.setUnits(numunits);
372 readResult(in, rh);
373 srs.addResult(rh);
383 public static void readResult(BufferedReader in, ResultHolder rh) argument
570 addResult(ResultHolder rh) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmp_gf2m.c52 * Output in two mp_digits rh, rl.
56 s_bmul_1x1(mp_digit *rh, mp_digit *rl, const mp_digit a, const mp_digit b) argument
84 *rh = h; *rl = l;
88 s_bmul_1x1(mp_digit *rh, mp_digit *rl, const mp_digit a, const mp_digit b) argument
124 *rh = h; *rl = l;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp816 Handle rh = java_lang_reflect_Field::create(CHECK_NULL); local
818 java_lang_reflect_Field::set_clazz(rh(), Klass::cast(fd->field_holder())->java_mirror());
819 java_lang_reflect_Field::set_slot(rh(), fd->index());
820 java_lang_reflect_Field::set_name(rh(), name());
821 java_lang_reflect_Field::set_type(rh(), type());
823 java_lang_reflect_Field::set_modifiers(rh(), fd->access_flags().as_int() & JVM_RECOGNIZED_FIELD_MODIFIERS);
824 java_lang_reflect_Field::set_override(rh(), false);
829 java_lang_reflect_Field::set_signature(rh(), sig());
832 java_lang_reflect_Field::set_annotations(rh(), fd->annotations());
834 return rh();
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmspcs.c520 deltaC,deltah,dc,t,g,dh,rh,rc,rt,bfd; local
552 rh = -0.260*cos((Aveh-308)/(180/M_PI))-
559 rt = rh*rc;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp2867 RelocationHolder rh = virtual_call_Relocation::spec(pc()); local
2872 __ call(AddressLiteral(op->addr(), rh));
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp4477 address rh = VMError::get_resetted_sighandler(sig); local
4479 if(rh != NULL) {
4480 handler = rh;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4291 address rh = VMError::get_resetted_sighandler(sig); local
4293 if(rh != NULL) {
4294 handler = rh;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2439 address rh = VMError::get_resetted_sighandler(sig); local
2441 if(rh != NULL) {
2442 handler = rh;

Completed in 185 milliseconds