Searched refs:source (Results 151 - 175 of 878) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DMulticastSendReceiveTests.java144 InetAddress source)
169 int id = sendDatagram(source, nif, group, port);
172 receiveDatagram(dc, source, id);
177 System.out.format("block %s\n", source.getHostAddress());
180 key.block(source);
181 id = sendDatagram(source, nif, group, port);
184 // unblock source, send message, message should be received
185 System.out.format("unblock %s\n", source.getHostAddress());
186 key.unblock(source);
187 id = sendDatagram(source, ni
141 test(ProtocolFamily family, NetworkInterface nif, InetAddress group, InetAddress source) argument
[all...]
/openjdk7/langtools/test/tools/javac/tree/
H A DT6993305.java34 import com.sun.source.tree.CompilationUnitTree;
35 import com.sun.source.tree.MethodTree;
36 import com.sun.source.util.JavacTask;
37 import com.sun.source.util.SourcePositions;
38 import com.sun.source.util.TreeScanner;
39 import com.sun.source.util.Trees;
86 String source; field in class:T6993305.TestScanner
90 source.substring(pos, Math.min(source.length(), pos + 10)));
98 source
[all...]
/openjdk7/langtools/test/tools/javac/generics/diamond/6996914/
H A DT6996914a.java31 import com.sun.source.util.JavacTask;
77 String source; field in class:T6996914a.FooClass
82 source = sourceStub.replace("#P", pk.pkgDecl).replace("#M", ck.mod);
87 return source;
99 String source; field in class:T6996914a.ClientClass
103 source = sourceStub.replace("#I", pk.importDecl);
108 return source;
132 throw new AssertionError(msg + ": \n" + foo.source + "\n" + client.source);
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXSource.java38 * input source that is not
57 * no SAX source is set using
60 * create an empty source {@link org.xml.sax.InputSource} using
75 * @param inputSource A SAX input source reference that must be non-null
92 * @param inputSource An input source reference that must be non-null
136 * Set the system identifier for this Source. If an input source
138 * input source, otherwise it will create a new input source.
174 * The XMLReader to be used for the source tree input. May be null.
179 * <p>The SAX InputSource to be used for the source tre
192 sourceToInputSource(Source source) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DSimpleFormatter.java74 * {@link String#format String.format}(format, date, source, logger, level, message, thrown);
84 * <li>{@code source} - a string representing the caller, if available;
112 * the timestamp ({@code 1$}) and the source ({@code 2$});
142 String source;
144 source = record.getSourceClassName();
146 source += " " + record.getSourceMethodName();
149 source = record.getLoggerName();
163 source,
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DAdjustmentEvent.java149 * specified <code>Adjustable</code> source, event type,
152 * <code>IllegalArgumentException</code> if <code>source</code>
155 * @param source The <code>Adjustable</code> object where the
164 * @throws IllegalArgumentException if <code>source</code> is null
170 public AdjustmentEvent(Adjustable source, int id, int type, int value) { argument
171 this(source, id, type, value, false);
176 * specified Adjustable source, event type, adjustment type, and value.
178 * <code>IllegalArgumentException</code> if <code>source</code>
181 * @param source The <code>Adjustable</code> object where the
193 * @throws IllegalArgumentException if <code>source</cod
201 AdjustmentEvent(Adjustable source, int id, int type, int value, boolean isAdjusting) argument
[all...]
H A DItemEvent.java117 * <code>IllegalArgumentException</code> if <code>source</code>
120 * @param source The <code>ItemSelectable</code> object
130 * @throws IllegalArgumentException if <code>source</code> is null
135 public ItemEvent(ItemSelectable source, int id, Object item, int stateChange) { argument
136 super(source, id);
147 return (ItemSelectable)source;
H A DMouseWheelEvent.java55 * a ScrollPane with wheel scrolling enabled. The source
162 * specified source component, type, modifiers, coordinates,
164 * <p>Absolute coordinates xAbs and yAbs are set to source's location on screen plus
165 * relative coordinates x and y. xAbs and yAbs are set to zero if the source is not showing.
168 * <code>IllegalArgumentException</code> if <code>source</code>
171 * @param source the <code>Component</code> that originated
191 * @throws IllegalArgumentException if <code>source</code> is null
195 public MouseWheelEvent (Component source, int id, long when, int modifiers, argument
199 this(source, id, when, modifiers, x, y, 0, 0, clickCount,
205 * specified source componen
242 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation) argument
296 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DAbstractCTypeInfoImpl.java52 private final XSComponent source; field in class:AbstractCTypeInfoImpl
54 protected AbstractCTypeInfoImpl(Model model, XSComponent source, CCustomizations customizations) { argument
60 this.source = source;
76 return source;
H A DCEnumConstant.java50 private final XSComponent source; field in class:CEnumConstant
59 public CEnumConstant(String name, String javadoc, String lexical, XSComponent source, CCustomizations customizations, Locator loc) { argument
64 this.source = source;
86 return source;
/openjdk7/langtools/test/tools/javac/api/6598108/
H A DT6598108.java27 * @summary com.sun.source.util.Trees.isAccessible incorrect
31 import com.sun.source.tree.CompilationUnitTree;
32 import com.sun.source.tree.Scope;
33 import com.sun.source.util.JavacTask;
34 import com.sun.source.util.TreePath;
35 import com.sun.source.util.Trees;
/openjdk7/langtools/test/tools/javac/parser/
H A DExtraSemiTest.java34 import com.sun.source.util.*;
40 final static String source = field in class:ExtraSemiTest.JavaSource
52 return source;
63 JavaSource source = new JavaSource();
67 Arrays.asList(source));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSourceCodePanel.java35 /** Panel supporting loading of and scrolling through source code.
40 private JTextArea source; field in class:SourceCodePanel
140 int numLines = 1 + source.getLineOfOffset(source.getDocument().getEndPosition().getOffset() - 1);
162 source = new JTextArea();
163 source.setEditable(false);
164 source.getCaret().setVisible(true);
167 JScrollPane scroller = new JScrollPane(source);
174 // Reset font now that header and source are present
177 source
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java53 /** Re-assign source, returning previous setting.
56 JavaFileObject prev = (source == null ? null : source.getFile());
57 source = getSource(file);
72 /** Return the underlying diagnostic source
75 return source;
79 * source position.
84 report(diags.error(source, null, key, args));
88 * source position.
89 * @param pos The source positio
257 protected DiagnosticSource source; field in class:AbstractLog
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectionNotification.java106 * #getSource() source} of the notification depends on whether it
112 * server, the source is the {@link ObjectName} under which it is
117 * <li>For a connector client, the source is a reference to the
128 * @param source the connector server or client emitting the
137 * this source.
146 * <code>source</code>, or <code>connectionId</code> is null.
152 Object source,
158 throw an exception if the type or source is null, because
164 nonNull(source),
168 if (type == null || source
151 JMXConnectionNotification(String type, Object source, String connectionId, long sequenceNumber, String message, Object userData) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DJavacTask.java26 package com.sun.source.util;
28 import com.sun.source.tree.CompilationUnitTree;
29 import com.sun.source.tree.Tree;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Duncompr.c36 Decompresses the source buffer into the destination buffer. sourceLen is
37 the byte length of the source buffer. Upon entry, destLen is the total
50 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
53 const Bytef *source;
59 stream.next_in = (Bytef*)source;
61 /* Check for source > 64K on 16-bit machine: */
/openjdk7/jdk/test/sun/net/www/
H A DParseUtil_4922813.java39 String source = getTestSource();
40 String ec = sun.net.www.ParseUtil.encodePath(source);
41 String v117 = ParseUtil_V117.encodePath(source);
44 + " source =<"
45 + getUnicodeString(source)
60 String source = "";
65 source = source + String.valueOf((char)codepoint);
68 source = source
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractListModel.java102 * @param source the <code>ListModel</code> that changed, typically "this"
108 protected void fireContentsChanged(Object source, int index0, int index1) argument
116 e = new ListDataEvent(source, ListDataEvent.CONTENTS_CHANGED, index0, index1);
132 * @param source the <code>ListModel</code> that changed, typically "this"
138 protected void fireIntervalAdded(Object source, int index0, int index1) argument
146 e = new ListDataEvent(source, ListDataEvent.INTERVAL_ADDED, index0, index1);
161 * @param source the <code>ListModel</code> that changed, typically "this"
169 protected void fireIntervalRemoved(Object source, int index0, int index1) argument
177 e = new ListDataEvent(source, ListDataEvent.INTERVAL_REMOVED, index0, index1);
/openjdk7/langtools/test/tools/javac/api/6471599/
H A DMain.java33 import com.sun.source.tree.AssignmentTree;
34 import com.sun.source.tree.CompilationUnitTree;
35 import com.sun.source.util.JavacTask;
36 import com.sun.source.util.TreePath;
37 import com.sun.source.util.TreePathScanner;
38 import com.sun.source.util.Trees;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DFilteredStepIterator.java39 public FilteredStepIterator(DTMAxisIterator source, argument
42 super(source, iterator);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXInclude11TextReader.java44 * @param source The XMLInputSource to use.
48 public XInclude11TextReader(XMLInputSource source, XIncludeHandler handler, int bufferSize) argument
50 super(source, handler, bufferSize);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9PopcInstruction.java31 public SPARCV9PopcInstruction(ImmediateOrRegister source, SPARCRegister rd) { argument
32 super("popc", POPC, null, source, rd);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DAbstractTreeTableModel.java83 protected void fireTreeNodesChanged(Object source, Object[] path, argument
95 e = new TreeModelEvent(source, path,
109 protected void fireTreeNodesInserted(Object source, Object[] path, argument
121 e = new TreeModelEvent(source, path,
135 protected void fireTreeNodesRemoved(Object source, Object[] path, argument
147 e = new TreeModelEvent(source, path,
161 protected void fireTreeStructureChanged(Object source, Object[] path, argument
173 e = new TreeModelEvent(source, path,
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DAncestorEvent.java67 * @param source the JComponent that originated the event
75 public AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) { argument
76 super(source, id);

Completed in 100 milliseconds

1234567891011>>