Searched refs:source (Results 101 - 125 of 878) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/sample/nio/file/
H A DCopy.java4 * Redistribution and use in source and binary forms, with or without
8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
63 * Copy source file to target location. If {@code prompt} is true then
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) { argument
73 Files.copy(source, target, options);
75 System.err.format("Unable to copy: %s: %s%n", source, x);
84 private final Path source; field in class:Copy.TreeCopier
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) { argument
90 this.source
[all...]
/openjdk7/langtools/test/tools/javac/parser/
H A DStringFoldingTest.java30 import com.sun.source.tree.CompilationUnitTree;
31 import com.sun.source.util.JavacTask;
45 final JavaSource source; field in class:StringFoldingTest
49 source = new JavaSource();
54 final static String source = field in class:StringFoldingTest.JavaSource
63 return source;
81 Arrays.asList(source));
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditorSupport.java50 * @param source the source used for event firing
53 public PropertyEditorSupport(Object source) { argument
54 if (source == null) {
57 setSource(source);
62 * source of events. If the source has not
66 * @return the source object or this instance
70 return source;
74 * Sets the source bea
83 setSource(Object source) argument
300 private Object source; field in class:PropertyEditorSupport
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86FPLoadInstruction.java31 final private Operand source; field in class:X86FPLoadInstruction
35 this.source = operand;
43 buf.append(source.toString());
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h30 NSString *source; variable
37 @property (nonatomic, retain) NSString *source; variable
42 - (id) initWithSource:(NSString *)source context:(NSDictionary *)context;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUTF16.java29 * The original version of this source code and documentation is copyrighted *
177 * @param source array of UTF-16 chars
186 public static int charAt(String source, int offset16) { argument
187 char single = source.charAt(offset16);
191 return _charAt(source, offset16, single);
194 private static int _charAt(String source, int offset16, char single) { argument
205 if (source.length() != offset16) {
206 char trail = source.charAt(offset16);
215 char lead = source.charAt(offset16);
234 * @param source arra
245 charAt(char source[], int start, int limit, int offset16) argument
441 moveCodePointOffset(char source[], int start, int limit, int offset16, int shift32) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DXSLTCDTMManager.java130 * specified source. If the unique flag is true, a new instance will
137 * @param source the specification of the source object.
149 public DTM getDTM(Source source, boolean unique, argument
153 return getDTM(source, unique, whiteSpaceFilter, incremental,
159 * specified source. If the unique flag is true, a new instance will
166 * @param source the specification of the source object.
179 public DTM getDTM(Source source, boolean unique, argument
183 return getDTM(source, uniqu
211 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean buildIdIndex, boolean newNameTable) argument
247 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex) argument
286 getDTM(Source source, boolean unique, DTMWSFilter whiteSpaceFilter, boolean incremental, boolean doIndexing, boolean hasUserReader, int size, boolean buildIdIndex, boolean newNameTable) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DInternalFrameEvent.java32 * <code>JInternalFrame</code> objects as the event source. This class has the
136 * @param source the <code>JInternalFrame</code> object that originated the event
139 public InternalFrameEvent(JInternalFrame source, int id) { argument
140 super(source, id);
188 return (source instanceof JInternalFrame)? (JInternalFrame)source : null;
H A DRowSorterEvent.java69 * @param source the source of the change
70 * @throws IllegalArgumentException if <code>source</code> is
73 public RowSorterEvent(RowSorter source) { argument
74 this(source, Type.SORT_ORDER_CHANGED, null);
80 * @param source the source of the change
84 * @throws IllegalArgumentException if source or <code>type</code> is
87 public RowSorterEvent(RowSorter source, Type type, argument
89 super(source);
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOReadWarningListener.java54 * @param source the <code>ImageReader</code> object calling this method.
57 void warningOccurred(ImageReader source, String warning); argument
H A DIIOWriteWarningListener.java54 * @param source the <code>ImageWriter</code> object calling this method.
59 void warningOccurred(ImageWriter source, argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DCodeModelClassFactory.java63 public JDefinedClass createClass( JClassContainer parent, String name, Locator source ) {
64 return createClass( parent, JMod.PUBLIC, name, source );
66 public JDefinedClass createClass( JClassContainer parent, int mod, String name, Locator source ) {
67 return createClass(parent,mod,name,source,ClassType.CLASS);
70 public JDefinedClass createInterface( JClassContainer parent, String name, Locator source ) {
71 return createInterface( parent, JMod.PUBLIC, name, source );
73 public JDefinedClass createInterface( JClassContainer parent, int mod, String name, Locator source ) {
74 return createClass(parent,mod,name,source,ClassType.INTERFACE);
77 JClassContainer parent, String name, Locator source, ClassType kind ) {
78 return createClass(parent,JMod.PUBLIC,name,source,kin
76 createClass( JClassContainer parent, String name, Locator source, ClassType kind ) argument
80 createClass( JClassContainer parent, int mod, String name, Locator source, ClassType kind ) argument
[all...]
/openjdk7/jdk/test/java/nio/channels/Pipe/
H A DEmptyRead.java43 Pipe.SourceChannel source = p.source();
54 int read = source.read(incomingdata);
59 source.close();
H A DScatteringRead.java44 Pipe.SourceChannel source = p.source();
64 long numBytesRead = source.read(bufs);
68 source.close();
/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DForLoopTree.java26 package com.sun.source.tree;
H A DLabeledStatementTree.java26 package com.sun.source.tree;
H A DMemberSelectTree.java26 package com.sun.source.tree;
H A DMethodInvocationTree.java26 package com.sun.source.tree;
H A DNewArrayTree.java26 package com.sun.source.tree;
H A DTryTree.java26 package com.sun.source.tree;
H A DTypeParameterTree.java26 package com.sun.source.tree;
H A DVariableTree.java26 package com.sun.source.tree;
/openjdk7/jdk/test/sun/nio/ch/
H A DBasic.java35 p.source().close();
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestMethods.java49 Object source = new Object();
50 new TestMethods(source).firePropertyChange(new PropertyChangeEvent(source, NAME, null, null));
51 new TestMethods(source).firePropertyChange(NAME, null, null);
52 new TestMethods(source).firePropertyChange(NAME, 0, 1);
53 new TestMethods(source).firePropertyChange(NAME, true, false);
54 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, null, null);
55 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, 0, 1);
56 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, true, false);
61 public TestMethods(Object source) { argument
[all...]
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathExpression.java162 * <p>If <code>source</code> or <code>returnType</code> is <code>null</code>,
165 * @param source The <code>InputSource</code> of the document to evaluate over.
173 * @throws NullPointerException If <code>source</code> or <code>returnType</code> is <code>null</code>.
175 public Object evaluate(InputSource source, QName returnType) argument
182 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
188 * <p>If <code>source</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
190 * @param source The <code>InputSource</code> of the document to evaluate over.
196 * @throws NullPointerException If <code>source</code> is <code>null</code>.
198 public String evaluate(InputSource source) argument

Completed in 60 milliseconds

1234567891011>>