Searched refs:sType (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineEvent.java139 String sType = "";
140 if (type != null) sType = type.toString()+" ";
147 return new String(sType + "event from line " + sLine);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DBufImgSurfaceData.java112 SurfaceType sType;
116 sType = SurfaceType.Index8Gray;
118 sType = SurfaceType.ByteIndexedOpaque;
122 sType = SurfaceType.ByteIndexedBm;
125 sType = SurfaceType.ByteIndexed;
130 sData = createDataBC(bufImg, sType, 0);
141 SurfaceType sType;
145 sType = SurfaceType.ByteBinary1Bit;
148 sType = SurfaceType.ByteBinary2Bit;
151 sType
251 createDataIC(BufferedImage bImg, SurfaceType sType) argument
267 createDataSC(BufferedImage bImg, SurfaceType sType, IndexColorModel icm) argument
284 createDataBC(BufferedImage bImg, SurfaceType sType, int primaryBank) argument
305 createDataBP(BufferedImage bImg, SurfaceType sType) argument
351 BufImgSurfaceData(DataBuffer db, BufferedImage bufImg, SurfaceType sType) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXOffScreenSurfaceData.java133 SurfaceType sType;
137 sType = SurfaceType.Index8Gray;
139 sType = SurfaceType.ByteIndexedOpaque;
143 sType = SurfaceType.ByteIndexedBm;
146 sType = SurfaceType.ByteIndexed;
151 sData = createDataBC(bufImg, sType, 0);
169 SurfaceType sType = SurfaceType.Custom;
184 sData = createDataIC(bufImg, sType, BufferedImage.TYPE_INT_ARGB_PRE);
190 sData = createDataIC(bufImg, sType, BufferedImage.TYPE_INT_ARGB);
196 sData = createDataIC(bufImg, sType, BufferedImag
347 createDataIC(BufferedImage bImg, SurfaceType sType, int iType) argument
368 createDataIC(BufferedImage bImg, SurfaceType sType) argument
372 createDataSC(BufferedImage bImg, SurfaceType sType, IndexColorModel icm, int iType) argument
393 createDataSC(BufferedImage bImg, SurfaceType sType, IndexColorModel icm) argument
397 createDataBC(BufferedImage bImg, SurfaceType sType, int primaryBank, int iType) argument
420 createDataBC(BufferedImage bImg, SurfaceType sType, int primaryBank) argument
424 createDataBP(BufferedImage bImg, SurfaceType sType, int iType) argument
457 OSXOffScreenSurfaceData(BufferedImage bufImg, SurfaceType sType) argument
[all...]
H A DOSXSurfaceData.java60 public OSXSurfaceData(SurfaceType sType, ColorModel cm) { argument
61 this(sType, cm, null, new Rectangle());
64 public OSXSurfaceData(SurfaceType sType, ColorModel cm, GraphicsConfiguration config, Rectangle bounds) { argument
65 super(sType, cm);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DXORComposite.java49 SurfaceType sType = sd.getSurfaceType();
52 this.alphaMask = sType.getAlphaMask();
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java443 SurfaceType sType,
445 super(sType, cm);
448 this.solidloops = graphicsConfig.getSolidLoops(sType);
524 SurfaceType sType;
537 sType = transparent ? X11SurfaceData.ThreeByteBgrX11_BM : X11SurfaceData.ThreeByteBgrX11;
552 sType = X11SurfaceData.IntArgbPreX11;
555 sType = transparent ? X11SurfaceData.IntRgbX11_BM :
558 sType = transparent ? X11SurfaceData.IntBgrX11_BM :
563 sType = X11SurfaceData.FourByteAbgrPreX11;
573 sType
441 X11SurfaceData(X11ComponentPeer peer, X11GraphicsConfig gc, SurfaceType sType, ColorModel cm) argument
719 X11WindowSurfaceData(X11ComponentPeer peer, X11GraphicsConfig gc, SurfaceType sType) argument
758 X11PixmapSurfaceData(X11GraphicsConfig gc, int width, int height, Image image, SurfaceType sType, ColorModel cm, long drawable, int transparency) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.java241 String sType = cType.getSubType();
244 if ((subType.charAt(0) == '*') || (sType.charAt(0) == '*'))
248 if (!subType.equalsIgnoreCase(sType))
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRSurfaceData.java244 SurfaceType sType, ColorModel cm, int depth, int transparency)
246 super(sType, cm);
249 this.solidloops = graphicsConfig.getSolidLoops(sType);
362 SurfaceType sType = null;
366 sType = XRSurfaceData.IntRgbX11;
371 sType = XRSurfaceData.IntArgbPreX11;
375 return sType;
504 XRGraphicsConfig gc, SurfaceType sType) {
505 super(peer, gc, sType, peer.getColorModel(),
585 Image image, SurfaceType sType,
243 XRSurfaceData(X11ComponentPeer peer, XRGraphicsConfig gc, SurfaceType sType, ColorModel cm, int depth, int transparency) argument
503 XRWindowSurfaceData(X11ComponentPeer peer, XRGraphicsConfig gc, SurfaceType sType) argument
584 XRPixmapSurfaceData(XRGraphicsConfig gc, int width, int height, Image image, SurfaceType sType, ColorModel cm, long drawable, int transparency, int pictFormat, int depth) argument
[all...]
/openjdk7/jdk/src/share/sample/vm/clr-jvm/
H A Dinvoker.cs65 String sType,
63 NewObjectArray( void* pEnv, int nDimension, String sType, void** ppArray ) argument
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java129 SurfaceType sType = getSurfaceType(peer.getDeviceColorModel());
130 return new GDIWindowSurfaceData(peer, sType);
241 private GDIWindowSurfaceData(WComponentPeer peer, SurfaceType sType) { argument
242 super(sType, peer.getDeviceColorModel());
267 this.solidloops = graphicsConfig.getSolidLoops(sType);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJob2D.java691 SidesType sType = jobAttributes.getSides();
692 if (sType == SidesType.TWO_SIDED_LONG_EDGE) {
694 } else if (sType == SidesType.TWO_SIDED_SHORT_EDGE) {
696 } else if (sType == SidesType.ONE_SIDED) {

Completed in 51 milliseconds