Searched refs:source (Results 126 - 150 of 878) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/print/event/
H A DPrintJobAttributeEvent.java46 * @param source the print job generating this event
48 * @throws IllegalArgumentException if <code>source</code> is
51 public PrintJobAttributeEvent (DocPrintJob source, argument
53 super(source);
H A DPrintServiceAttributeEvent.java48 * @param source the print job generating this event
50 * @throws IllegalArgumentException if <code>source</code> is
53 public PrintServiceAttributeEvent(PrintService source, argument
56 super(source);
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DHyperlinkEvent.java56 * @param source the object responsible for the event
60 public HyperlinkEvent(Object source, EventType type, URL u) { argument
61 this(source, type, u, null);
67 * @param source the object responsible for the event
76 public HyperlinkEvent(Object source, EventType type, URL u, String desc) { argument
77 this(source, type, u, desc, null);
83 * @param source the object responsible for the event
95 public HyperlinkEvent(Object source, EventType type, URL u, String desc, argument
97 super(source);
107 * @param source th
120 HyperlinkEvent(Object source, EventType type, URL u, String desc, Element sourceElement, InputEvent inputEvent) argument
[all...]
H A DTreeModelEvent.java114 * @param source the Object responsible for generating the event (typically
128 public TreeModelEvent(Object source, Object[] path, int[] childIndices, argument
131 this(source, new TreePath(path), childIndices, children);
141 * @param source the Object responsible for generating the event (typically
153 public TreeModelEvent(Object source, TreePath path, int[] childIndices, argument
156 super(source);
175 * @param source the Object responsible for generating the event (typically
184 public TreeModelEvent(Object source, Object[] path) argument
186 this(source, new TreePath(path));
195 * @param source th
206 TreeModelEvent(Object source, TreePath path) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DMembershipKey.java37 * to the group, or it may be <em>source-specific</em>, meaning that it
38 * represents a membership that receives only datagrams from a specific source
39 * address. Whether or not a membership key is source-specific may be determined
47 * <p> Where a membership key is not source-specific and the underlying operation
48 * system supports source filtering, then the {@link #block block} and {@link
50 * from particular source addresses.
81 * datagrams sent to the group. If the membership key is source-specific
83 * that source address.
99 * Block multicast datagrams from the given source address.
101 * <p> If this membership key is not source
125 block(InetAddress source) argument
140 unblock(InetAddress source) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerNotification.java129 * @param source The MBeanServerNotification object responsible
137 public MBeanServerNotification(String type, Object source, argument
139 super(type, source, sequenceNumber);
/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DNamingExceptionEvent.java57 * @param source The non-null context in which the exception was thrown.
61 public NamingExceptionEvent(EventContext source, NamingException exc) { argument
62 super(source);
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestMethods.java47 Object source = new Object();
48 new TestMethods(source).fireVetoableChange(new PropertyChangeEvent(source, NAME, null, null));
49 new TestMethods(source).fireVetoableChange(NAME, null, null);
50 new TestMethods(source).fireVetoableChange(NAME, 0, 1);
51 new TestMethods(source).fireVetoableChange(NAME, true, false);
56 public TestMethods(Object source) { argument
57 super(source);
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DScope.java26 package com.sun.source.tree;
28 import com.sun.source.tree.Tree;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DRoundCompleteEventImpl.java36 public RoundCompleteEventImpl(AnnotationProcessorEnvironment source, argument
38 super(source, rs);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86MoveInstruction.java31 private ImmediateOrRegister source; field in class:X86MoveInstruction
36 this.source = oSrc;
52 if ((source instanceof Register)) {
53 buf.append(source.toString());
55 Number number = ((Immediate)source).getNumber();
63 return source;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DUnixNumericGroupPrincipal.java82 Object[] source = {"name"};
83 throw new NullPointerException(form.format(source));
164 Object[] source = {name};
165 return form.format(source);
171 Object[] source = {name};
172 return form.format(source);
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DActionEvent.java142 * <code>IllegalArgumentException</code> if <code>source</code>
147 * @param source The object that originated the event
153 * @throws IllegalArgumentException if <code>source</code> is null
158 public ActionEvent(Object source, int id, String command) { argument
159 this(source, id, command, 0);
166 * <code>IllegalArgumentException</code> if <code>source</code>
171 * @param source The object that originated the event
181 * @throws IllegalArgumentException if <code>source</code> is null
187 public ActionEvent(Object source, int id, String command, int modifiers) { argument
188 this(source, i
223 ActionEvent(Object source, int id, String command, long when, int modifiers) argument
[all...]
H A DHierarchyEvent.java173 * <code>IllegalArgumentException</code> if <code>source</code>
176 * @param source The <code>Component</code> object that
187 * @throws IllegalArgumentException if <code>source</code> is {@code null}
193 public HierarchyEvent(Component source, int id, Component changed, argument
195 super(source, id);
204 * <code>IllegalArgumentException</code> if <code>source</code>
207 * @param source The <code>Component</code> object that
223 * @throws IllegalArgumentException if <code>source</code> is null
230 public HierarchyEvent(Component source, int id, Component changed, argument
232 super(source, i
[all...]
H A DInvocationEvent.java132 * source which will execute the runnable's <code>run</code>
135 * <tt>InvocationEvent(source, runnable)</tt>
137 * <tt>{@link #InvocationEvent(Object, Runnable, Object, boolean) InvocationEvent}(source, runnable, null, false)</tt>.
139 * if <code>source</code> is <code>null</code>.
141 * @param source The <code>Object</code> that originated the event
144 * @throws IllegalArgumentException if <code>source</code> is null
149 public InvocationEvent(Object source, Runnable runnable) { argument
150 this(source, runnable, null, false);
155 * source which will execute the runnable's <code>run</code>
159 * <p>An invocation of the form <tt>InvocationEvent(source,
186 InvocationEvent(Object source, Runnable runnable, Object notifier, boolean catchThrowables) argument
222 InvocationEvent(Object source, int id, Runnable runnable, Object notifier, boolean catchThrowables) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/Pipe/
H A DSelectPipe.java47 Pipe.SourceChannel source = p.source();
49 source.configureBlocking(false);
52 SelectionKey readkey = source.register(selector, SelectionKey.OP_READ);
76 int bytesRead = source.read(incomingdata);
82 source.close();
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dcompress.c36 Compresses the source buffer into the destination buffer. The level
38 length of the source buffer. Upon entry, destLen is the total size of the
46 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
49 const Bytef *source;
56 stream.next_in = (Bytef*)source;
59 /* Check for source > 64K on 16-bit machine: */
86 int ZEXPORT compress (dest, destLen, source, sourceLen)
89 const Bytef *source;
92 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacterIterator.java30 * The original version of this source code and documentation is copyrighted *
77 * source string.
78 * @param source a string
83 public static final UCharacterIterator getInstance(String source){ argument
84 return new ReplaceableUCharacterIterator(source);
90 * source StringBuffer.
91 * @param source an string buffer of UTF-16 code units
96 public static final UCharacterIterator getInstance(StringBuffer source){ argument
97 return new ReplaceableUCharacterIterator(source);
103 * @param source
108 getInstance(CharacterIterator source) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDLSModulator.java29 * A modulator connects one synthesizer source to
105 int source; field in class:DLSModulator
272 public static String getSourceName(int source) { argument
274 if (source == CONN_SRC_NONE)
276 if (source == CONN_SRC_LFO)
278 if (source == CONN_SRC_KEYONVELOCITY)
280 if (source == CONN_SRC_KEYNUMBER)
282 if (source == CONN_SRC_EG1)
284 if (source == CONN_SRC_EG2)
286 if (source
332 setSource(int source) argument
[all...]
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4274639.java56 // returned will have the bean as the source object.
68 Object source = ((PropertyEditorSupport) editor).getSource();
69 if (source != bean)
70 throw new Error("unexpected source: " + source);
88 Object source = ((PropertyEditorSupport) editor).getSource();
89 if (source != editor)
90 throw new Error("unexpected source: " + source);
152 public StringEditor(Object source) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextSourceLabel.java46 TextSource source; field in class:TextSourceLabel
55 public TextSourceLabel(TextSource source) { argument
56 this(source, null, null, null);
59 public TextSourceLabel(TextSource source, Rectangle2D lb, Rectangle2D ab, GlyphVector gv) { argument
60 this.source = source;
68 return source;
118 Font font = source.getFont();
159 Font font = source.getFont();
160 FontRenderContext frc = source
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java45 * Copy file from source to target
47 static void copy(final WindowsPath source, argument
79 // check permissions. If the source file is a symbolic link then
83 source.checkRead();
87 // get attributes of source file
97 sourceHandle = source.openForReadAttributeAccess(followLinks);
99 x.rethrowAsIOException(source);
102 // source attributes
106 x.rethrowAsIOException(source);
138 // if source fil
258 move(WindowsPath source, WindowsPath target, CopyOption... options) argument
476 copySecurityAttributes(WindowsPath source, WindowsPath target, boolean followLinks) argument
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6472751.java31 import com.sun.source.tree.CompilationUnitTree;
32 import com.sun.source.tree.Tree;
33 import com.sun.source.tree.Tree.Kind;
34 import com.sun.source.util.JavacTask;
35 import com.sun.source.util.SourcePositions;
36 import com.sun.source.util.TreeScanner;
37 import com.sun.source.util.Trees;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.java126 // copy directory from source to target
127 private static void copyDirectory(UnixPath source, argument
179 sfd = open(source, O_RDONLY, 0);
182 x.rethrowAsIOException(source);
185 source.getFileSystem().copyNonPosixAttributes(sfd, dfd);
218 // copy regular file from source to target
219 private static void copyFile(UnixPath source, argument
228 fi = open(source, O_RDONLY, 0);
230 x.rethrowAsIOException(source);
253 x.rethrowAsIOException(source, targe
297 copyLink(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags) argument
325 copySpecial(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags) argument
366 move(UnixPath source, UnixPath target, CopyOption... options) argument
499 copy(final UnixPath source, final UnixPath target, CopyOption... options) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DSourceTreeManager.java42 * This class bottlenecks all management of source trees. The methods
43 * in this class should allow easy garbage collection of source
44 * trees (not yet!), and should centralize parsing for those source trees.
61 /** The TrAX URI resolver used to obtain source trees. */
125 Source source = null;
129 source = m_uriResolver.resolve(urlString, base);
132 if (null == source)
136 source = new StreamSource(uri);
139 return source;
165 * Put the source tre
171 putDocumentInCache(int n, Source source) argument
198 getNode(Source source) argument
274 getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
302 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
[all...]

Completed in 83 milliseconds

1234567891011>>