Searched refs:vis (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/make/sun/image/
H A DMakefile27 # Makefile for building the generic and vis versions of medialib
36 # solaris-sparc and solaris-sparcv9 both build 'vis'
39 SUBDIRS += vis
42 SUBDIRS += vis
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTextFieldUI.java147 BoundedRangeModel vis = field.getHorizontalVisibility();
148 int x = r.x + vis.getValue() - i.left;
149 int quarterSpan = vis.getExtent() / 4;
151 vis.setValue(x - quarterSpan);
152 } else if (r.x + r.width > i.left + vis.getExtent()) {
153 vis.setValue(x - (3 * quarterSpan));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextFieldUI.java223 BoundedRangeModel vis = field.getHorizontalVisibility();
225 int value = vis.getValue();
230 vis.setRangeProperties(value, extent, vis.getMinimum(),
267 bounds.x -= vis.getValue();
287 BoundedRangeModel vis = field.getHorizontalVisibility();
289 int extent = vis.getExtent();
293 int oldValue = vis.getValue();
298 vis.setRangeProperties(value, extent, 0, maximum, false);
H A DBasicRootPaneUI.java197 Rectangle vis = src.getVisibleRect();
198 pt = new Point(vis.x+vis.width/2,
199 vis.y+vis.height/2);
H A DBasicTableHeaderUI.java517 Rectangle vis = table.getVisibleRect();
519 vis.x = cellBounds.x;
520 vis.width = cellBounds.width;
521 table.scrollRectToVisible(vis);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DFieldView.java94 BoundedRangeModel vis = field.getHorizontalVisibility();
96 int value = vis.getValue();
101 vis.setRangeProperties(value, extent, vis.getMinimum(),
138 bounds.x -= vis.getValue();
158 BoundedRangeModel vis = field.getHorizontalVisibility();
160 int extent = vis.getExtent();
164 int oldValue = vis.getValue();
169 vis.setRangeProperties(value, extent, 0, maximum, false);
H A DDefaultCaret.java850 * @param vis the new visibility
852 public void setSelectionVisible(boolean vis) { argument
853 if (vis != selectionVisible) {
854 selectionVisible = vis;
H A DDefaultEditorKit.java1502 private int constrainY(JTextComponent target, int y, int vis) { argument
1506 else if (y + vis > target.getHeight()) {
1507 y = Math.max(0, target.getHeight() - vis);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDialogPeer.java61 public void setVisible(boolean vis) { argument
65 if (vis) {
80 super.setVisible(vis);
H A DXScrollbar.java64 private int vis; field in class:XScrollbar
104 } else if (v > max - vis) {
105 v = max - vis;
588 this.vis = visible;
634 setValues(newValue, vis, min, max);
654 setValues(val, vis, newMinimum, max);
674 setValues(val, vis, min, newMaximum);
681 return vis;
780 minSliderWidth = MIN_THUMB_H ; // Base on user-set vis?
797 slideSize = vis * facto
[all...]
H A DXScrollPanePeer.java180 int vis = height - (2*MARGIN) - hsbSpace;
181 int max = Math.max(cSize.height, vis);
182 vsb.setValues(vsb.getValue(), vis, 0, max);
186 // vadj.setVisibleAmount(vsb.vis);
191 int vis = width - (2*MARGIN) - vsbSpace;
192 int max = Math.max(cSize.width, vis);
193 hsb.setValues(hsb.getValue(), vis, 0, max);
197 // hadj.setVisibleAmount(hsb.vis);
H A DXListPeer.java443 int vis, maximum;
456 vis = itemsInWindow(false);
457 maximum = items.size() < vis ? vis : items.size();
458 vsb.setValues(vsb.getValue(), vis, vsb.getMinimum(), maximum);
464 vis = listWidth - ((2 * SPACE) + (2 * MARGIN));
465 maximum = maxLength < vis ? vis : maxLength;
466 hsb.setValues(hsb.getValue(), vis, hsb.getMinimum(), maximum);
473 vis
[all...]
H A DXScrollbarPeer.java56 int vis = target.getVisibleAmount();
60 tsb.setValues(val, vis, min, max, line, page);
H A DXFramePeer.java332 public void setVisible(boolean vis) { argument
333 if (vis) {
340 super.setVisible(vis);
341 if (vis && maxBounds != null) {
H A DXDecoratedPeer.java956 public void setVisible(boolean vis) { argument
957 log.finer("Setting {0} to visible {1}", this, Boolean.valueOf(vis));
958 if (vis && !isVisible()) {
960 super.setVisible(vis);
968 super.setVisible(vis);
H A DXWindowPeer.java1018 public void setVisible(boolean vis) { argument
1019 if (!isVisible() && vis) {
1036 if (!vis && warningWindow != null) {
1039 super.setVisible(vis);
1040 if (!vis && !isWithdrawn()) {
1065 if (isOverrideRedirect() && vis) {
H A DXChoicePeer.java947 public void setVisible(boolean vis) { argument
948 xSetVisible(vis);
950 if (!vis && alignUnder != null) {
H A DXComponentPeer.java1039 int min, int max, int val, int vis, boolean horizontal) {
1041 double f = (double)(length - 2*(thickness-1)) / Math.max(1, ((max - min) + vis));
1043 int v2 = (int)(f * vis);
1038 drawScrollbar(Graphics g, Color bg, int thickness, int length, int min, int max, int val, int vis, boolean horizontal) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DmultiVis.c97 Visual *vis; member in struct:__anon1018
100 int32_t x_vis, y_vis; /* rt rel x,y of vis part, not parent clipped */
111 Visual *vis; member in struct:__anon1019
114 int32_t x_vis, y_vis; /* rt rel x,y of vis part, not parent clipped */
121 Returns TRUE if the two structs pointed to have the same "vis" &
126 ((s1)->vis == (s2)->vis && (s1)->cmap == (s2)->cmap && \
306 ncolors = QueryColorMap(disp,reg->cmap,reg->vis,&colors,
311 switch (reg->vis->class) {
322 * if( reg->vis
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp149 char *vis = strstr(buf, "vis"); local
150 if (vis != NULL) { features |= vis1_instructions_m;
151 if (vis[3] == '2') features |= vis2_instructions_m;
/openjdk7/jdk/test/sun/java2d/pipe/hw/RSLAPITest/
H A DRSLAPITest.java279 HashSet<VolatileImage> vis = new HashSet<VolatileImage>();
298 vis.add(vi);
300 for (VolatileImage vi : vis) {
303 vis = null;
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java1727 String vis = "";
1731 vis += "public";
1734 vis += "protected";
1737 vis += "private";
1742 vis += prefix;
1743 vis += "static";
1748 vis += prefix;
1749 vis += "final";
1753 return vis;
1930 return vis;
2329 private String vis; field in class:CompoundType.Method
2595 private String vis; field in class:CompoundType.Member
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java234 Vis vis = new Vis();
235 tree.accept(vis);
236 if (vis.result == null)
240 vis.result);
308 Vis vis = new Vis();
309 attr.accept(vis);
310 return vis.result;
/openjdk7/jdk/src/solaris/native/sun/jdga/
H A Ddgalock.c232 int vis; local
378 vis = dga_draw_visibility(dgaDrawable);
379 switch (vis) {
385 DEBUG_PRINT(("unobscured vis at (%d, %d) => (%d, %d)\n",
474 DEBUG_PRINT(("fully obscured vis\n"));
477 DEBUG_PRINT(("unknown visibility = %d!\n", vis));
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/J2D_GL/
H A Dglx.h238 extern GLXContext glXCreateContext( Display *dpy, XVisualInfo *vis,

Completed in 118 milliseconds

12