Searched defs:srcType (Results 1 - 24 of 24) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DFP2RegisterDecoder.java32 FP2RegisterDecoder(int opf, String name, int srcType, int resultType) { argument
33 super(opf, name, srcType, resultType);
H A DFPMoveDecoder.java32 FPMoveDecoder(int opf, String name, int srcType, int resultType) { argument
33 super(opf, name, srcType, resultType);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DMaskBlit.java53 private D3DMaskBlit(SurfaceType srcType, argument
57 srcType, compType, D3DSurfaceData.D3DSurface);
H A DD3DMaskFill.java56 protected D3DMaskFill(SurfaceType srcType, CompositeType compType) { argument
58 srcType, compType, D3DSurfaceData.D3DSurface);
H A DD3DBlitLoops.java545 D3DSwToSurfaceBlit(SurfaceType srcType, int typeval) { argument
546 super(srcType,
569 D3DSwToSurfaceScale(SurfaceType srcType, int typeval) { argument
570 super(srcType,
596 D3DSwToSurfaceTransform(SurfaceType srcType, int typeval) { argument
597 super(srcType,
620 D3DSwToTextureBlit(SurfaceType srcType, int typeval) { argument
621 super(srcType,
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLMaskBlit.java53 private OGLMaskBlit(SurfaceType srcType, argument
57 srcType, compType, OGLSurfaceData.OpenGLSurface);
H A DOGLMaskFill.java56 protected OGLMaskFill(SurfaceType srcType, CompositeType compType) { argument
58 srcType, compType, OGLSurfaceData.OpenGLSurface);
H A DOGLBlitLoops.java556 OGLSwToSurfaceBlit(SurfaceType srcType, int typeval) { argument
557 super(srcType,
580 OGLSwToSurfaceScale(SurfaceType srcType, int typeval) { argument
581 super(srcType,
607 OGLSwToSurfaceTransform(SurfaceType srcType, int typeval) { argument
608 super(srcType,
631 OGLSwToTextureBlit(SurfaceType srcType, int typeval) { argument
632 super(srcType,
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DSimpleMethodHandle.java54 MethodHandle dropArguments(MethodType srcType, int pos, int drops) { argument
55 LambdaForm newForm = internalForm().addArguments(pos, srcType.parameterList().subList(pos, pos+drops));
56 return new SimpleMethodHandle(srcType, newForm);
H A DMethodHandle.java1322 MethodHandle dropArguments(MethodType srcType, int pos, int drops) { argument
1324 return rebind().dropArguments(srcType, pos, drops);
H A DBoundMethodHandle.java113 MethodHandle dropArguments(MethodType srcType, int pos, int drops) { argument
114 LambdaForm form = internalForm().addArguments(pos, srcType.parameterList().subList(pos, pos+drops));
116 return clone(srcType, form);
H A DMethodHandleImpl.java60 MethodType srcType = accessor.type().erase();
61 MethodType lambdaType = srcType.invokerType();
63 Name[] args = Arrays.copyOfRange(names, 1, 1 + srcType.parameterCount());
64 names[names.length - 1] = new Name(accessor.asType(srcType), (Object[]) args);
66 MethodHandle mh = SimpleMethodHandle.make(srcType, form);
162 * @param srcType required call type
169 static MethodHandle makePairwiseConvert(MethodHandle target, MethodType srcType, int level) { argument
173 if (srcType == dstType)
178 final int INARG_COUNT = srcType.parameterCount();
182 Class<?> src = (i == INARG_COUNT) ? dstType.returnType() : srcType
397 dropArguments(MethodType srcType, int pos, int drops) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DSourceUtils.java55 int srcType; field in class:SourceUtils
63 srcType = streamSource;
65 srcType = domSource;
67 srcType = saxSource;
72 return (srcType&domSource) == domSource;
76 return (srcType&streamSource) == streamSource;
80 return (srcType&saxSource) == saxSource;
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIBlitLoops.java89 public GDIBlitLoops(SurfaceType srcType, SurfaceType dstType) { argument
90 this(srcType, dstType, 0, 0, 0);
97 public GDIBlitLoops(SurfaceType srcType, SurfaceType dstType, argument
100 this(srcType, dstType, 0, 0, 0);
108 public GDIBlitLoops(SurfaceType srcType, SurfaceType dstType, argument
111 super(srcType, CompositeType.SrcNoEa, dstType);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedMaskFill.java64 SurfaceType srcType,
68 super(srcType, compType, dstType);
63 BufferedMaskFill(RenderQueue rq, SurfaceType srcType, CompositeType compType, SurfaceType dstType) argument
H A DBufferedMaskBlit.java71 SurfaceType srcType,
75 super(srcType, compType, dstType);
77 if (srcType == SurfaceType.IntArgb) {
79 } else if (srcType == SurfaceType.IntArgbPre) {
81 } else if (srcType == SurfaceType.IntRgb) {
83 } else if (srcType == SurfaceType.IntBgr) {
151 long pSrcOps, int srcType,
70 BufferedMaskBlit(RenderQueue rq, SurfaceType srcType, CompositeType compType, SurfaceType dstType) argument
149 enqueueTile(long buf, int bpos, SurfaceData srcData, long pSrcOps, int srcType, byte[] mask, int masklen, int maskoff, int maskscan, int srcx, int srcy, int dstx, int dsty, int width, int height) argument
H A DDrawImage.java378 SurfaceType srcType = srcData.getSurfaceType();
379 TransformHelper helper = TransformHelper.getFromCache(srcType);
402 srcType = srcData.getSurfaceType();
403 helper = TransformHelper.getFromCache(srcType);
574 SurfaceType srcType = srcData.getSurfaceType();
577 srcData, dstData, srcType, dstType,
638 SurfaceType srcType = srcData.getSurfaceType();
641 srcData, dstData, srcType, dstType,
920 SurfaceType srcType,
954 Blit blit = Blit.getFromCache(srcType, com
916 blitSurfaceData(SunGraphics2D sg, Region clipRegion, SurfaceData srcData, SurfaceData dstData, SurfaceType srcType, SurfaceType dstType, int sx, int sy, int dx, int dy, int w, int h, Color bgColor) argument
964 scaleSurfaceData(SunGraphics2D sg, Region clipRegion, SurfaceData srcData, SurfaceData dstData, SurfaceType srcType, SurfaceType dstType, int sx1, int sy1, int sx2, int sy2, double dx1, double dy1, double dx2, double dy2) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11PMBlitBgLoops.java81 public X11PMBlitBgLoops(SurfaceType srcType, SurfaceType dstType) argument
83 super(srcType, CompositeType.SrcNoEa, dstType);
H A DX11PMBlitLoops.java140 public X11PMBlitLoops(SurfaceType srcType, SurfaceType dstType, argument
142 super(srcType,
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRMaskBlit.java59 public XRMaskBlit(SurfaceType srcType, CompositeType compType, argument
61 super(srcType, CompositeType.AnyAlpha, dstType);
H A DXRMaskFill.java88 protected XRMaskFill(SurfaceType srcType, CompositeType compType, argument
90 super(srcType, compType, surfaceType);
H A DXRPMBlitLoops.java154 public XRPMBlit(SurfaceType srcType, SurfaceType dstType) { argument
155 super(srcType, CompositeType.AnyAlpha, dstType);
177 public XRPMScaledBlit(SurfaceType srcType, SurfaceType dstType) { argument
178 super(srcType, CompositeType.AnyAlpha, dstType);
229 public XRPMTransformedBlit(SurfaceType srcType, SurfaceType dstType) { argument
230 super(srcType, CompositeType.AnyAlpha, dstType);
332 XrSwToPMBlit(SurfaceType srcType, SurfaceType dstType) { argument
333 super(srcType, CompositeType.AnyAlpha, dstType);
360 XrSwToPMScaledBlit(SurfaceType srcType, SurfaceType dstType) { argument
361 super(srcType, CompositeTyp
385 XrSwToPMTransformedBlit(SurfaceType srcType, SurfaceType dstType) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DBufferedMaskBlit.c55 jobject srcData, jlong pSrcOps, jint srcType,
164 switch (srcType) {
52 Java_sun_java2d_pipe_BufferedMaskBlit_enqueueTile(JNIEnv *env, jobject mb, jlong buf, jint bpos, jobject srcData, jlong pSrcOps, jint srcType, jbyteArray maskArray, jint masklen, jint maskoff, jint maskscan, jint srcx, jint srcy, jint dstx, jint dsty, jint width, jint height) argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java3979 * @param srcType the data type that is the standard mapping in SQL of the
3994 private Object convertNumeric(Object srcObj, int srcType, argument
3997 if (srcType == trgType) {
4080 * @param srcType the data type that is the standard mapping in SQL of the
4094 int srcType, int trgType) throws SQLException {
4096 if (srcType == trgType) {
4108 if (srcType == java.sql.Types.TIMESTAMP) {
4114 if (srcType == java.sql.Types.TIME) {
4120 if (srcType == java.sql.Types.TIMESTAMP) {
4147 * @param srcType th
4093 convertTemporal(Object srcObj, int srcType, int trgType) argument
4159 convertBoolean(Object srcObj, int srcType, int trgType) argument
[all...]

Completed in 124 milliseconds