HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 651 - 675 of 1328) sorted by null

<<21222324252627282930>>

  /frameworks/base/tools/preload/
MemoryUsage.java 6 * You may obtain a copy of the License at
240 copy(err, System.err);
274 private static void copy(InputStream in, OutputStream out) { method in class:MemoryUsage
  /frameworks/native/opengl/tools/glgen/src/
GenerateGL.java 6 * You may obtain a copy of the License at
26 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGL
53 copy("stubs/jsr239/" + fname +
55 copy("stubs/jsr239/" + fname + ".java-impl", glImplStream);
56 copy("stubs/jsr239/" + fname + ".cpp", cStream);
153 copy("stubs/jsr239/GL10Header.java-if", gl10Stream);
154 copy("stubs/jsr239/GL10ExtHeader.java-if", gl10ExtStream);
155 copy("stubs/jsr239/GL11Header.java-if", gl11Stream);
156 copy("stubs/jsr239/GL11ExtHeader.java-if", gl11ExtStream);
157 copy("stubs/jsr239/GL11ExtensionPackHeader.java-if", gl11ExtPackStream)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 7 * You may obtain a copy of the License at
264 public static EncodedStringValue copy(EncodedStringValue value) { method in class:EncodedStringValue
  /libcore/luni/src/main/java/java/nio/
ByteArrayBuffer.java 7 * the License. You may obtain a copy of the License at
51 private static ByteArrayBuffer copy(ByteArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:ByteArrayBuffer
60 return copy(this, mark, true);
75 return copy(this, mark, isReadOnly);
DirectByteBuffer.java 7 * the License. You may obtain a copy of the License at
51 private static DirectByteBuffer copy(DirectByteBuffer other, int markOfOther, boolean isReadOnly) { method in class:DirectByteBuffer
60 return copy(this, mark, true);
75 return copy(this, mark, isReadOnly);
  /libcore/support/src/test/java/tests/support/resource/
Support_Resources.java 7 * the License. You may obtain a copy of the License at
134 copy(in, out); method
141 private static int copy(InputStream in, OutputStream out) throws IOException { method in class:Support_Resources
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 18 * Permission to use or copy this software for any purpose is hereby granted
173 // copy
176 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
291 inline _OutputIter copy(_InputIter __first, _InputIter __last, _OutputIter __result) { function
335 inline _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) \
392 return _STLP_STD::pair<_RAIter, _OutputIter>(__last, _STLP_STD::copy(__first, __last, __result));
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 11 * Permission to use or copy this software for any purpose is hereby granted
689 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const function in class:basic_string
690 { return _M_non_dbg_impl.copy(__s, __n, __pos); }
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 6 * You may obtain a copy of the License at
265 // copy base64 data and close up
266 IOUtils.copy(inStream, base64Out);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterBasicRepresentation.java 6 * You may obtain a copy of the License at
51 public FilterRepresentation copy() { method in class:FilterBasicRepresentation
FilterCropRepresentation.java 6 * You may obtain a copy of the License at
120 public FilterRepresentation copy() { method in class:FilterCropRepresentation
FilterCurvesRepresentation.java 36 public FilterRepresentation copy() { method in class:FilterCurvesRepresentation
FilterMirrorRepresentation.java 6 * You may obtain a copy of the License at
155 public FilterRepresentation copy() { method in class:FilterMirrorRepresentation
FilterRotateRepresentation.java 6 * You may obtain a copy of the License at
123 public FilterRepresentation copy() { method in class:FilterRotateRepresentation
FilterStraightenRepresentation.java 6 * You may obtain a copy of the License at
91 public FilterRepresentation copy() { method in class:FilterStraightenRepresentation
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
CacheProcessing.java 6 * You may obtain a copy of the License at
76 step.add(representation.copy());
80 step.add(representation.copy());
226 Log.v(LOGTAG, "i: " + i + " get new copy for cacheBitmap "
  /packages/apps/Music/tests/src/com/android/music/functional/
TestSongs.java 6 * You may obtain a copy of the License at
86 private void copy(File src, File dst) throws IOException { method in class:TestSongs
98 Log.v(TAG, "Copy file");
101 //Rescan the sdcard after copy the file
173 * Test case precondition: Copy a song and rescan the sdcard
181 //Copy a song from the golden directory
182 Log.v(TAG, "Copy a temp file to the sdcard");
185 copy(goldenfile, toBeDeleteSong); method
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 6 * You may obtain a copy of the License at
91 * TODO: Copy this code to foldAndEncode(), get rid of this function, confirm all working OK.
272 IOUtils.copy(in, out);
385 IOUtils.copy(in, out);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 7 * 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); method
236 copy(input, output); method
260 copy(input, output, encoding); method
297 copy(is, output); method
321 copy(is, output, encoding); method
339 copy(input, sw); method
359 copy(input, sw); method
382 copy(input, sw, encoding); method
399 copy(input, sw); method
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
1050 copy(in, output); method
1072 public static void copy(InputStream input, Writer output, String encoding) method in class:IOUtils
1075 copy(input, output); method
1078 copy(in, output); method
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
1157 copy(input, out); method
1186 public static void copy(Reader input, OutputStream output, String encoding) method in class:IOUtils
1189 copy(input, output); method
1192 copy(input, out); method
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputPointers.java 6 * You may obtain a copy of the License at
63 public void copy(InputPointers ip) { method in class:InputPointers
64 mXCoordinates.copy(ip.mXCoordinates);
65 mYCoordinates.copy(ip.mYCoordinates);
66 mPointerIds.copy(ip.mPointerIds);
67 mTimes.copy(ip.mTimes);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_profiler.h 6 * You may obtain a copy of the License at
38 #define PROF_NODE_COPY(src, dest) dest.copy(src)
157 void copy(const DicNodeProfiler *const profiler) { function in class:latinime::DicNodeProfiler
184 // Use a default copy constructor and an assign operator because shallow copies are ok
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtils.java 5 * 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.
135 copy(Compress.getUncompressedStream(new BufferedInputStream(new FileInputStream(src))),
136 new BufferedOutputStream(dstStream)); // #copy() closes the streams
154 copy(Crypt.getDecryptedStream(new BufferedInputStream(new FileInputStream(src))),
155 dstStream); // #copy() closes the streams
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_algobase.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
263 // normally) otherwise return it untouched. See copy, fill, ...
300 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
458 copy(_II __first, _II __last, _OI __result) function
506 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::copy(_Tp, _Up, _Vp)
616 * The function has the same effect as copy, but starts at the end of the
623 * Result may not be in the range [first,last). Use copy instead. Not
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algobase.h 21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
31 * Permission to use, copy, modify, distribute and sell this software
43 * Permission to use, copy, modify, distribute and sell this software
263 // normally) otherwise return it untouched. See copy, fill, ...
300 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
458 copy(_II __first, _II __last, _OI __result) function
506 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::copy(_Tp, _Up, _Vp)
616 * The function has the same effect as copy, but starts at the end of the
623 * Result may not be in the range [first,last). Use copy instead. Not
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_algobase.h 18 * Permission to use or copy this software for any purpose is hereby granted
173 // copy
176 // calls to copy with memmove whenever possible. (Memmove, not memcpy,
291 inline _OutputIter copy(_InputIter __first, _InputIter __last, _OutputIter __result) { function
335 inline _Tp* copy(const _Tp* __first, const _Tp* __last, _Tp* __result) \
392 return _STLP_STD::pair<_RAIter, _OutputIter>(__last, _STLP_STD::copy(__first, __last, __result));

Completed in 595 milliseconds

<<21222324252627282930>>