Searched refs:source (Results 51 - 75 of 878) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/lang/String/
H A DSplit.java36 String source = "0123456789";
40 String[] result = source.split(Integer.toString(x), limit);
54 if (!result[0].equals(source.substring(0,x))) {
59 if (!result[0].equals(source.substring(0,10))) {
66 if (!result[1].equals(source.substring(x+1,10)))
74 String[] result = source.split("e", limit);
77 if (!result[0].equals(source))
80 // Check the case for limit == 0, source = "";
81 source = "";
82 String[] result = source
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java144 // move source to target with verification
145 static void moveAndVerify(Path source, Path target, CopyOption... options) argument
154 // get file attributes of source file
157 dosAttributes = readAttributes(source, DosFileAttributes.class, NOFOLLOW_LINKS);
160 posixAttributes = readAttributes(source, PosixFileAttributes.class, NOFOLLOW_LINKS);
164 basicAttributes = readAttributes(source, BasicFileAttributes.class, NOFOLLOW_LINKS);
167 int hash = (basicAttributes.isRegularFile()) ? computeHash(source) : 0;
172 linkTarget = readSymbolicLink(source);
176 getFileStore(source).supportsFileAttributeView("xattr"))
178 namedAttributes = readUserDefinedFileAttributes(source);
598 copyAndVerify(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableModelEvent.java40 * TableModelEvent(source); // The data, ie. all rows changed
41 * TableModelEvent(source, HEADER_ROW); // Structure change, reallocate TableColumns
42 * TableModelEvent(source, 1); // Row 1 changed
43 * TableModelEvent(source, 3, 6); // Rows 3 to 6 inclusive changed
44 * TableModelEvent(source, 2, 2, 6); // Cell at (2, 6) changed
45 * TableModelEvent(source, 3, 6, ALL_COLUMNS, INSERT); // Rows (3, 6) were inserted
46 * TableModelEvent(source, 3, 6, ALL_COLUMNS, DELETE); // Rows (3, 6) were deleted
105 public TableModelEvent(TableModel source) { argument
107 this(source, 0, Integer.MAX_VALUE, ALL_COLUMNS, UPDATE);
120 public TableModelEvent(TableModel source, in argument
127 TableModelEvent(TableModel source, int firstRow, int lastRow) argument
135 TableModelEvent(TableModel source, int firstRow, int lastRow, int column) argument
147 TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLFrameHyperlinkEvent.java45 * @param source the object responsible for the event
50 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, argument
52 super(source, type, targetURL);
60 * @param source the object responsible for the event
66 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, argument
68 super(source, type, targetURL, desc);
75 * @param source the object responsible for the event
78 * @param sourceElement the element that corresponds to the source
82 public HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, argument
84 super(source, typ
100 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, String targetFrame) argument
119 HTMLFrameHyperlinkEvent(Object source, EventType type, URL targetURL, String desc, Element sourceElement, InputEvent inputEvent, String targetFrame) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelSource.java60 private ModelIdentifier source = SOURCE_NONE; field in class:ModelSource
68 source = id;
73 source = id;
78 source = id;
84 source = id;
90 source = id;
95 return source;
98 public void setIdentifier(ModelIdentifier source) { argument
99 this.source = source;
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DNotification.java40 * MBean. It contains a reference to the source MBean: if the
42 * original source of the notification was a reference to the emitting
50 * source.</p>
76 new ObjectStreamField("source", Object.class),
88 new ObjectStreamField("source", Object.class),
102 * of notification in the context of the notification source.
107 * source wishes to communicate to its consumers
109 * @serialField source Object The object on which the notification initially occurred.
142 * of notification in the context of the notification source.
155 * source wishe
171 protected Object source = null; field in class:Notification
183 Notification(String type, Object source, long sequenceNumber) argument
201 Notification(String type, Object source, long sequenceNumber, String message) argument
219 Notification(String type, Object source, long sequenceNumber, long timeStamp) argument
237 Notification(String type, Object source, long sequenceNumber, long timeStamp, String message) argument
253 setSource(Object source) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DSourceReaderFactory.java73 public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs) { argument
74 return createSourceReader(source, rejectDTDs, null);
77 public static XMLStreamReader createSourceReader(Source source, boolean rejectDTDs, String charsetName) { argument
79 if (source instanceof StreamSource) {
80 StreamSource streamSource = (StreamSource) source;
87 source.getSystemId(), new InputStreamReader(is, charsetName), rejectDTDs);
91 source.getSystemId(), is, rejectDTDs);
98 source.getSystemId(), reader, rejectDTDs);
102 source.getSystemId(), new URL(source
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadUpdateListener.java58 * @param source the <code>ImageReader</code> object calling this
76 void passStarted(ImageReader source, argument
130 * @param source the <code>ImageReader</code> object calling this method.
145 void imageUpdate(ImageReader source, argument
159 * @param source the <code>ImageReader</code> object calling this
165 void passComplete(ImageReader source, BufferedImage theImage); argument
174 * @param source the <code>ImageReader</code> object calling this
195 void thumbnailPassStarted(ImageReader source, argument
209 * @param source the <code>ImageReader</code> object calling this method.
227 void thumbnailUpdate(ImageReader source, argument
248 thumbnailPassComplete(ImageReader source, BufferedImage theThumbnail) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DComponentEvent.java107 * <code>IllegalArgumentException</code> if <code>source</code>
110 * @param source The <code>Component</code> that originated the event
114 * @throws IllegalArgumentException if <code>source</code> is null
118 public ComponentEvent(Component source, int id) { argument
119 super(source, id);
130 return (source instanceof Component) ? (Component)source : null;
141 Rectangle b = (source !=null
142 ? ((Component)source).getBounds()
H A DFocusEvent.java129 * <code>IllegalArgumentException</code> if <code>source</code>
132 * @param source The <code>Component</code> that originated the event
140 * @throws IllegalArgumentException if <code>source</code> equals {@code null}
147 public FocusEvent(Component source, int id, boolean temporary, argument
149 super(source, id);
158 * <code>IllegalArgumentException</code> if <code>source</code>
161 * @param source The <code>Component</code> that originated the event
167 * @throws IllegalArgumentException if <code>source</code> equals {@code null}
172 public FocusEvent(Component source, int id, boolean temporary) { argument
173 this(source, i
191 FocusEvent(Component source, int id) argument
[all...]
H A DContainerEvent.java100 * <code>IllegalArgumentException</code> if <code>source</code>
103 * @param source The <code>Component</code> object (container)
109 * @throws IllegalArgumentException if <code>source</code> is null
114 public ContainerEvent(Component source, int id, Component child) { argument
115 super(source, id);
127 return (source instanceof Container) ? (Container)source : null;
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletEvent.java43 public AppletEvent(Object source, int id, Object argument) { argument
44 super(source);
58 String str = getClass().getName() + "[source=" + source + " + id="+ id;
/openjdk7/jdk/test/java/nio/channels/Pipe/
H A DNonBlocking.java26 * @summary Ensure that the Pipe.{sink,source}() methods don't create
48 p.source().configureBlocking(false);
49 if (p.source().isBlocking())
53 p.source().close();
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPeerEvent.java37 public PeerEvent(Object source, Runnable runnable, long flags) { argument
38 this(source, runnable, null, false, flags);
41 public PeerEvent(Object source, Runnable runnable, Object notifier, argument
43 super(source, runnable, notifier, catchExceptions);
H A DTimedWindowEvent.java39 public TimedWindowEvent(Window source, int id, Window opposite, long time) { argument
40 super(source, id, opposite);
44 public TimedWindowEvent(Window source, int id, Window opposite, argument
47 super(source, id, opposite, oldState, newState);
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DAnnotationTree.java26 package com.sun.source.tree;
H A DBlockTree.java26 package com.sun.source.tree;
H A DBreakTree.java26 package com.sun.source.tree;
H A DCaseTree.java26 package com.sun.source.tree;
H A DConditionalExpressionTree.java26 package com.sun.source.tree;
H A DContinueTree.java26 package com.sun.source.tree;
H A DEnhancedForLoopTree.java26 package com.sun.source.tree;
H A DErroneousTree.java26 package com.sun.source.tree;
H A DIdentifierTree.java26 package com.sun.source.tree;
H A DIfTree.java26 package com.sun.source.tree;

Completed in 150 milliseconds

1234567891011>>