Searched defs:copy (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/
H A DCopyUtils.java7 * the License. You may obtain a copy of the License at
36 * Unless otherwise noted, these <code>copy</code> methods do <em>not</em>
47 * For byte-to-char methods, a <code>copy</code> variant allows the encoding
52 * We don't provide special variants for the <code>copy</code> methods that
56 * The <code>copy</code> methods use an internal buffer when copying. It is
58 * to the <code>copy</code> methods in <code>Buffered*</code> streams. For
61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
73 * However, the <code>copy</code> methods do the same thing, keeping an
84 * 1 copy InputStream OutputStream (primitive)
85 * 2 copy Reade
136 public static void copy(byte[] input, OutputStream output) method in class:CopyUtils
153 public static void copy(byte[] input, Writer output) method in class:CopyUtils
170 public static void copy( method in class:CopyUtils
192 public static int copy( method in class:CopyUtils
217 public static int copy( method in class:CopyUtils
243 public static void copy( method in class:CopyUtils
261 public static void copy( method in class:CopyUtils
282 public static void copy( method in class:CopyUtils
305 public static void copy( method in class:CopyUtils
327 public static void copy(String input, Writer output) method in class:CopyUtils
[all...]
H A DIOUtils.java7 * the License. You may obtain a copy of the License at
48 * <li>copy - these methods copy all the data from one stream to another
218 copy(input, output);
236 copy(input, output);
260 copy(input, output, encoding);
297 copy(is, output);
321 copy(is, output, encoding);
339 copy(input, sw);
359 copy(inpu
998 public static int copy(InputStream input, OutputStream output) throws IOException { method in class:IOUtils
1047 public static void copy(InputStream input, Writer output) method in class:IOUtils
1072 public static void copy(InputStream input, Writer output, String encoding) method in class:IOUtils
1103 public static int copy(Reader input, Writer output) throws IOException { method in class:IOUtils
1154 public static void copy(Reader input, OutputStream output) method in class:IOUtils
1186 public static void copy(Reader input, OutputStream output, String encoding) method in class:IOUtils
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DControlPoint.java6 * You may obtain a copy of the License at
33 public ControlPoint copy() { method in class:ControlPoint
H A DSpline.java6 * You may obtain a copy of the License at
411 public Spline copy() { method in class:Spline
415 spline.addPoint(point.copy());
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DCoordinateUtils.java6 * You may obtain a copy of the License at
45 public static void copy(final int[] destination, final int[] source) { method in class:CoordinateUtils
H A DInputPointers.java6 * You may obtain a copy of the License at
62 public void copy(InputPointers ip) { method in class:InputPointers
63 mXCoordinates.copy(ip.mXCoordinates);
64 mYCoordinates.copy(ip.mYCoordinates);
65 mPointerIds.copy(ip.mPointerIds);
66 mTimes.copy(ip.mTimes);
H A DResizableIntArray.java6 * You may obtain a copy of the License at
102 public void copy(final ResizableIntArray ip) { method in class:ResizableIntArray
/packages/apps/Music/tests/src/com/android/music/functional/
H A DTestSongs.java6 * You may obtain a copy of the License at
86 private void copy(File src, File dst) throws IOException { method in class:TestSongs
101 //Rescan the sdcard after copy the file
185 copy(goldenfile, toBeDeleteSong);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPendingAddItemInfo.java6 * You may obtain a copy of the License at
83 public PendingAddWidgetInfo(PendingAddWidgetInfo copy) { argument
84 minWidth = copy.minWidth;
85 minHeight = copy.minHeight;
86 minResizeWidth = copy.minResizeWidth;
87 minResizeHeight = copy.minResizeHeight;
88 previewImage = copy.previewImage;
89 icon = copy.icon;
90 info = copy.info;
91 boundWidget = copy
[all...]
H A DCellLayout.java6 * You may obtain a copy of the License at
2686 map.get(v).copy(savedMap.get(v));
2693 savedMap.get(v).copy(map.get(v));
2715 public void copy(CellAndSpan copy) { argument
2716 copy.x = x;
2717 copy.y = y;
2718 copy.spanX = spanX;
2719 copy.spanY = spanY;
/packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
H A DGLCanvasTest.java6 * You may obtain a copy of the License at
288 copy(mModelViewMatrixUsed, mGLModelViewMatrix);
289 copy(mProjectionMatrixUsed, mGLProjectionMatrix);
292 private void copy(float[] dest, float[] src) { method in class:GLCanvasTest.TransformTest
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DBinaryDictOffdeviceUtils.java5 * use this file except in compliance with the License. You may obtain a copy of
72 public static void copy(final InputStream input, final OutputStream output) throws IOException { method in class:BinaryDictOffdeviceUtils
86 * dictionary signature, and copy the decoded file to a temporary place.
134 copy(Compress.getUncompressedStream(new BufferedInputStream(new FileInputStream(src))),
135 new BufferedOutputStream(dstStream)); // #copy() closes the streams
153 copy(Crypt.getDecryptedStream(new BufferedInputStream(new FileInputStream(src))),
154 dstStream); // #copy() closes the streams
/packages/apps/Browser/src/com/android/browser/homepages/
H A DTemplate.java7 * You may obtain a copy of the License at
46 // Return a copy so that we don't share data
47 return template.copy();
177 private Template(Template copy) { argument
178 mTemplate = copy.mTemplate;
181 Template copy() { method in class:Template
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_profiler.h6 * You may obtain a copy of the License at
37 #define PROF_NODE_COPY(src, dest) dest.copy(src)
150 void copy(const DicNodeProfiler *const profiler) { function in class:latinime::DicNodeProfiler
177 // Use a default copy constructor and an assign operator because shallow copies are ok
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksPage.java6 * You may obtain a copy of the License at
210 copy(getUrl(adapter, childPosition));
551 private void copy(CharSequence text) { method in class:BrowserBookmarksPage
H A DBrowserHistoryPage.java6 * You may obtain a copy of the License at
107 private void copy(CharSequence text) { method in class:BrowserHistoryPage
419 copy(url);
H A DController.java6 * You may obtain a copy of the License at
512 copy(url);
603 private void copy(CharSequence text) { method in class:Controller
2166 copy(mText);

Completed in 426 milliseconds