Searched refs:sources (Results 1 - 25 of 32) sorted by relevance

12

/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...]
H A DSoftPerformer.java489 ModelSource[] sources = connection.getSources();
492 if (dest != null && sources != null && sources.length > 1) {
493 for (int i = 0; i < sources.length; i++) {
496 if (sources[i].getIdentifier().getObject().equals(
498 if (sources[i].getIdentifier().getVariable()
545 ModelSource[] sources = connection.getSources();
547 // if(dest != null && sources != null)
548 if (dest != null && sources != null) {
549 for (int i = 0; i < sources
[all...]
/openjdk7/corba/make/org/omg/
H A DMakefile37 SUBDIRS = idl sources PortableServer CosTransactions CosTSPortability CORBA CosNaming DynamicAny PortableInterceptor
39 SUBDIRS = idl sources PortableServer CORBA CosNaming DynamicAny PortableInterceptor
/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...]
H A DRenderableImageOp.java63 * a ParameterBlock containing RenderableImage sources and other
64 * parameters. Any RenderedImage sources referenced by the
79 * Returns a vector of RenderableImages that are the sources of
81 * return an empty vector, to indicate that the image has no sources,
91 Vector sources = null;
94 sources = new Vector();
99 sources.add((RenderableImage)o);
106 return sources;
273 * RenderableImageOp (including its Renderable sources) rendered
277 * RenderedImage operations. If sources i
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
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) {
H A DOptionFinder.java62 protected OptionFormat getOptionFormat(String option, List<URL> sources) { argument
64 for (URL u : sources) {
H A DArguments.java416 List<URL> sources = new ArrayList<URL>();
425 sources.add(home.toURI().toURL());
436 sources.add(u);
441 sources.add(u);
443 return sources;
/openjdk7/corba/make/com/sun/corba/se/
H A DMakefile39 # Note that sources generates the logging wrappers, and pept compiles
45 SUBDIRS = sources pept corespi core spi impl rmi
/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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DSchemaConstraintChecker.java110 SAXSource[] sources = new SAXSource[schemas.length];
112 sources[i] = new SAXSource(schemas[i]);
113 return sources;
118 InputSource[] sources = new InputSource[args.length];
120 sources[i] = new InputSource(new File(args[i]).toURL().toExternalForm());
122 check(sources, new ConsoleErrorReporter(), null);
/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/make/common/internal/
H A DImportComponents.gmk80 define import-one-sources
82 $(ECHO) "Importing sources from component $1"; \
116 # Import all component sources into directory $1
117 define import-component-sources
118 $(call import-one-sources,LANGTOOLS_DIST,$1)
119 $(call import-one-sources,CORBA_DIST,$1)
120 $(call import-one-sources,JAXP_DIST,$1)
121 $(call import-one-sources,JAXWS_DIST,$1)
163 define import-component-sources-clean
/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
H A DNotificationAccessControllerTest.java302 List<ObjectName> sources = new ArrayList();
303 sources.add(nb1);
304 sources.add(nb2);
305 sources.add(nb3);
307 // List must contain three notifs from sources nb1, nb2 and nb3
309 result = checkNotifs(3, li.notifs, sources);
314 result = checkNotifs(1, li.notifs, sources);
317 // List must contain two notifs from sources nb2 and nb3
319 result = checkNotifs(2, li.notifs, sources);
H A DNotificationEmissionTest.java308 List<ObjectName> sources = new ArrayList<ObjectName>();
309 sources.add(nb1);
310 sources.add(nb2);
311 sources.add(nb3);
313 result = checkNotifs(expectedNotifs, li.notifs, sources);
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DReader.java64 String[] sources = s.split(",");
65 for (int i=0; i<sources.length; i++) {
66 list.add(InetAddress.getByName(sources[i]));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DClientSchemaValidationTube.java69 Source[] sources = getSchemaSources(docs.values(), mdresolver);
70 for(Source source : sources) {
74 if (sources.length != 0) {
78 schema = sf.newSchema(sources);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerSchemaValidationTube.java74 Source[] sources = getSchemaSources(endpoint.getServiceDefinition(), mdresolver);
75 for(Source source : sources) {
79 if (sources.length != 0) {
83 schema = sf.newSchema(sources);
/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/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DDOMForest.java233 Source[] sources = new Source[roots.size()];
236 sources[i++] = new DOMSource(get(root),root);
238 sf.newSchema(sources);
460 List<SAXSource> sources = new ArrayList<SAXSource>();
472 sources.add(ss);
476 sf.newSchema(sources.toArray(new SAXSource[0]));
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java528 List sources = new ArrayList();
531 sources.add(mapSignersToCodeSource(url, (CodeSigner[]) signers.get(i)));
534 sources.add(mapSignersToCodeSource(url, null));
536 return (CodeSource[]) sources.toArray(new CodeSource[sources.size()]);
555 CodeSource[] sources = mapSignersToCodeSources(cs.getLocation(), getJarCodeSigners(), true);
557 for (int i = 0; i < sources.length; i++) {
558 sourceList.add(sources[i]);
/openjdk7/langtools/test/tools/javac/annotations/6550655/
H A DT6550655.java67 void compile(DiagnosticChecker dc, JavaSource... sources) { argument
71 null, Arrays.asList(sources));
/openjdk7/langtools/test/tools/javac/scope/7046348/
H A DEagerInterfaceCompletionTest.java80 void compile(DiagnosticChecker dc, JavaSource... sources) { argument
84 null, Arrays.asList(sources));

Completed in 91 milliseconds

12