Searched defs:src (Results 26 - 50 of 510) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DCharacterArrayCharacterIterator.java31 private final char[] src; field in class:CharacterArrayCharacterIterator
37 /** @param src - encapsulated String */
38 public CharacterArrayCharacterIterator(char[] src, int off, int len) argument
40 this.src = src;
56 return new String(src, off + beginIndex, endIndex - beginIndex);
68 return src[off + pos];
H A DStringCharacterIterator.java31 private final String src; field in class:StringCharacterIterator
33 /** @param src - encapsulated String */
34 public StringCharacterIterator(String src) argument
36 this.src = src;
42 return src.substring(beginIndex, endIndex);
48 return src.substring(beginIndex);
54 return src.charAt(pos);
60 return (pos >= src.length());
/openjdk7/jaxp/src/javax/xml/transform/sax/
H A DSAXTransformerFactory.java56 * the {@link #newXMLFilter(Source src)}
72 * @param src The Source of the transformation instructions.
79 public abstract TransformerHandler newTransformerHandler(Source src) argument
128 * @param src The Source of the transformation instructions.
135 public abstract XMLFilter newXMLFilter(Source src) argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DUserDataHandler.java90 * @param src Specifies the node being cloned, adopted, imported, or
98 Node src,
95 handle(short operation, String key, Object data, Node src, Node dst) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDropShadowEffect.java45 * under the src image. BLENDED means the result of apply sffect contains a modified src image so just it should be
46 * painted. OVER means the result of apply effect should be painted over the src image.
56 * Apply the effect to the src image generating the result . The result image may or may not contain the source
59 * @param src The source image for applying the effect to
61 * @param w The width of the src image to apply effect to, this allow the src and dst buffers to be bigger than
63 * @param h The height of the src image to apply effect to, this allow the src and dst buffers to be bigger than
68 BufferedImage applyEffect(BufferedImage src, BufferedImag argument
[all...]
H A DInnerShadowEffect.java45 * under the src image. BLENDED means the result of apply sffect contains a modified src image so just it should be
46 * painted. OVER means the result of apply effect should be painted over the src image.
55 * Apply the effect to the src image generating the result . The result image may or may not contain the source
58 * @param src The source image for applying the effect to
60 * @param w The width of the src image to apply effect to, this allow the src and dst buffers to be bigger than
62 * @param h The height of the src image to apply effect to, this allow the src and dst buffers to be bigger than
66 BufferedImage applyEffect(BufferedImage src, BufferedImag argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageConsumerQueue.java68 ImageConsumerQueue(InputStreamImageSource src, ImageConsumer ic) { argument
74 if (ir.image.source != src) {
H A DXbmImageDecoder.java54 public XbmImageDecoder(InputStreamImageSource src, InputStream is) { argument
55 super(src, is);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java75 * @param src The <CODE>BufferedImage</CODE> to be filtered
84 public BufferedImage filter(BufferedImage src, BufferedImage dest); argument
92 * @param src The <CODE>BufferedImage</CODE> to be filtered
97 public Rectangle2D getBounds2D (BufferedImage src); argument
106 * @param src The <CODE>BufferedImage</CODE> to be filtered
112 public BufferedImage createCompatibleDestImage (BufferedImage src, argument
H A DFilteredImageSource.java43 * Image src = getImage("doc:///demo/images/duke/T1.gif");
45 * Image img = createImage(new FilteredImageSource(src.getSource(),
55 ImageProducer src; field in class:FilteredImageSource
67 src = orig;
102 src.addConsumer(imgf);
142 src.removeConsumer(imgf);
183 src.startProduction(imgf);
205 imgf.resendTopDownLeftRight(src);
H A DLookupTable.java101 * @param src the source array of components of one pixel
107 public abstract int[] lookupPixel(int[] src, int[] dest); argument
H A DRasterOp.java59 * @param src the source <code>Raster</code>
64 public WritableRaster filter(Raster src, WritableRaster dest); argument
71 * @param src the source <code>Raster</code>
76 public Rectangle2D getBounds2D(Raster src); argument
84 * @param src the source <code>Raster</code>
86 * <code>src</code>
88 public WritableRaster createCompatibleDestRaster(Raster src); argument
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSeekableByteChannel.java80 int write(ByteBuffer src) throws IOException; argument
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DUserDefinedFileAttributeView.java173 * {@code src.remaining()}. The sequence of bytes is transferred from the
199 * @param src
213 int write(String name, ByteBuffer src) throws IOException; argument
/openjdk7/jdk/src/share/classes/java/text/
H A DNormalizer.java153 * @param src The sequence of char values to normalize.
160 * @throws NullPointerException If <code>src</code> or <code>form</code>
163 public static String normalize(CharSequence src, Form form) { argument
164 return NormalizerBase.normalize(src.toString(), form);
169 * @param src The sequence of char values to be checked.
177 * @throws NullPointerException If <code>src</code> or <code>form</code>
180 public static boolean isNormalized(CharSequence src, Form form) { argument
181 return NormalizerBase.isNormalized(src.toString(), form);
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DGCMParameterSpec.java77 * @param src the IV source buffer. The contents of the buffer are
81 * or {@code src} is null.
83 public GCMParameterSpec(int tLen, byte[] src) { argument
84 if (src == null) {
85 throw new IllegalArgumentException("src array is null");
88 init(tLen, src, 0, src.length);
97 * @param src the IV source buffer. The contents of the
99 * @param offset the offset in {@code src} where the IV starts
103 * {@code src} i
107 GCMParameterSpec(int tLen, byte[] src, int offset, int len) argument
114 init(int tLen, byte[] src, int offset, int len) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java77 * @param src The non-null contents of the address as a byte array.
78 * The contents of src is copied into the new BinaryRefAddr.
80 public BinaryRefAddr(String addrType, byte[] src) { argument
81 this(addrType, src, 0, src.length);
89 * @param src The non-null contents of the address as a byte array.
90 * The contents of src is copied into the new BinaryRefAddr.
91 * @param offset The starting index in src to get the bytes.
92 * 0 <= offset <= src.length.
93 * @param count The number of bytes to extract from src
96 BinaryRefAddr(String addrType, byte[] src, int offset, int count) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmultnode.hpp65 ProjNode( Node *src, uint con, bool io_use = false ) argument
66 : Node( src ), _con(con), _is_io_use(io_use)
70 if (con != TypeFunc::Memory || src->is_Start())
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Ddump_sparc.cpp84 Register src = G0; local
87 src = L0;
95 __ delayed()->or3(src, offset, L0);
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaFrameAnchor.hpp128 JavaFrameAnchor(JavaFrameAnchor *src) { copy(src); } argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCodeBuffer.hpp86 int inline_data(void *src, size_t size) const { argument
91 memcpy(dst, src, size);
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.cpp89 void* src = (char*)dst + esize; local
91 memmove(dst, src, cnt);
98 void* src = (char*)dst + esize; local
100 memmove(dst, src, cnt);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelopeFactory.java58 public static Envelope createEnvelope(Source src, SOAPPartImpl soapPart) argument
64 if (src instanceof StreamSource) {
65 if (src instanceof JAXMStreamSource) {
68 ((JAXMStreamSource) src).reset();
83 InputSource is = SAXSource.sourceToInputSource(src);
96 src = new SAXSource(rejectFilter, is);
103 transformer.transform(src, result);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_ImageConvCopyEdge_Fp.c28 * mlib_ImageConvCopyEdge_Fp - Copy src edges to dst edges
33 * const mlib_image *src,
42 * src Pointer to an src image.
56 * The src and the dst must be the same type, same width, same height and have same number
58 * overwritten. If both src and dst have just one channel,
62 * Copy src edges to dst edges.
65 * If src and dst have just one channel,
76 type *psrc = (type *) mlib_ImageGetData(src); \
78 mlib_s32 src_stride = mlib_ImageGetStride(src) / sizeo
117 mlib_ImageConvCopyEdge_Fp(mlib_image *dst, const mlib_image *src, mlib_s32 dx_l, mlib_s32 dx_r, mlib_s32 dy_t, mlib_s32 dy_b, mlib_s32 cmask) argument
[all...]
H A Dmlib_v_ImageCopy.c34 * mlib_image *src);
38 * src pointer to input or source image
41 * src and dst must have the same size, type and number of channels.
67 mlib_status mlib_v_ImageCopy(mlib_image *dst, mlib_image *src) argument
71 mlib_status mlib_ImageCopy(mlib_image *dst, const mlib_image *src)
77 mlib_s32 width; /* width in bytes of src and dst */
78 mlib_s32 height; /* height in lines of src and dst */
79 mlib_s32 s_offset; /* bit offset of src */
81 mlib_s32 stride; /* stride in bytes in src*/
86 MLIB_IMAGE_CHECK(src);
[all...]

Completed in 503 milliseconds

1234567891011>>