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

/openjdk7/jdk/test/java/awt/print/PageFormat/
H A DPageFormatFromAttributes.java55 MediaSizeName media, OrientationRequested orient) {
59 aset.add(orient);
63 !service.isAttributeValueSupported(orient, null, aset)) {
70 ok = orient == OrientationRequested.PORTRAIT;
73 ok = orient == OrientationRequested.LANDSCAPE;
76 ok = orient == OrientationRequested.REVERSE_LANDSCAPE;
54 test(PrinterJob job, MediaSizeName media, OrientationRequested orient) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollPanePeer.java49 native int getOffset(int orient); argument
144 private void postScrollEvent(int orient, int type, argument
147 Runnable adjustor = new Adjustor(orient, type, pos, isAdjusting);
178 int orient; // selects scrollbar field in class:WScrollPanePeer.Adjustor
183 Adjustor(int orient, int type, int pos, boolean isAdjusting) { argument
184 this.orient = orient;
202 if (orient == Adjustable.VERTICAL) {
204 } else if (orient == Adjustable.HORIZONTAL) {
208 log.fine("Assertion failed: unknown orient");
[all...]
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintJob.java108 private OrientationRequested orient = null; field in class:Win32PrintJob
520 if (orient == null) {
521 orient =
536 if (orient == OrientationRequested.REVERSE_LANDSCAPE) {
538 } else if (orient == OrientationRequested.LANDSCAPE) {
726 orient = (OrientationRequested)attr;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintJob.java92 private OrientationRequested orient = OrientationRequested.PORTRAIT; field in class:PSStreamPrintJob
373 if (orient == OrientationRequested.REVERSE_LANDSCAPE) {
375 } else if (orient == OrientationRequested.LANDSCAPE) {
532 orient = (OrientationRequested)attr;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJProgressBar.java263 * @param orient the desired orientation of the progress bar
264 * @throws IllegalArgumentException if {@code orient} is an illegal value
272 public JProgressBar(int orient) argument
274 this(orient, defaultMinimum, defaultMaximum);
316 * @param orient the desired orientation of the progress bar
319 * @throws IllegalArgumentException if {@code orient} is an illegal value
328 public JProgressBar(int orient, int min, int max) argument
336 setOrientation(orient); // documented with set/getOrientation()
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c199 int gamma, orient; local
392 err = SystemParametersInfo(SPI_GETFONTSMOOTHINGORIENTATION, 0, &orient, 0);
454 if (orient == FE_FONTSMOOTHINGORIENTATIONRGB) {
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java116 private OrientationRequested orient = OrientationRequested.PORTRAIT; field in class:UnixPrintJob
368 if (orient != OrientationRequested.PORTRAIT &&
371 mOptions += " orientation-requested="+orient.getValue();
633 if (orient == OrientationRequested.REVERSE_LANDSCAPE) {
635 } else if (orient == OrientationRequested.LANDSCAPE) {
824 orient = (OrientationRequested)attr;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp48 jint orient; member in struct:GetOffsetStruct
175 void AwtScrollPane::SetScrollInfo(int orient, int max, int page, argument
178 DTRACE_PRINTLN4("AwtScrollPane::SetScrollInfo %d, %d, %d, %d", orient, max, page, disableNoScroll);
183 posBefore = GetScrollPos(orient);
195 ::SetScrollInfo(GetHWnd(), orient, &si, TRUE); local
198 posAfter = GetScrollPos(orient);
205 PostScrollEvent(orient, SB_THUMBPOSITION, posBefore);
207 PostScrollEvent(orient, SB_THUMBPOSITION, posAfter);
297 void AwtScrollPane::PostScrollEvent(int orient, int scrollCode, int pos) { argument
304 if (orient
335 ::GetScrollInfo(GetHWnd(), orient, &si); local
343 ::GetScrollInfo(GetHWnd(), orient, &si); local
415 GetScrollPos(int orient) argument
421 ::GetScrollInfo(GetHWnd(), orient, &si); local
431 jint orient = gos->orient; local
694 Java_sun_awt_windows_WScrollPanePeer_getOffset(JNIEnv *env, jobject self, jint orient) argument
[all...]
H A Dawt_PrintControl.cpp737 jint orient = env->CallIntMethod(printCtrl, local
739 if (orient == 0) {
741 } else if (orient == 1) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFileDialogPeer.java851 public Separator(int length, int thickness, int orient) { argument
853 orientation = orient;
854 if (orient == HORIZONTAL) {

Completed in 38 milliseconds