HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 451 - 475 of 3098) sorted by null

<<11121314151617181920>>

  /art/tools/dexfuzz/src/dexfuzz/
StreamConsumer.java 6 * You may obtain a copy of the License at
96 // Take a copy of the Strings, so when we call output.clear(), we don't
98 List<String> copy = new ArrayList<String>(output); local
99 return copy;
  /cts/tests/inputmethod/mockime/src/com/android/cts/mockime/
ImeEventStream.java 6 * You may obtain a copy of the License at
59 * Create a copy that starts from the same event position of this stream. Once a copy is created
60 * further event position change on this stream will not affect the copy.
62 * @return A new copy of this stream
64 public ImeEventStream copy() { method in class:ImeEventStream
  /cts/tests/tests/content/src/android/content/pm/cts/
ApplicationInfoTest.java 6 * You may obtain a copy of the License at
69 // simple test to ensure packageName is copied by copy constructor
72 ApplicationInfo copy = new ApplicationInfo(info); local
73 assertEquals(info.packageName, copy.packageName);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 6 * You may obtain a copy of the License at
51 // - copy constructed picture from actively recording picture
63 Picture copy = new Picture(original); local
64 verifyBalance(copy);
VulkanPreTransformTest.java 6 * You may obtain a copy of the License at
103 SynchronousPixelCopy copy = new SynchronousPixelCopy(); local
107 copy.request((SurfaceView) sActivity.findViewById(R.id.surfaceview), srcRect, dest);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
VectorDrawableScaleTest.java 6 * You may obtain a copy of the License at
96 // Copy the source rectangle from the screen into the returned bitmap.
98 SynchronousPixelCopy copy = new SynchronousPixelCopy(); local
101 int copyResult = copy.request(mActivity.getWindow(), srcRect, dest);
  /cts/tests/tests/security/src/android/security/cts/
AmbiguousBundlesTest.java 6 * You may obtain a copy of the License at
155 Bundle copy = p.readBundle(); local
157 return copy;
  /cts/tools/vm-tests-tf/src/util/build/
JarBuildStep.java 6 * You may obtain a copy of the License at
82 // Create the JAR entry for the file. Use destFileName, and copy the timestamp
90 // Copy absoluteInputFile into the jar file.
91 Files.copy(absoluteInputPath, jarOut);
  /dalvik/dx/src/com/android/dx/cf/code/
ExecutionStack.java 6 * You may obtain a copy of the License at
61 * Makes and returns a mutable copy of this instance.
63 * @return {@code non-null;} the copy
65 public ExecutionStack copy() { method in class:ExecutionStack
OneLocalsArray.java 6 * You may obtain a copy of the License at
50 public OneLocalsArray copy() { method in class:OneLocalsArray
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
BugreportParser.java 6 * You may obtain a copy of the License at
106 mMetadataParser.parseHeader(lines.copy(pos, lines.pos));
121 parseSection(section, lines.copy(pos, lines.pos-1), command, durationMs);
133 mMetadataParser.parseFooter(lines.copy(pos, lines.pos-1), durationMs);
144 parseSection(section, lines.copy(pos, lines.pos-1), null, -1);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 3 XXX The functions here don't copy the resource fork or other metadata on Mac.
25 __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
47 """copy data from file-like object fsrc to file-like object fdst"""
67 """Copy data from src to dst"""
87 """Copy mode bits from src to dst"""
94 """Copy all stat info (mode bits, atime, mtime, flags) from src to dst"""
111 def copy(src, dst): function
112 """Copy data and mode bits ("cp src dst").
123 """Copy data and all stat info ("cp -p src dst").
146 """Recursively copy a directory tree using copy2().
    [all...]
weakref.py 108 def copy(self): member in class:WeakValueDictionary
116 __copy__ = copy
119 from copy import deepcopy
323 def copy(self): member in class:WeakKeyDictionary
331 __copy__ = copy
334 from copy import deepcopy
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy = left;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/
bitvec.py 158 def copy(self): member in class:BitVec
261 retval = self.copy()
272 return self.copy()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 3 XXX The functions here don't copy the resource fork or other metadata on Mac.
25 __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2",
46 """copy data from file-like object fsrc to file-like object fdst"""
66 """Copy data from src to dst"""
86 """Copy mode bits from src to dst"""
93 """Copy all stat info (mode bits, atime, mtime, flags) from src to dst"""
108 def copy(src, dst): function
109 """Copy data and mode bits ("cp src dst").
120 """Copy data and all stat info ("cp -p src dst").
143 """Recursively copy a directory tree using copy2().
    [all...]
weakref.py 82 def copy(self): member in class:WeakValueDictionary
90 __copy__ = copy
93 from copy import deepcopy
264 def copy(self): member in class:WeakKeyDictionary
272 __copy__ = copy
275 from copy import deepcopy
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
pystone.py 53 def copy(self): member in class:Record
138 PtrParIn.PtrComp = NextRecord = PtrGlb.copy()
149 PtrParIn = NextRecord.copy()
test_userdict.py 73 # Test copy()
74 u2a = u2.copy()
77 u2c = u2b.copy() # making a copy of a UserDict is special cased
84 m2a = m2.copy()
87 # SF bug #476616 -- copy() of UserDict subclass shared data
238 def copy(self): member in class:SeqDict
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy = left;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrix.java 7 * the License. You may obtain a copy of the License at
37 * Returns a (deep) copy of this.
39 * @return matrix copy
41 BigMatrix copy(); method in interface:BigMatrix
FieldVector.java 7 * the License. You may obtain a copy of the License at
55 * Returns a (deep) copy of this.
56 * @return vector copy
58 FieldVector<T> copy(); method in interface:FieldVector
354 * @return array containing a copy of vector elements
OpenMapRealVector.java 7 * the License. You may obtain a copy of the License at
168 * Copy constructor.
169 * @param v The instance to copy from
178 * Generic copy constructor.
179 * @param v The instance to copy from
231 OpenMapRealVector res = copyThis ? this.copy() : v.copy();
290 public OpenMapRealVector copy() { method in class:OpenMapRealVector
598 return copy().mapAddToSelf(d);
684 OpenMapRealVector res = copy();
    [all...]
SparseFieldMatrix.java 7 * the License. You may obtain a copy of the License at
76 * Copy constructor.
77 * @param other The instance to copy
87 * Generic copy constructor.
88 * @param other The instance to copy
120 public FieldMatrix<T> copy() { method in class:SparseFieldMatrix
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 7 * the License. You may obtain a copy of the License at
82 * Copy constructor, creates a new {@code Kurtosis} identical
85 * @param original the {@code Kurtosis} instance to copy
88 copy(original, this); method
202 public Kurtosis copy() { method in class:Kurtosis
204 copy(this, result); method
212 * @param source Kurtosis to copy
213 * @param dest Kurtosis to copy to
216 public static void copy(Kurtosis source, Kurtosis dest) { method in class:Kurtosis
218 dest.moment = source.moment.copy();
    [all...]

Completed in 1211 milliseconds

<<11121314151617181920>>