Searched refs:view (Results 1 - 25 of 119) sorted by relevance

12345

/openjdk7/jdk/test/java/nio/file/attribute/DosFileAttributeView/
H A DBasic.java44 static void testAttributes(DosFileAttributeView view) throws IOException { argument
45 view.setReadOnly(true);
46 check(view.readAttributes().isReadOnly());
47 view.setReadOnly(false);
48 check(!view.readAttributes().isReadOnly());
49 view.setHidden(true);
50 check(view.readAttributes().isHidden());
51 view.setHidden(false);
52 check(!view.readAttributes().isHidden());
53 view
64 setAll(DosFileAttributeView view, boolean value) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DPreferenceConstants.java24 package com.sun.hotspot.igv.view;
H A DExportCookie.java25 package com.sun.hotspot.igv.view;
H A DGraphViewerImplementation.java24 package com.sun.hotspot.igv.view;
37 public void view(InputGraph graph) { method in class:GraphViewerImplementation
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DFileOwnerAttributeViewImpl.java42 private final FileAttributeView view; field in class:FileOwnerAttributeViewImpl
45 FileOwnerAttributeViewImpl(PosixFileAttributeView view) { argument
46 this.view = view;
50 FileOwnerAttributeViewImpl(AclFileAttributeView view) { argument
51 this.view = view;
89 return ((PosixFileAttributeView)view).readAttributes().owner();
91 return ((AclFileAttributeView)view).getOwner();
100 ((PosixFileAttributeView)view)
[all...]
H A DAbstractFileSystemProvider.java41 * Splits the given attribute name into the name of an attribute view and
42 * the attribute. If the attribute view is not identified then it assumed
60 * view is not available.
76 DynamicFileAttributeView view = getFileAttributeView(file, s[0], options);
77 if (view == null)
79 view.setAttribute(s[1], value);
89 DynamicFileAttributeView view = getFileAttributeView(file, s[0], options);
90 if (view == null)
92 return view.readAttributes(s[1].split(","));
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCWrapper.java79 public static native void addSubview(long view, long subview); argument
80 public static native void removeFromSuperview(long view); argument
82 public static native void setFrame(long view, int x, int y, int w, int h); argument
83 public static native Rectangle2D frame(long view); argument
84 public static native long window(long view); argument
86 public static native void enterFullScreenMode(long view); argument
87 public static native void exitFullScreenMode(long view); argument
89 public static native void setToolTip(long view, String msg); argument
90 public static native void setHidden(long view, boolean hidden); argument
H A DCViewPlatformEmbeddedFrame.java47 private CPlatformView view; field in class:CViewPlatformEmbeddedFrame
58 view = new CPlatformView();
59 view.initialize(peer, responder);
61 CWrapper.NSView.addSubview(this.target.getEmbedderHandle(), view.getAWTView());
62 view.setAutoResizable(true);
66 return view.getAWTView();
71 return view.getWindowLayerPtr();
81 CWrapper.NSView.removeFromSuperview(view.getAWTView());
82 view.dispose();
87 CWrapper.NSView.setHidden(view
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java74 * @param view the View to get the baseline for
84 public static int getHTMLBaseline(View view, int w, int h) { argument
89 if (view instanceof Renderer) {
90 return getBaseline(view.getView(0), w, h);
102 View view = (View)c.getClientProperty(BasicHTML.propertyKey);
103 if (view != null) {
104 int baseline = getHTMLBaseline(view, w, h);
116 static int getBaseline(View view, int w, int h) { argument
117 if (hasParagraph(view)) {
118 view
124 getBaseline(View view, Shape bounds) argument
157 hasParagraph(View view) argument
639 private View view; field in class:BasicHTML.Renderer
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/services/
H A DGraphViewer.java34 public void view(InputGraph graph); method in interface:GraphViewer
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DLayeredHighlighter.java43 * @param p0 starting offset of view
44 * @param p1 ending offset of view
47 * @param view View instance being rendered
52 View view);
61 View view);
49 paintLayeredHighlights(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) argument
59 paintLayer(Graphics g, int p0, int p1, Shape viewBounds,JTextComponent editor, View view) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckListView.java27 import org.openide.explorer.view.ListView;
28 import org.openide.explorer.view.NodeListModel;
/openjdk7/jdk/test/java/nio/file/attribute/UserDefinedFileAttributeView/
H A DBasic.java71 static boolean hasAttribute(UserDefinedFileAttributeView view, String attr) argument
74 for (String name: view.list()) {
82 final UserDefinedFileAttributeView view =
90 int nwrote = view.write(ATTR_NAME, buf);
95 if (view.size(ATTR_NAME) != size)
100 int nread = view.read(ATTR_NAME, buf);
111 view.read(ATTR_NAME, ByteBuffer.allocateDirect(1));
118 view.write(ATTR_NAME, buf);
119 if (view.size(ATTR_NAME) != size)
123 if (!hasAttribute(view, ATTR_NAM
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DViewportLayout.java41 * The viewport makes its view the same size as the viewport,
42 * however it will not make the view smaller than its minimum size.
43 * As the viewport grows the view is kept bottom justified until
44 * the entire view is visible, subsequently the view is kept top
87 Component view = ((JViewport)parent).getView();
88 if (view == null) {
91 else if (view instanceof Scrollable) {
92 return ((Scrollable)view).getPreferredScrollableViewportSize();
95 return view
[all...]
H A DJViewport.java46 * brings new things into view at the top of the picture and loses
54 * <ol><li>The view and parent view and checked to see if they are
60 * the viewport, stop and repaint the whole view region.
63 * <li>Message the view to repaint the newly visible region.
130 * operations instead of by accessing the view object to construct the
139 /** The view image used for a backing store. */
152 * the flag is off and the view repaints normally. Another approach
161 * Listener that is notified each time the view changes size.
215 // portion of the view (i
951 setView(Component view) argument
1577 blitDoubleBuffered(JComponent view, Graphics g, int clipX, int clipY, int clipW, int clipH, int blitFromX, int blitFromY, int blitToX, int blitToY, int blitW, int blitH) argument
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DXdd.java76 UserDefinedFileAttributeView view =
83 for (String name: view.list()) {
84 System.out.format("%8d %s\n", view.size(name), name);
97 view.write(name, Charset.defaultCharset().encode(value));
104 int size = view.size(name);
106 view.read(name, buf);
114 view.delete(args[1]);
/openjdk7/jdk/test/java/nio/file/attribute/AclFileAttributeView/
H A DBasic.java53 AclFileAttributeView view =
57 List<AclEntry> acl = view.getAcl();
62 UserPrincipal owner = view.getOwner();
71 view.setAcl(acl);
74 List<AclEntry> newacl = view.getAcl();
91 view.setAcl(acl);
92 newacl = view.getAcl();
119 AclFileAttributeView view;
132 view = Files.getFileAttributeView(file, AclFileAttributeView.class);
133 assertEquals(view
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DExpandPredecessorsAction.java24 package com.sun.hotspot.igv.view.actions;
26 import com.sun.hotspot.igv.view.EditorTopComponent;
H A DExpandSuccessorsAction.java24 package com.sun.hotspot.igv.view.actions;
26 import com.sun.hotspot.igv.view.EditorTopComponent;
H A DExtractAction.java24 package com.sun.hotspot.igv.view.actions;
26 import com.sun.hotspot.igv.view.EditorTopComponent;
72 return "com/sun/hotspot/igv/view/images/extract.gif";
H A DHideAction.java24 package com.sun.hotspot.igv.view.actions;
26 import com.sun.hotspot.igv.view.EditorTopComponent;
72 return "com/sun/hotspot/igv/view/images/hide.gif";
H A DNodeFindAction.java24 package com.sun.hotspot.igv.view.actions;
26 import com.sun.hotspot.igv.view.EditorTopComponent;
69 return "com/sun/hotspot/igv/view/images/search.gif";
/openjdk7/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A Dbug6857057.java41 GlyphView view = new GlyphView(elem);
44 int res = view.getBreakWeight(View.X_AXIS, pos, len);
/openjdk7/jdk/test/javax/swing/JTabbedPane/6670274/
H A Dbug6670274.java59 View view = ui.getTextViewForTab(i);
67 System.out.print("; view = " + view);
69 if (view == null) {
72 } else if (view != null) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DCheckPermissions.java175 static void testBasicFileAttributeView(BasicFileAttributeView view, Path file) argument
179 view.readAttributes();
184 view.setTimes(null, now, now);
188 static void testPosixFileAttributeView(PosixFileAttributeView view, Path file) argument
192 PosixFileAttributes attrs = view.readAttributes();
197 view.setPermissions(attrs.permissions());
202 view.setOwner(attrs.owner());
207 view.setOwner(attrs.owner());
569 PosixFileAttributeView view =
571 if (view !
[all...]

Completed in 435 milliseconds

12345