Searched refs:source (Results 76 - 100 of 878) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DLineMap.java26 package com.sun.source.tree;
H A DParameterizedTypeTree.java26 package com.sun.source.tree;
H A DPrimitiveTypeTree.java26 package com.sun.source.tree;
H A DSwitchTree.java26 package com.sun.source.tree;
H A DUnionTypeTree.java26 package com.sun.source.tree;
H A DCompilationUnitTree.java26 package com.sun.source.tree;
30 import com.sun.source.tree.LineMap;
33 * Represents the abstract syntax tree for compilation units (source
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTaskListener.java26 package com.sun.source.util;
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DPipeImpl.java38 private final SourceChannel source; field in class:PipeImpl
47 source = new SourceChannelImpl(sp, sourcefd);
53 public SourceChannel source() { method in class:PipeImpl
54 return source;
/openjdk7/jdk/src/share/classes/javax/print/event/
H A DPrintJobEvent.java91 * @param source a <code>DocPrintJob</code> object
93 * @throws IllegalArgumentException if <code>source</code> is
97 public PrintJobEvent( DocPrintJob source, int reason) { argument
99 super(source);
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableColumnModelEvent.java67 * @param source the {@code TableColumnModel} that originated the event
75 public TableColumnModelEvent(TableColumnModel source, int from, int to) { argument
76 super(source);
H A DTreeExpansionEvent.java32 * An event used to identify a single path in a tree. The source
61 * @param source the Object that originated the event
66 public TreeExpansionEvent(Object source, TreePath path) { argument
67 super(source);
H A DUndoableEditEvent.java50 * @param source the Object that originated the event
54 public UndoableEditEvent(Object source, UndoableEdit edit) { argument
55 super(source);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DModalityEvent.java40 public ModalityEvent(Object source, ModalityListener listener, int id) { argument
41 super(source, id);
/openjdk7/jdk/src/share/classes/sun/awt/event/
H A DIgnorePaintEvent.java39 public IgnorePaintEvent(Component source, int id, Rectangle updateRect) { argument
40 super(source, id, updateRect);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIndexedPropertyChangeEvent.java36 * An event source may send a null object as the name to indicate that an
51 * @param source The bean that fired the event.
58 public IndexedPropertyChangeEvent(Object source, String propertyName, argument
61 super (source, propertyName, oldValue, newValue);
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DTextEvent.java79 * <code>IllegalArgumentException</code> if <code>source</code>
82 * @param source The (<code>TextComponent</code>) object that
87 * @throws IllegalArgumentException if <code>source</code> is null
91 public TextEvent(Object source, int id) { argument
92 super(source, id);
H A DWindowEvent.java178 * <code>IllegalArgumentException</code> if <code>source</code>
181 * @param source The <code>Window</code> object
192 * @throws IllegalArgumentException if <code>source</code> is null
200 public WindowEvent(Window source, int id, Window opposite, argument
203 super(source, id);
224 * <code>IllegalArgumentException</code> if <code>source</code>
227 * @param source The <code>Window</code> object that
241 * @throws IllegalArgumentException if <code>source</code> is null
247 public WindowEvent(Window source, int id, Window opposite) { argument
248 this(source, i
280 WindowEvent(Window source, int id, int oldState, int newState) argument
298 WindowEvent(Window source, int id) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DDataSourceSource.java55 private final DataSource source; field in class:DataSourceSource
72 public DataSourceSource(DataSource source) throws MimeTypeParseException { argument
73 this.source = source;
75 String ct = source.getContentType();
99 r = new InputStreamReader(source.getInputStream(),charset);
112 is = source.getInputStream();
121 return source;
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DLotsOfChannels.java46 Pipe.SourceChannel source = pipe.source();
48 source.configureBlocking(false);
49 source.register(sel, SelectionKey.OP_READ);
53 Pipe.SourceChannel sc = pipes[i].source();
65 source.read(ByteBuffer.allocate(BUF_SIZE));
70 pipes[i].source().close();
73 pipe.source().close();
/openjdk7/langtools/src/share/classes/com/sun/mirror/apt/
H A DRoundCompleteEvent.java51 * as the source of events.
53 * @param source The source of events
56 protected RoundCompleteEvent(AnnotationProcessorEnvironment source, argument
58 super(source);
70 * Return source.
/openjdk7/jdk/test/java/util/Collections/
H A DFindSubList.java35 List source = new ArrayList(3 * N);
47 index[i] = source.size();
48 source.addAll(t);
49 source.add("*");
53 List src[] = {source, new LinkedList(source), new Vector(source),
54 Arrays.asList(source.toArray())};
71 Collections.reverse(source);
72 int srcSize = source
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipKeyImpl.java44 private final InetAddress source; field in class:MembershipKeyImpl
52 // set of source addresses that are blocked
58 InetAddress source)
63 this.source = source;
77 InetAddress source,
82 super(ch, group, interf, source);
96 int source() { method in class:MembershipKeyImpl.Type4
112 InetAddress source,
117 super(ch, group, interf, source);
55 MembershipKeyImpl(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source) argument
74 Type4(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, int groupAddress, int interfAddress, int sourceAddress) argument
109 Type6(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, byte[] groupAddress, int index, byte[] sourceAddress) argument
131 byte[] source() { method in class:MembershipKeyImpl.Type6
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DSchemaCache.java52 private final URL source; field in class:SchemaCache
54 public SchemaCache(URL source) { argument
55 this.source = source;
62 schema = SchemaFactory.newInstance(WellKnownNamespace.XML_SCHEMA).newSchema(source);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/gbind/
H A DGraph.java40 private final Element source = new SourceNode(); field in class:Graph
55 // attach source and sink
56 Expression whole = new Sequence(new Sequence(source,body),sink);
65 source.assignDfsPostOrder(sink);
66 source.buildStronglyConnectedComponents(ccs);
72 if(source.checkCutSet(cc,visited)) {
/openjdk7/langtools/test/tools/javac/6410653/
H A DT6410653.java39 String source = new File(testSrc, "T6410653.java").getPath();
46 compiler.run(null, null, out, "-d", source, source);
54 compiler.run(null, null, System.out, "-d", source, source);

Completed in 612 milliseconds

1234567891011>>