Searched defs:Source (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/javax/xml/transform/
H A DSource.java32 public interface Source { interface
35 * Set the system identifier for this Source.
/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DFill.java42 static class Source extends InputStream { class in class:Fill
47 Source(int shortFall) { method in class:Fill.Source
77 InputStream r = new BufferedInputStream(new Source(shortFall), 10);
/openjdk7/jdk/test/java/io/BufferedReader/
H A DFill.java42 static class Source extends Reader { class in class:Fill
47 Source(int shortFall) { method in class:Fill.Source
73 Reader r = new BufferedReader(new Source(shortFall), 10);
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DStressLoopback.java48 Source[] source = new Source[count];
53 source[i] = new Source(ch);
86 static class Source { class in class:StressLoopback
92 Source(AsynchronousByteChannel channel) { method in class:StressLoopback.Source
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DSource.java39 public class Source { class
44 public Source() { method in class:Source
76 public Source getSource();
84 public void addSourceNodes(Source s) {
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java44 compile(new Source(name, content));
53 public void compile(Source... sources) {
54 List<Source> list = new ArrayList<Source>();
56 for (Source source : sources) {
130 public static final class Source extends MemoryFileObject { class in class:MemoryClassLoader
133 Source(String name, String content) { method in class:MemoryClassLoader.Source
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfers.java174 static abstract class Source { class in class:Transfers
180 Source(int size, long seed, String name) { method in class:Transfers.Source
197 extends Source
229 extends Source
266 throw new Failure("Source has " + src.remaining()
452 static void testFrom(long seed, Source src, FileChannel fc, int off, int len)
530 Source src;
/openjdk7/jdk/test/java/nio/charset/coders/
H A DBashStreams.java220 static class Source // ... and another class in class:BashStreams
230 Source(String csn, long seed, int limit) { method in class:BashStreams.Source
340 new InputStreamReader(new Source(csn, seed, limit), csn));
348 Channels.newReader(new Source(csn, seed, limit), csn));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSource.java44 public enum Source { enum
46 // public static final Source JDK1_0 = new Source("1.0");
49 // public static final Source JDK1_1 = new Source("1.1");
70 private static final Context.Key<Source> sourceKey
71 = new Context.Key<Source>();
73 public static Source instance(Context context) {
74 Source instance = context.get(sourceKey);
87 private static Map<String,Source> ta
97 private Source(String name) { method in class:Source
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsplugin.c426 void CMSEXPORT _cmsDecodeDateTimeNumber(const cmsDateTimeNumber *Source, struct tm *Dest) argument
430 _cmsAssert(Source != NULL);
432 Dest->tm_sec = _cmsAdjustEndianess16(Source->seconds);
433 Dest->tm_min = _cmsAdjustEndianess16(Source->minutes);
434 Dest->tm_hour = _cmsAdjustEndianess16(Source->hours);
435 Dest->tm_mday = _cmsAdjustEndianess16(Source->day);
436 Dest->tm_mon = _cmsAdjustEndianess16(Source->month) - 1;
437 Dest->tm_year = _cmsAdjustEndianess16(Source->year) - 1900;
443 void CMSEXPORT _cmsEncodeDateTimeNumber(cmsDateTimeNumber *Dest, const struct tm *Source) argument
446 _cmsAssert(Source !
[all...]
H A Dcmspcs.c120 void CMSEXPORT cmsXYZ2xyY(cmsCIExyY* Dest, const cmsCIEXYZ* Source) argument
124 ISum = 1./(Source -> X + Source -> Y + Source -> Z);
126 Dest -> x = (Source -> X) * ISum;
127 Dest -> y = (Source -> Y) * ISum;
128 Dest -> Y = Source -> Y;
131 void CMSEXPORT cmsxyY2XYZ(cmsCIEXYZ* Dest, const cmsCIExyY* Source) argument
133 Dest -> X = (Source -> x / Source
[all...]
H A Dcmscgats.c191 char* Source; // Points to loc. being parsed member in struct:__anon819
531 it8->ch = *it8->Source;
532 if (it8->ch) it8->Source++;
1316 it8 -> Source = NULL;
2325 it8-> Source = it8 -> MemoryBlock;

Completed in 74 milliseconds