Searched refs:clone (Results 1 - 25 of 104) sorted by relevance

12345

/frameworks/base/awt/javax/imageio/plugins/jpeg/
H A DJPEGImageReadParam.java83 this.qTables = qTables.clone();
84 dcHuffmanTables = DCHuffmanTables.clone();
85 acHuffmanTables = ACHuffmanTables.clone();
103 return qTables == null ? null : qTables.clone();
112 return dcHuffmanTables == null ? null : dcHuffmanTables.clone();
121 return acHuffmanTables == null ? null : acHuffmanTables.clone();
H A DJPEGImageWriteParam.java119 this.qTables = qTables.clone();
120 dcHuffmanTables = DCHuffmanTables.clone();
121 acHuffmanTables = ACHuffmanTables.clone();
139 return dcHuffmanTables == null ? null : dcHuffmanTables.clone();
148 return acHuffmanTables == null ? null : acHuffmanTables.clone();
157 return qTables == null ? null : qTables.clone();
163 return COMP_QUALITY_DESCRIPTIONS.clone();
169 return COMP_QUALITY_VALUES.clone();
H A DJPEGQTable.java115 theTable = table.clone();
124 return theTable.clone();
/frameworks/base/awt/java/awt/geom/
H A DDimension2D.java76 public Object clone() { method in class:Dimension2D
78 return super.clone();
/frameworks/base/awt/javax/imageio/spi/
H A DImageReaderWriterSpi.java171 // We clone all the arrays to be consistent with the fact that
174 this.names = names.clone();
175 this.suffixes = suffixes == null ? null : suffixes.clone();
176 this.MIMETypes = MIMETypes == null ? null : MIMETypes.clone();
183 : extraStreamMetadataFormatNames.clone();
186 : extraStreamMetadataFormatClassNames.clone();
193 : extraImageMetadataFormatNames.clone();
196 : extraImageMetadataFormatClassNames.clone();
213 return names.clone();
224 return suffixes == null ? null : suffixes.clone();
[all...]
/frameworks/base/awt/java/awt/
H A DImageCapabilities.java53 public Object clone() { method in class:ImageCapabilities
H A DBufferCapabilities.java76 public Object clone() { method in class:BufferCapabilities
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRectShape.java55 public RectShape clone() throws CloneNotSupportedException { method in class:RectShape
56 final RectShape shape = (RectShape) super.clone();
H A DShape.java97 public Shape clone() throws CloneNotSupportedException { method in class:Shape
98 return (Shape) super.clone();
H A DPathShape.java69 public PathShape clone() throws CloneNotSupportedException { method in class:PathShape
70 PathShape shape = (PathShape) super.clone();
H A DRoundRectShape.java110 public RoundRectShape clone() throws CloneNotSupportedException { method in class:RoundRectShape
111 RoundRectShape shape = (RoundRectShape) super.clone();
112 shape.mOuterRadii = mOuterRadii.clone();
113 shape.mInnerRadii = mInnerRadii.clone();
/frameworks/base/awt/java/awt/image/renderable/
H A DRenderContext.java62 this.transform = (AffineTransform)usr2dev.clone();
103 public Object clone() { method in class:RenderContext
114 transform = (AffineTransform)newTransform.clone();
174 return (AffineTransform)transform.clone();
/frameworks/base/tests/AndroidTests/src/com/android/unit_tests/
H A DHashSetTest.java187 * Tests performance for the HashSet method clone()
195 set = hSet.clone();
196 set = hSet.clone();
197 set = hSet.clone();
198 set = hSet.clone();
199 set = hSet.clone();
200 set = hSet.clone();
201 set = hSet.clone();
202 set = hSet.clone();
203 set = hSet.clone();
[all...]
H A DHashMapTest.java173 cMap = (HashMap) mMap.clone();
174 cMap = (HashMap) mMap.clone();
175 cMap = (HashMap) mMap.clone();
176 cMap = (HashMap) mMap.clone();
177 cMap = (HashMap) mMap.clone();
178 cMap = (HashMap) mMap.clone();
179 cMap = (HashMap) mMap.clone();
180 cMap = (HashMap) mMap.clone();
181 cMap = (HashMap) mMap.clone();
182 cMap = (HashMap) mMap.clone();
[all...]
H A DArrayListTest.java315 rObj = mList.clone();
316 rObj = mList.clone();
317 rObj = mList.clone();
318 rObj = mList.clone();
319 rObj = mList.clone();
320 rObj = mList.clone();
321 rObj = mList.clone();
322 rObj = mList.clone();
323 rObj = mList.clone();
324 rObj = mList.clone();
[all...]
H A DTreeSetTest.java208 * Tests performance for the java.util.TreeSet method - clone()
216 obj = set.clone();
217 obj = set.clone();
218 obj = set.clone();
219 obj = set.clone();
220 obj = set.clone();
221 obj = set.clone();
222 obj = set.clone();
223 obj = set.clone();
224 obj = set.clone();
[all...]
/frameworks/base/awt/java/awt/image/
H A DImageFilter.java56 ImageFilter filter = (ImageFilter)clone();
67 fprops = (Hashtable<Object, Object>)props.clone();
89 public Object clone() { method in class:ImageFilter
91 return super.clone();
H A DDataBufferByte.java50 data = dataArrays.clone();
63 data = dataArrays.clone();
170 return data.clone();
H A DDataBufferInt.java50 data = dataArrays.clone();
63 data = dataArrays.clone();
170 return data.clone();
H A DDataBufferShort.java50 data = dataArrays.clone();
63 data = dataArrays.clone();
169 return data.clone();
H A DDataBufferUShort.java59 data = dataArrays.clone();
72 data = dataArrays.clone();
183 return data.clone();
H A DDataBufferDouble.java50 data = dataArrays.clone();
63 data = dataArrays.clone();
214 return data.clone();
H A DDataBufferFloat.java50 data = dataArrays.clone();
63 data = dataArrays.clone();
214 return data.clone();
/frameworks/base/awt/javax/imageio/
H A DIIOParam.java118 // -- clone it to avoid unexpected modifications
119 this.sourceRegion = (Rectangle)sourceRegion.clone();
134 // -- clone it to avoid unexpected modifications
135 return (Rectangle)sourceRegion.clone();
277 this.destinationOffset = (Point)destinationOffset.clone();
286 return (Point)destinationOffset.clone();
/frameworks/base/awt/java/awt/font/
H A DTextMeasurer.java119 protected Object clone() { method in class:TextMeasurer
120 return new TextMeasurer((AttributedCharacterIterator)aci.clone(), frc);
136 TextLayout layout = new TextLayout((TextRunBreaker)breaker.clone());

Completed in 291 milliseconds

12345