Searched defs:sources (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionFinder.java62 protected OptionFormat getOptionFormat(String option, List<URL> sources) { argument
64 for (URL u : sources) {
H A DOptionLister.java40 private List<URL> sources; field in class:OptionLister
42 public OptionLister(List<URL> sources) { argument
43 this.sources = sources;
57 for (URL u : sources) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelConnectionBlock.java43 private ModelSource[] sources = no_sources; field in class:ModelConnectionBlock
58 this.sources = new ModelSource[1];
59 this.sources[0] = source;
67 this.sources = new ModelSource[1];
68 this.sources[0] = source;
78 this.sources = new ModelSource[1];
79 this.sources[0] = source;
81 this.sources = new ModelSource[2];
82 this.sources[0] = source;
83 this.sources[
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DEPRRecipe.java121 public EPRRecipe addMetadata(Source... sources) { argument
122 for (Source s : sources)
127 public EPRRecipe addMetadata(Iterable<? extends Source> sources) { argument
128 for (Source s : sources)
/openjdk7/langtools/test/tools/javac/7142086/
H A DT7142086.java88 ArrayList<JavaFileObject> sources = new ArrayList<>();
90 sources.add(new AnSource(i));
92 sources.add(new TestClass());
93 new T7142086().run(sources);
96 void run(List<JavaFileObject> sources) throws Exception { argument
101 null, null, sources);
/openjdk7/jaxp/src/org/w3c/dom/bootstrap/
H A DDOMImplementationRegistry.java100 private Vector sources; field in class:DOMImplementationRegistry
114 sources = srcs;
150 Vector sources = new Vector();
188 sources.addElement(source);
191 return new DOMImplementationRegistry(sources);
207 int size = sources.size();
211 (DOMImplementationSource) sources.elementAt(i);
233 int size = sources.size();
236 (DOMImplementationSource) sources.elementAt(i);
272 if (!sources
[all...]
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java53 public void compile(Source... sources) { argument
55 if (sources != null) {
56 for (Source source : sources) {
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationBufferDeadlockTest.java166 sources.clear();
180 if (!sources.containsAll(names))
181 return "missing names: " + sources;
275 sources.add((ObjectName) n.getSource());
277 if (sources.size() == waitNB) {
289 while(sources.size() < waitNB && toWait > 0) {
301 return sources.size() == waitNB;
313 private static final List<ObjectName> sources = new Vector(); field in class:NotificationBufferDeadlockTest
/openjdk7/langtools/test/tools/javac/annotations/6550655/
H A DT6550655.java67 void compile(DiagnosticChecker dc, JavaSource... sources) { argument
71 null, Arrays.asList(sources));
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DParameterBlock.java32 * A <code>ParameterBlock</code> encapsulates all the information about sources and
38 * such as requiring all sources to be RenderedImages or
96 /** A Vector of sources, stored as arbitrary Objects. */
97 protected Vector<Object> sources = new Vector<Object>(); field in class:ParameterBlock
107 * of sources.
108 * @param sources a <code>Vector</code> of source images
110 public ParameterBlock(Vector<Object> sources) { argument
111 setSources(sources);
115 * Constructs a <code>ParameterBlock</code> with a given Vector of sources and
117 * @param sources
121 ParameterBlock(Vector<Object> sources, Vector<Object> parameters) argument
275 setSources(Vector<Object> sources) argument
[all...]
/openjdk7/langtools/test/tools/javac/scope/7046348/
H A DEagerInterfaceCompletionTest.java80 void compile(DiagnosticChecker dc, JavaSource... sources) { argument
84 null, Arrays.asList(sources));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java2170 // Autopadding spring. Set the sources of the
3205 * Spring reprensenting the distance between any number of sources and
3206 * targets. The targets and sources are computed during layout. An
3211 List<ComponentSpring> sources; field in class:GroupLayout.AutoPreferredGapSpring
3244 public void setSources(List<ComponentSpring> sources) { argument
3245 this.sources = new ArrayList<ComponentSpring>(sources);
3264 sources = null;
3335 for (int counter = sources.size() - 1; counter >= 0;
3337 ComponentSpring source = sources
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java1859 private Vector sources = new Vector(); field in class:ServiceDialog.MediaPanel
1922 MediaTray mt = (MediaTray)sources.get(src);
1930 if ((index >= 1) && (index < (sources.size() + 1))) {
1932 MediaTray newTray = (MediaTray)sources.get(index - 1);
1980 sources.clear();
2000 sources.add(medium);
2049 cbSource.setSelectedIndex(sources.indexOf(mt) + 1);
2061 cbSource.setSelectedIndex(sources.indexOf(mt) + 1);
2071 if ((selIndex >= 1) && (selIndex < (sources.size()+1))) {
2072 MediaTray mt = (MediaTray)sources
[all...]

Completed in 104 milliseconds