Searched defs:info (Results 126 - 150 of 292) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java289 final EncodingInfo info = _encodingInfos.findEncoding(toUpperCaseFast(encoding));
290 return info != null ? info.javaName : encoding;
462 EncodingInfo info = new EncodingInfo(mimeName, charsetName);
463 _encodingTableKeyMime.put(km, info);
466 // the info containing the prefered mime name
469 canonicals.put(kc, info);
470 _encodingTableKeyJava.put(kc, info);
472 _encodingTableKeyJava.put(kj, info);
480 // Fix up the _encodingTableKeyJava so that the info mappe
515 putEncoding(String key, EncodingInfo info) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicCDebugInfoDataBase.java238 public void addLineNumberInfo(BasicLineNumberInfo info) { argument
239 lineNumbers.addLineNumberInfo(info);
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiSystem.java205 * @param info a device information object representing the desired device.
209 * @throws IllegalArgumentException if the info object does not represent
213 public static MidiDevice getMidiDevice(MidiDevice.Info info) throws MidiUnavailableException { argument
218 if (provider.isDeviceSupported(info)) {
219 MidiDevice device = provider.getDevice(info);
223 throw new IllegalArgumentException("Requested device not installed: " + info);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioSystem.java189 * Obtains an array of mixer info objects that represents
191 * @return an array of info objects for the currently installed mixers. If no mixers
205 * @param info a <code>Mixer.Info</code> object representing the desired
210 * @throws IllegalArgumentException if the info object does not represent
214 public static Mixer getMixer(Mixer.Info info) { argument
222 return ((MixerProvider)providers.get(i)).getMixer(info);
226 // $$jb 08.20.99: If the strings in the info object aren't
236 if (info == null) {
257 + (info!=null?info
273 getSourceLineInfo(Line.Info info) argument
313 getTargetLineInfo(Line.Info info) argument
352 isLineSupported(Line.Info info) argument
407 getLine(Line.Info info) argument
1429 getDefaultMixer(List providers, Line.Info info) argument
1502 getNamedMixer(String mixerName, MixerProvider provider, Line.Info info) argument
1526 getNamedMixer(String mixerName, List providers, Line.Info info) argument
1550 getFirstMixer(MixerProvider provider, Line.Info info, boolean isMixingRequired) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignatureFactory.java127 (List info, String target, String id) {
128 return new DOMSignatureProperty(info, target, id);
126 newSignatureProperty(List info, String target, String id) argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphList.java50 * public void drawString(String str, FontInfo info, float x, float y) {
53 * gl.setFromString(info, str, x, y);
235 public boolean setFromString(FontInfo info, String str, float x, float y) { argument
238 this.strikelist = info.fontStrike;
239 this.lcdRGBOrder = info.lcdRGBOrder;
240 this.lcdSubPixPos = info.lcdSubPixPos;
244 return mapChars(info, len);
247 public boolean setFromChars(FontInfo info, char[] chars, int off, int alen, argument
251 this.strikelist = info.fontStrike;
252 this.lcdRGBOrder = info
265 mapChars(FontInfo info, int len) argument
278 setFromGlyphVector(FontInfo info, GlyphVector gv, float x, float y) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java455 static void check(OpenMBeanParameterInfo info) throws OpenDataException { argument
456 OpenType<?> openType = info.getOpenType();
460 if (info.getName() == null ||
461 info.getName().trim().equals(""))
464 if (info.getDescription() == null ||
465 info.getDescription().trim().equals(""))
470 if (info.hasDefaultValue()) {
478 if (!openType.isValue(info.getDefaultValue())) {
481 info.getDefaultValue().getClass().getName() +
490 if (info
937 isValue(OpenMBeanParameterInfo info, Object obj) argument
1063 hashCode(OpenMBeanParameterInfo info) argument
1113 toString(OpenMBeanParameterInfo info) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTrace.cpp231 void G1NewTracer::report_evacuation_info(EvacuationInfo* info) { argument
234 send_evacuation_info_event(info);
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp32 // header: dump of archive instance plus versioning info, datestamp, etc.
114 static void set_current_info(FileMapInfo* info) { _current_info = info; } argument
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DUtils.java57 * If >0, print summary comments (e.g., constant pool info).
201 public void info(String msg) { method in class:Utils.Pack200Logger
207 getLogger().info(msg);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaCtx.java59 private SchemaInfo info= null; field in class:LdapSchemaCtx
83 private LdapSchemaCtx(int objectType, Hashtable environment, SchemaInfo info) { argument
87 this.info = info;
92 info.close();
255 LdapSchemaCtx ctx = new LdapSchemaCtx(LEAF, myEnv, info);
266 schemaAttr = info.parser.stringifyObjDesc(attrs);
270 schemaAttr = info.parser.stringifyAttrDesc(attrs);
274 schemaAttr = info.parser.stringifySyntaxDesc(attrs);
278 schemaAttr = info
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMixer.java151 public final Line.Info[] getSourceLineInfo(Line.Info info) { argument
158 if (info.matches(sourceLineInfo[i])) {
172 public final Line.Info[] getTargetLineInfo(Line.Info info) { argument
179 if (info.matches(targetLineInfo[i])) {
193 public final boolean isLineSupported(Line.Info info) { argument
199 if (info.matches(sourceLineInfo[i])) {
206 if (info.matches(targetLineInfo[i])) {
215 public abstract Line getLine(Line.Info info) throws LineUnavailableException; argument
217 public abstract int getMaxLines(Line.Info info); argument
500 final boolean isSourceLine(Line.Info info) { argument
517 isTargetLine(Line.Info info) argument
534 getLineInfo(Line.Info info) argument
[all...]
H A DSoftMixingMixer.java67 static final Mixer.Info info = new Info(); field in class:SoftMixingMixer
143 public Line getLine(Line.Info info) throws LineUnavailableException { argument
145 if (!isLineSupported(info))
146 throw new IllegalArgumentException("Line unsupported: " + info);
148 if ((info.getLineClass() == SourceDataLine.class)) {
149 return new SoftMixingSourceDataLine(this, (DataLine.Info) info);
151 if ((info.getLineClass() == Clip.class)) {
152 return new SoftMixingClip(this, (DataLine.Info) info);
155 throw new IllegalArgumentException("Line unsupported: " + info);
158 public int getMaxLines(Line.Info info) { argument
177 getSourceLineInfo( javax.sound.sampled.Line.Info info) argument
214 getTargetLineInfo( javax.sound.sampled.Line.Info info) argument
223 isLineSupported(javax.sound.sampled.Line.Info info) argument
[all...]
H A DSoftMixingSourceDataLine.java123 SoftMixingSourceDataLine(SoftMixingMixer mixer, DataLine.Info info) { argument
124 super(mixer, info);
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java730 GridBagLayoutInfo info = getLayoutInfo(parent, PREFERREDSIZE);
731 return getMinSize(parent, info);
744 GridBagLayoutInfo info = getLayoutInfo(parent, MINSIZE);
745 return getMinSize(parent, info);
1979 * @param info the layout info for this parent
1984 protected Dimension getMinSize(Container parent, GridBagLayoutInfo info) { argument
1985 return GetMinSize(parent, info);
1996 protected Dimension GetMinSize(Container parent, GridBagLayoutInfo info) { argument
2002 for(i = 0; i < info
[all...]
H A DSystemColor.java222 * {@link #info} system color.
223 * @see SystemColor#info
272 0xFFE0E000, // info = new Color(224,224,0);
413 public final static SystemColor info = new SystemColor((byte)INFO); field in class:SystemColor
455 SystemColor.info,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp40 RangeCheckStub::RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, argument
45 assert(info != NULL, "must have info");
46 _info = new CodeEmitInfo(info);
134 NewInstanceStub::NewInstanceStub(LIR_Opr klass_reg, LIR_Opr result, ciInstanceKlass* klass, CodeEmitInfo* info, Runtime1::StubID stub_id) { argument
138 _info = new CodeEmitInfo(info);
159 NewTypeArrayStub::NewTypeArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) { argument
163 _info = new CodeEmitInfo(info);
182 NewObjectArrayStub::NewObjectArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) { argument
186 _info = new CodeEmitInfo(info);
204 MonitorEnterStub(LIR_Opr obj_reg, LIR_Opr lock_reg, CodeEmitInfo* info) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp91 RangeCheckStub::RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, argument
96 assert(info != NULL, "must have info");
97 _info = new CodeEmitInfo(info);
134 NewInstanceStub::NewInstanceStub(LIR_Opr klass_reg, LIR_Opr result, ciInstanceKlass* klass, CodeEmitInfo* info, Runtime1::StubID stub_id) { argument
138 _info = new CodeEmitInfo(info);
161 NewTypeArrayStub::NewTypeArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) { argument
165 _info = new CodeEmitInfo(info);
184 NewObjectArrayStub::NewObjectArrayStub(LIR_Opr klass_reg, LIR_Opr length, LIR_Opr result, CodeEmitInfo* info) { argument
188 _info = new CodeEmitInfo(info);
207 MonitorEnterStub(LIR_Opr obj_reg, LIR_Opr lock_reg, CodeEmitInfo* info) argument
[all...]
/openjdk7/jdk/src/share/back/
H A Dtransport.c36 * data structure used for passing transport info from thread to thread
302 TransportInfo *info; local
308 info = (TransportInfo*)(void*)arg;
309 t = info->transport;
311 rc = (*t)->Accept(t, info->timeout, 0);
440 TransportInfo *info; local
445 info = jvmtiAllocate(sizeof(*info));
446 if (info == NULL) {
449 info
[all...]
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c479 JLI_ParseManifest(char *jarfile, manifest_info *info) argument
496 info->manifest_version = NULL;
497 info->main_class = NULL;
498 info->jre_version = NULL;
499 info->jre_restrict_search = 0;
500 info->splashscreen_image_file_name = NULL;
513 info->manifest_version = value;
515 info->main_class = value;
517 info->jre_version = value;
520 info
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp210 MonitorInfo* info = new MonitorInfo( local
212 monitors->push(info);
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp425 AttachOperationFunctionInfo* info = NULL; local
430 info = &(funcs[i]);
436 if (info == NULL) {
437 info = AttachListener::pd_find_operation(op->name());
440 if (info != NULL) {
442 res = (info->func)(op, &st);
H A DdiagnosticFramework.cpp142 bool DCmdInfo::by_name(void* cmd_name, DCmdInfo* info) { argument
143 if (info == NULL) return false;
144 return strcmp((const char*)cmd_name, info->name()) == 0;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java181 public void info(final String message) { method in class:Logger
188 public void info(final String message, final Throwable thrown) { method in class:Logger
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java410 public void info(SAXParseException exception) { method in class:WsgenTool.Listener
411 cer.info(exception);

Completed in 74 milliseconds

1234567891011>>