Searched refs:copy (Results 1 - 25 of 163) sorted by relevance

1234567

/packages/apps/Launcher2/src/com/android/launcher2/
H A DPendingAddItemInfo.java6 * You may obtain a copy of the License at
71 public PendingAddWidgetInfo(PendingAddWidgetInfo copy) { argument
72 info = copy.info;
73 boundWidget = copy.boundWidget;
74 mimeType = copy.mimeType;
75 configurationData = copy.configurationData;
76 componentName = copy.componentName;
77 itemType = copy.itemType;
78 spanX = copy.spanX;
79 spanY = copy
[all...]
/packages/apps/UnifiedEmail/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
137 public static void copy(byte[] input, OutputStream output) method in class:CopyUtils
154 public static void copy(byte[] input, Writer output) method in class:CopyUtils
171 public static void copy( method in class:CopyUtils
193 public static int copy( method in class:CopyUtils
218 public static int copy( method in class:CopyUtils
244 public static void copy( method in class:CopyUtils
262 public static void copy( method in class:CopyUtils
283 public static void copy( method in class:CopyUtils
306 public static void copy( method in class:CopyUtils
328 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);
298 copy(is, output);
322 copy(is, output, encoding);
340 copy(input, sw);
360 copy(inpu
1001 public static int copy(InputStream input, OutputStream output) throws IOException { method in class:IOUtils
1050 public static void copy(InputStream input, Writer output) method in class:IOUtils
1075 public static void copy(InputStream input, Writer output, String encoding) method in class:IOUtils
1106 public static int copy(Reader input, Writer output) throws IOException { method in class:IOUtils
1157 public static void copy(Reader input, OutputStream output) method in class:IOUtils
1189 public static void copy(Reader input, OutputStream output, String encoding) method in class:IOUtils
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterDirectRepresentation.java6 * You may obtain a copy of the License at
22 public FilterRepresentation copy() { method in class:FilterDirectRepresentation
H A DFilterUserPresetRepresentation.java6 * You may obtain a copy of the License at
44 public FilterRepresentation copy(){ method in class:FilterUserPresetRepresentation
H A DFilterGradRepresentation.java6 * You may obtain a copy of the License at
86 public Band(Band copy) { argument
87 mask = copy.mask;
88 xPos1 = copy.xPos1;
89 yPos1 = copy.yPos1;
90 xPos2 = copy.xPos2;
91 yPos2 = copy.yPos2;
92 brightness = copy.brightness;
93 contrast = copy.contrast;
94 saturation = copy
139 public FilterRepresentation copy() { method in class:FilterGradRepresentation
[all...]
H A DFilterDrawRepresentation.java6 * You may obtain a copy of the License at
100 public StrokeData(StrokeData copy) { argument
101 mType = copy.mType;
102 mPath = new Path(copy.mPath);
103 mRadius = copy.mRadius;
104 mColor = copy.mColor;
105 noPoints = copy.noPoints;
106 mPoints = Arrays.copyOf(copy.mPoints, copy.mPoints.length);
187 public FilterRepresentation copy() { method in class:FilterDrawRepresentation
[all...]
/packages/services/Telephony/src/org/apache/commons/io/
H A DIOUtils.java7 * the License. You may obtain a copy of the License at
47 * <li>copy - these methods copy all the data from one stream to another
217 copy(input, output);
235 copy(input, output);
259 copy(input, output, encoding);
297 copy(is, output);
321 copy(is, output, encoding);
339 copy(input, sw);
359 copy(inpu
926 public static int copy(InputStream input, OutputStream output) throws IOException { method in class:IOUtils
975 public static void copy(InputStream input, Writer output) method in class:IOUtils
1000 public static void copy(InputStream input, Writer output, String encoding) method in class:IOUtils
1031 public static int copy(Reader input, Writer output) throws IOException { method in class:IOUtils
1082 public static void copy(Reader input, OutputStream output) method in class:IOUtils
1114 public static void copy(Reader input, OutputStream output, String encoding) method in class:IOUtils
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
H A DMemoryBinaryBody.java8 * with the License. You may obtain a copy of the License at *
60 IOUtils.copy(is, out);
90 IOUtils.copy(getInputStream(),out);
H A DTempFileBinaryBody.java8 * with the License. You may obtain a copy of the License at *
60 IOUtils.copy(is, out);
89 IOUtils.copy(getInputStream(),out);
H A DMemoryTextBody.java8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
H A DTempFileTextBody.java8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
115 IOUtils.copy(tempFile.getInputStream(), out);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DCompress.java5 * use this file except in compliance with the License. You may obtain a copy of
62 BinaryDictOffdeviceUtils.copy(input, compressedOutput);
91 BinaryDictOffdeviceUtils.copy(uncompressedInput, output);
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DInputPointers.java6 * You may obtain a copy of the License at
82 public void copy(@Nonnull final InputPointers ip) { method in class:InputPointers
83 mXCoordinates.copy(ip.mXCoordinates);
84 mYCoordinates.copy(ip.mYCoordinates);
85 mPointerIds.copy(ip.mPointerIds);
86 mTimes.copy(ip.mTimes);
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharEscaper.java6 * You may obtain a copy of the License at
150 // If we have skipped any characters, we need to copy them now.
170 // Regrow and copy, expensive! No padding as this is the final copy.
201 char[] copy = new char[size];
203 System.arraycopy(dest, 0, copy, 0, index);
205 return copy;
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
H A Dbuffer_with_extendable_buffer_test.cpp6 * You may obtain a copy of the License at
66 EXPECT_TRUE(targetBuffer.copy(&buffer));
80 EXPECT_TRUE(smallBuffer.copy(&emptyBuffer));
81 EXPECT_FALSE(emptyBuffer.copy(&smallBuffer));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
H A DHistoryItem.java6 * You may obtain a copy of the License at
33 mFilterRepresentation = representation.copy();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DControlPoint.java6 * You may obtain a copy of the License at
50 public ControlPoint copy() { method in class:ControlPoint
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DEmailCopyContextMenu.java7 * You may obtain a copy of the License at
74 copy(mText);
84 private void copy(CharSequence text) { method in class:EmailCopyContextMenu
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModePrioritySettings.java6 * You may obtain a copy of the License at
63 final ZenModeConfig newConfig = mConfig.copy();
78 final ZenModeConfig newConfig = mConfig.copy();
100 final ZenModeConfig newConfig = mConfig.copy();
123 final ZenModeConfig newConfig = mConfig.copy();
142 final ZenModeConfig newConfig = mConfig.copy();
/packages/apps/FMRadio/jni/
H A DAndroid.mk5 # You may obtain a copy of the License at
/packages/apps/Launcher2/tests/
H A DAndroid.mk5 # You may obtain a copy of the License at
/packages/experimental/BugReportSender/
H A DAndroid.mk5 # You may obtain a copy of the License at
/packages/experimental/ExampleImsFramework/
H A DAndroid.mk5 # You may obtain a copy of the License at
/packages/experimental/LoaderApp/
H A DAndroid.mk5 # You may obtain a copy of the License at

Completed in 556 milliseconds

1234567