Searched defs:Info (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInfo.java26 public class Info { class
32 Info(int counter, String className, String methodName, int location) { method in class:Info
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DPCFinder.java37 public static class Info { class in class:PCFinder
42 public Info(String name, long offset, int confidence) { method in class:PCFinder.Info
59 /** Passed loadobject may be null in which case the returned Info
61 public static Info findPC(Address pc, LoadObject lo, CDebugger dbg) {
63 return new Info(null, -1, LOW_CONFIDENCE);
71 return new Info(sym.toString(), pc.minus(sym.getAddress()), HIGH_CONFIDENCE);
89 return new Info(cs.getName() + "()", cs.getOffset(), LOW_CONFIDENCE);
93 return new Info(dbg.getNameOfFile(lo.getName()).toUpperCase() +
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiDevice.java98 * A <code>MidiDevice</code> includes a <code>{@link MidiDevice.Info}</code> object
119 public Info getDeviceInfo();
278 * A <code>MidiDevice.Info</code> object contains assorted
284 public static class Info { class in interface:MidiDevice
315 protected Info(String name, String vendor, String description, String version) { method in class:MidiDevice.Info
390 } // class Info
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLine.java76 * Obtains the <code>Line.Info</code> object describing this
80 public Line.Info getLineInfo();
108 * For <code>DataLine</code>'s, if the <code>DataLine.Info</code>
211 * A <code>Line.Info</code> object contains information about a line.
212 * The only information provided by <code>Line.Info</code> itself
214 * A subclass of <code>Line.Info</code> adds other kinds of information
216 * subinterface is implemented by the kind of line that the <code>Line.Info</code>
219 * A <code>Line.Info</code> can be retrieved using various methods of
221 * interfaces. Other such methods let you pass a <code>Line.Info</code> as
230 * @see Mixer#getLine <code>Mixer.getLine(Line.Info)</cod
240 public static class Info { class in interface:Line
254 public Info(Class<?> lineClass) { method in class:Line.Info
[all...]
H A DPort.java33 * speaker, headphone, and line output. You can access port using a <code>{@link Port.Info}</code>
46 * The <code>Port.Info</code> class extends <code>{@link Line.Info}</code>
56 * <code>Port.Info</code> class may also be constructed and used to obtain
57 * lines matching the parameters specified in the <code>Port.Info</code> object.
62 public static class Info extends Line.Info { class in interface:Port
73 public static final Info MICROPHONE = new Info(Port.class,"MICROPHONE", true);
78 public static final Info LINE_I
130 public Info(Class<?> lineClass, String name, boolean isSource) { method in class:Port.Info
[all...]
H A DDataLine.java168 * specific audio format, or, if the <code>DataLine.Info</code>
265 * <code>DataLine.Info</code> provides additional information specific to data lines.
271 * Because a <code>Line.Info</code> knows the class of the line its describes, a
272 * <code>DataLine.Info</code> object can describe <code>DataLine</code>
276 * instance of <code>DataLine.Info</code> as the argument to a method such as
277 * <code>{@link Mixer#getLine Mixer.getLine(Line.Info)}</code>.
279 * @see Line.Info
283 public static class Info extends Line.Info { class in interface:DataLine
300 public Info(Clas method in class:DataLine.Info
325 public Info(Class<?> lineClass, AudioFormat format, int bufferSize) { method in class:DataLine.Info
350 public Info(Class<?> lineClass, AudioFormat format) { method in class:DataLine.Info
[all...]
H A DMixer.java63 * @see Mixer.Info
65 public Info getMixerInfo();
72 * @return array of <code>Line.Info</code> objects representing source lines
76 public Line.Info[] getSourceLineInfo();
82 * @return array of <code>Line.Info</code> objects representing target lines
86 public Line.Info[] getTargetLineInfo();
93 * @param info a <code>Line.Info</code> object describing lines about which information
95 * @return an array of <code>Line.Info</code> objects describing source lines matching
99 public Line.Info[] getSourceLineInfo(Line.Info inf
251 public static class Info { class in interface:Mixer
282 protected Info(String name, String vendor, String description, String version) { method in class:Mixer.Info
[all...]
/openjdk7/jdk/src/share/classes/sun/audio/
H A DAudioDevice.java94 Info info = null;
96 DataLine.Info lineinfo = null;
107 lineinfo = new DataLine.Info(SourceDataLine.class,
115 info = new Info( null, in, datapusher );
126 Info info = null;
136 info = new Info( sequencer, in, null );
160 Info info = null;
164 info = (AudioDevice.Info)infos.elementAt(i);
289 Info info;
293 info = (AudioDevice.Info)info
403 final class Info implements MetaEventListener { class in class:AudioDevice
409 Info( Sequencer sequencer, InputStream in, DataPusher datapusher ) { method in class:AudioDevice.Info
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMidiDeviceProvider.java56 Info[] infos = getInfoCache();
60 setInfoCache(new Info[0]);
76 Info[] newInfos = new Info[newNumDevices];
80 Info newInfo = createInfo(i);
86 Info info = infos[ii];
102 // the remaining MidiDevice.Info instances in the infos array
121 public final MidiDevice.Info[] getDeviceInfo() {
123 Info[] infos = getInfoCache();
124 MidiDevice.Info[] localArra
159 static class Info extends MidiDevice.Info { class in class:AbstractMidiDeviceProvider
162 Info(String name, String vendor, String description, String version, int index) { method in class:AbstractMidiDeviceProvider.Info
[all...]
H A DSoftMixingMixer.java53 private static class Info extends Mixer.Info { class in class:SoftMixingMixer
54 Info() { method in class:SoftMixingMixer.Info
67 static final Mixer.Info info = new Info();
93 private final javax.sound.sampled.Line.Info[] sourceLineInfo;
97 sourceLineInfo = new javax.sound.sampled.Line.Info[2];
136 sourceLineInfo[0] = new DataLine.Info(SourceDataLine.class,
139 sourceLineInfo[1] = new DataLine.Info(Clip.class, formats_array,
143 public Line getLine(Line.Info inf
[all...]
H A DSoftSynthesizer.java168 private static class Info extends MidiDevice.Info { class in class:SoftSynthesizer
169 Info() { method in class:SoftSynthesizer.Info
178 final static MidiDevice.Info info = new Info();
843 public MidiDevice.Info getDeviceInfo() {
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInnerClasses_attribute.java44 classes = new Info[number_of_classes];
46 classes[i] = new Info(cr);
49 public InnerClasses_attribute(ConstantPool constant_pool, Info[] classes)
54 public InnerClasses_attribute(int name_index, Info[] classes) {
55 super(name_index, 2 + Info.length() * classes.length);
65 public final Info[] classes;
67 public static class Info { class in class:InnerClasses_attribute
68 Info(ClassReader cr) throws IOException { method in class:InnerClasses_attribute.Info
/openjdk7/langtools/test/tools/javac/diags/
H A DMessageFile.java117 private Info info;
149 * Get the Info object for this message. It may be empty if there
152 Info getInfo() {
156 info = new Info(l.text);
158 info = new Info();
164 * Set the Info for this message.
168 void setInfo(Info info) {
219 static final class Info { class in class:MessageFile
320 /** The fields of the Info object. */
323 Info() { } method in class:MessageFile.Info
325 Info(String text) throws IllegalArgumentException { method in class:MessageFile.Info
335 Info(Set<String> infos) throws IllegalArgumentException { method in class:MessageFile.Info
[all...]
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java325 encl = new Info();
334 Info self = new Info(tree, endPosTable);
376 Info prevEncl = encl;
405 boolean check(Info encl, Info self) {
414 void check(String label, Info encl, Info self, boolean ok) {
432 Info encl;
439 private class Info { class in class:TreePosTest
440 Info() { method in class:TreePosTest.Info
448 Info(JCTree tree, Map<JCTree, Integer> endPosTable) { method in class:TreePosTest.Info
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsio1.c961 const cmsMLU* GetInfo(cmsHPROFILE hProfile, cmsInfoType Info) argument
965 switch (Info) {
992 cmsUInt32Number CMSEXPORT cmsGetProfileInfo(cmsHPROFILE hProfile, cmsInfoType Info, argument
996 const cmsMLU* mlu = GetInfo(hProfile, Info);
1003 cmsUInt32Number CMSEXPORT cmsGetProfileInfoASCII(cmsHPROFILE hProfile, cmsInfoType Info, argument
1007 const cmsMLU* mlu = GetInfo(hProfile, Info);
H A Dcmspack.c2293 cmsUInt8Number* PackXYZDoubleFrom16(register _cmsTRANSFORM* Info, argument
2298 if (T_PLANAR(Info -> OutputFormat)) {
2315 return output + (sizeof(cmsCIEXYZ) + T_EXTRA(Info ->OutputFormat) * sizeof(cmsFloat64Number));
2540 cmsUInt8Number* PackLabFloatFromFloat(_cmsTRANSFORM* Info, argument
2547 if (T_PLANAR(Info -> OutputFormat)) {
2561 return output + (sizeof(cmsFloat32Number)*3 + T_EXTRA(Info ->OutputFormat) * sizeof(cmsFloat32Number));
2568 cmsUInt8Number* PackLabDoubleFromFloat(_cmsTRANSFORM* Info, argument
2575 if (T_PLANAR(Info -> OutputFormat)) {
2589 return output + (sizeof(cmsFloat64Number)*3 + T_EXTRA(Info ->OutputFormat) * sizeof(cmsFloat64Number));
2597 cmsUInt8Number* PackXYZFloatFromFloat(_cmsTRANSFORM* Info, argument
2625 PackXYZDoubleFromFloat(_cmsTRANSFORM* Info, cmsFloat32Number wOut[], cmsUInt8Number* output, cmsUInt32Number Stride) argument
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java349 encl = new Info(p.snd, endPosTable);
361 Info self = new Info(tree, endPosTable);
368 Info prevEncl = encl;
383 void check(boolean ok, String label, Info self) {
423 Info encl;
429 private class Info { class in class:CheckAttributedTree
430 Info() { method in class:CheckAttributedTree.Info
438 Info(JCTree tree, Map<JCTree, Integer> endPosTable) { method in class:CheckAttributedTree.Info
558 void addEntry(JavaFileObject file, String check, Info enc
[all...]

Completed in 81 milliseconds