Searched defs:media (Results 151 - 166 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftReverb.java25 package com.sun.media.sound;
H A DDLSModulator.java25 package com.sun.media.sound;
H A DSoftMainMixer.java25 package com.sun.media.sound;
H A DDLSSoundbank.java25 package com.sun.media.sound;
H A DDirectAudioDevice.java26 package com.sun.media.sound;
H A DSoftChannel.java25 package com.sun.media.sound;
H A DSoftSynthesizer.java26 package com.sun.media.sound;
852 String notePath = "/com/sun/media/sound/softsynthesizer";
H A DSoftVoice.java25 package com.sun.media.sound;
H A DRealTimeSequencer.java26 package com.sun.media.sound;
1356 * Main process loop driving the media flow.
1390 // send EOT event (mis-used for end of media)
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerFactoryImpl.java161 public PIParamWrapper(String media, String title, String charset) { argument
162 _media = media;
584 * @param media The media attribute to be matched. May be null, in which
591 public Source getAssociatedStylesheet(Source source, String media, argument
603 StylesheetPIHandler _stylesheetPIHandler = new StylesheetPIHandler(null,media,title,charset);
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaSize.java38 * the X dimension. Class MediaSize declares many standard media size
40 * engineering, and other media.
42 * MediaSize is not yet used to specify media. Its current role is
43 * as a mapping for named media (see {@link MediaSizeName MediaSizeName}).
64 * Construct a new media size attribute from the given floating-point
86 * Construct a new media size attribute from the given integer values.
107 * Construct a new media size attribute from the given floating-point
115 * @param media a media name to associate with this MediaSize
121 public MediaSize(float x, float y,int units, MediaSizeName media) { argument
147 MediaSize(int x, int y,int units, MediaSizeName media) argument
176 getMediaSizeForName(MediaSizeName media) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DIPPPrintService.java404 // note, it is possible to query media in CUPS using IPP
424 // use IPP to get all media,
622 Media media = (Media)attributes.get(Media.class);
623 if (media != null && media instanceof MediaSizeName) {
624 MediaSizeName msn = (MediaSizeName)media;
627 // check given media against the default
928 * Finds matching CustomMediaSizeName of given media.
930 public CustomMediaSizeName findCustomMedia(MediaSizeName media) { argument
938 if (media
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java517 * @param media The media attribute to be matched. May be null, in which
522 protected void setPIParameters(String media, String title, String charset) { argument
523 _PImedia = media;
661 "media-type"});
1378 String media = null; // Media of stylesheet found
1388 else if (token.startsWith("media"))
1389 media = getTokenValue(token);
1398 if ( ((_PImedia == null) || (_PImedia.equals(media))) &&
H A DXSLTC.java298 * @param media The media attribute to be matched. May be null, in which
303 public void setPIParameters(String media, String title, String charset) { argument
304 _parser.setPIParameters(media, title, charset);
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintService.java173 // media sizes with indices above dmPaperToPrintService' length
305 /* matching media sizes with indices beyond
335 int[] media = getAllMediaIDs(printer, getPort());
336 if (media == null) {
349 // We convert media to ArrayList idList and pass this to the
351 // This is to ensure that mediaSizes and media IDs have 1-1 correspondence.
356 for (int i=0; i < media.length; i++) {
357 idList.add(Integer.valueOf(media[i]));
361 mediaSizes = getMediaSizes(idList, media, dmPaperNameList);
394 /* The following block allows to add such media name
605 getMediaSizes(ArrayList idList, int[] media, ArrayList<String> dmPaperNameList) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DPageAttributes.java33 * Instances of this class control the color state, paper size (media type),
902 private MediaType media; field in class:PageAttributes
936 * @param media one of the constant fields of the MediaType class.
949 public PageAttributes(ColorType color, MediaType media, argument
954 setMedia(media);
984 media = obj.media;
1026 return media;
1039 * @param media one of the constant fields of the MediaType class.
1040 * @throws IllegalArgumentException if media i
1042 setMedia(MediaType media) argument
[all...]

Completed in 309 milliseconds

1234567