Searched refs:source (Results 1 - 25 of 1563) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/
H A DJDK-8098807.js35 var source = readFully(path);
36 eval(source);
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DEventObject.java32 * All Events are constructed with a reference to the object, the "source",
46 protected transient Object source; field in class:EventObject
51 * @param source The object on which the Event initially occurred.
52 * @exception IllegalArgumentException if source is null.
54 public EventObject(Object source) { argument
55 if (source == null)
56 throw new IllegalArgumentException("null source");
58 this.source = source;
67 return source;
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/source/tree/
H A Dpackage-info.java27 * Provides interfaces to represent source code as abstract syntax
34 package com.sun.source.tree;
H A DParenthesizedTree.java26 package com.sun.source.tree;
H A DReturnTree.java26 package com.sun.source.tree;
H A DStatementTree.java26 package com.sun.source.tree;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/source/doctree/
H A Dpackage-info.java36 package com.sun.source.doctree;
H A DBlockTagTree.java26 package com.sun.source.doctree;
H A DCommentTree.java26 package com.sun.source.doctree;
H A DDocRootTree.java26 package com.sun.source.doctree;
H A DValueTree.java26 package com.sun.source.doctree;
H A DTextTree.java26 package com.sun.source.doctree;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/source/util/
H A Dpackage-info.java33 package com.sun.source.util;
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DCollationKey.java30 * The original version of this source code and documentation is copyrighted
117 * @return the source string of this CollationKey
120 return source;
138 * @param source the source string
139 * @exception NullPointerException if {@code source} is null
142 protected CollationKey(String source) { argument
143 if (source==null){
146 this.source = source;
149 private final String source; field in class:CollationKey
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DLineMapImpl.java31 private final Source source; field in class:LineMapImpl
33 LineMapImpl(final Source source) { argument
34 this.source = source;
39 return source.getLine((int)pos);
44 return source.getColumn((int)pos);
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/event/
H A DIIOWriteProgressListener.java46 * @param source the {@code ImageWriter} object calling this
51 void imageStarted(ImageWriter source, int imageIndex); argument
76 * @param source the {@code ImageWriter} object calling this method.
80 void imageProgress(ImageWriter source, argument
89 * @param source the {@code ImageWriter} object calling this method.
91 void imageComplete(ImageWriter source); argument
99 * @param source the {@code ImageWrite} object calling this method.
104 void thumbnailStarted(ImageWriter source, argument
113 * @param source the {@code ImageWriter} object calling this
118 void thumbnailProgress(ImageWriter source, floa argument
129 thumbnailComplete(ImageWriter source) argument
139 writeAborted(ImageWriter source) argument
[all...]
H A DIIOReadProgressListener.java59 * @param source the {@code ImageReader} object calling this method.
62 void sequenceStarted(ImageReader source, int minIndex); argument
70 * @param source the {@code ImageReader} object calling this method.
72 void sequenceComplete(ImageReader source); argument
80 * @param source the {@code ImageReader} object calling this method.
84 void imageStarted(ImageReader source, int imageIndex); argument
107 * @param source the {@code ImageReader} object calling this method.
111 void imageProgress(ImageReader source, float percentageDone); argument
119 * @param source the {@code ImageReader} object calling this
122 void imageComplete(ImageReader source); argument
135 thumbnailStarted(ImageReader source, int imageIndex, int thumbnailIndex) argument
148 thumbnailProgress(ImageReader source, float percentageDone) argument
159 thumbnailComplete(ImageReader source) argument
169 readAborted(ImageReader source) argument
[all...]
/openjdk10/jdk/src/java.datatransfer/share/classes/java/awt/datatransfer/
H A DFlavorEvent.java32 * {@link DataFlavor}s have changed in the {@link Clipboard} (the event source).
45 * @param source the {@code Clipboard} that is the source of the event
46 * @throws IllegalArgumentException if the {@code source} is {@code null}
48 public FlavorEvent(Clipboard source) { argument
49 super(source);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DChangeEvent.java32 * state has changed in the event source.
50 * @param source the Object that is the source of the event
53 public ChangeEvent(Object source) { argument
54 super(source);
H A DMenuEvent.java32 * the menu which is the event source has been posted,
52 * @param source the Object that originated the event
55 public MenuEvent(Object source) { argument
56 super(source);
H A DPopupMenuEvent.java30 * PopupMenuEvent only contains the source of the event which is the JPopupMenu
49 * @param source the Object that originated the event
52 public PopupMenuEvent(Object source) { argument
53 super(source);
/openjdk10/jdk/src/java.management/share/classes/javax/management/timer/
H A DTimerAlarmClockNotification.java47 * @param source the source.
49 public TimerAlarmClockNotification(TimerAlarmClock source) { argument
50 super("", source, 0);
/openjdk10/jdk/src/java.sql/share/classes/javax/sql/
H A DRowSetEvent.java39 * the source of the event.
50 * @param source the <code>RowSet</code> object whose data has changed or
52 * @throws IllegalArgumentException if <code>source</code> is null.
54 public RowSetEvent(RowSet source) argument
55 { super(source); }
/openjdk10/jdk/test/javax/management/mxbean/
H A DSqeNotification.java33 public SqeNotification(String type, Object source, long sequenceNumber) { argument
34 super(type, source, sequenceNumber);
38 public SqeNotification(String type, Object source, long sequenceNumber, argument
40 super(type, source, sequenceNumber, timeStamp);
44 public SqeNotification(String type, Object source, long sequenceNumber, argument
46 super(type, source, sequenceNumber, timeStamp, message);
50 public SqeNotification(String type, Object source, long sequenceNumber, argument
52 super(type, source, sequenceNumber, message);
/openjdk10/jdk/src/jdk.accessibility/share/classes/com/sun/java/accessibility/util/
H A DTranslator.java63 /** The source object needing translating. */
64 protected Object source; field in class:Translator
146 * Create a new {@code Translator} with the source object o.
152 source = o;
156 * Get the source {@code Object} of the {@code Translator}.
158 * @return the source {@code Object} of the {@code Translator}
161 return source;
165 * Set the source object of the {@code Translator}.
170 source = o;
181 return java.util.Objects.equals(source,
[all...]

Completed in 289 milliseconds

1234567891011>>