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

<<11121314151617181920>>

  /cts/tests/autofillservice/src/android/autofillservice/cts/
AbstractAutoFillActivity.java 6 * You may obtain a copy of the License at
93 final SynchronousPixelCopy copy = new SynchronousPixelCopy(); local
94 final int copyResult = copy.request(getWindow(), srcRect, dest);
  /cts/tests/tests/widget/src/android/widget/cts/
FrameLayout_LayoutParamsTest.java 6 * You may obtain a copy of the License at
91 FrameLayout.LayoutParams copy; local
101 copy = new FrameLayout.LayoutParams(fllp);
102 assertEquals("Width", fllp.width, copy.width);
103 assertEquals("Height", fllp.height, copy.height);
104 assertEquals("Gravity", fllp.gravity, copy.gravity);
105 assertEquals("Left margin", fllp.leftMargin, copy.leftMargin);
106 assertEquals("Top margin", fllp.topMargin, copy.topMargin);
107 assertEquals("Right margin", fllp.rightMargin, copy.rightMargin);
108 assertEquals("Bottom margin", fllp.bottomMargin, copy.bottomMargin)
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/util/
Lines.java 6 * You may obtain a copy of the License at
138 public Lines<T> copy(int from, int to) { method in class:Lines
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
UserDict.py 27 def copy(self): member in class:UserDict
29 return UserDict(self.data.copy())
30 import copy
34 c = copy.copy(self)
91 # does not define __init__() or copy(). In addition to the four base
copy.py 5 import copy
7 x = copy.copy(y) # make a shallow copy of y
8 x = copy.deepcopy(y) # make a deep copy of y
10 For module specific errors, copy.Error is raised.
16 - A shallow copy constructs a new compound object and then (to the
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
66 def copy(x): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzwrite.c 206 /* for small len, copy to input buffer, otherwise compress directly */
208 /* copy to input buffer, compress when full */
210 unsigned have, copy; local
215 copy = state->size - have;
216 if (copy > len)
217 copy = len;
218 memcpy(state->in + have, buf, copy);
219 strm->avail_in += copy;
220 state->x.pos += copy;
221 buf = (const char *)buf + copy;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
UserDict.py 27 def copy(self): member in class:UserDict
29 return UserDict(self.data.copy())
30 import copy
34 c = copy.copy(self)
91 # does not define __init__() or copy(). In addition to the four base
copy.py 5 import copy
7 x = copy.copy(y) # make a shallow copy of y
8 x = copy.deepcopy(y) # make a deep copy of y
10 For module specific errors, copy.Error is raised.
16 - A shallow copy constructs a new compound object and then (to the
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
66 def copy(x): function
    [all...]
pipes.py 45 sts = t.copy(infile, outfile)
184 def copy(self, infile, outfile): member in class:Template
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
FirstMoment.java 7 * the License. You may obtain a copy of the License at
84 * Copy constructor, creates a new {@code FirstMoment} identical
87 * @param original the {@code FirstMoment} instance to copy
91 copy(original, this); method
139 public FirstMoment copy() { method in class:FirstMoment
141 copy(this, result); method
149 * @param source FirstMoment to copy
150 * @param dest FirstMoment to copy to
153 public static void copy(FirstMoment source, FirstMoment dest) { method in class:FirstMoment
GeometricMean.java 7 * the License. You may obtain a copy of the License at
68 * Copy constructor, creates a new {@code GeometricMean} identical
71 * @param original the {@code GeometricMean} instance to copy
75 copy(original, this); method
90 public GeometricMean copy() { method in class:GeometricMean
92 copy(this, result); method
184 * @param source GeometricMean to copy
185 * @param dest GeometricMean to copy to
188 public static void copy(GeometricMean source, GeometricMean dest) { method in class:GeometricMean
190 dest.sumOfLogs = source.sumOfLogs.copy();
    [all...]
Mean.java 7 * the License. You may obtain a copy of the License at
93 * Copy constructor, creates a new {@code Mean} identical
96 * @param original the {@code Mean} instance to copy
99 copy(original, this); method
252 public Mean copy() { method in class:Mean
254 copy(this, result); method
263 * @param source Mean to copy
264 * @param dest Mean to copy to
267 public static void copy(Mean source, Mean dest) { method in class:Mean
270 dest.moment = source.moment.copy();
    [all...]
StandardDeviation.java 7 * the License. You may obtain a copy of the License at
68 * Copy constructor, creates a new {@code StandardDeviation} identical
71 * @param original the {@code StandardDeviation} instance to copy
74 copy(original, this); method
251 public StandardDeviation copy() { method in class:StandardDeviation
253 copy(this, result); method
262 * @param source StandardDeviation to copy
263 * @param dest StandardDeviation to copy to
266 public static void copy(StandardDeviation source, StandardDeviation dest) { method in class:StandardDeviation
268 dest.variance = source.variance.copy();
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Max.java 7 * the License. You may obtain a copy of the License at
60 * Copy constructor, creates a new {@code Max} identical
63 * @param original the {@code Max} instance to copy
66 copy(original, this); method
144 public Max copy() { method in class:Max
146 copy(this, result); method
154 * @param source Max to copy
155 * @param dest Max to copy to
158 public static void copy(Max source, Max dest) { method in class:Max
Min.java 7 * the License. You may obtain a copy of the License at
60 * Copy constructor, creates a new {@code Min} identical
63 * @param original the {@code Min} instance to copy
66 copy(original, this); method
144 public Min copy() { method in class:Min
146 copy(this, result); method
154 * @param source Min to copy
155 * @param dest Min to copy to
158 public static void copy(Min source, Min dest) { method in class:Min
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
Product.java 7 * the License. You may obtain a copy of the License at
60 * Copy constructor, creates a new {@code Product} identical
63 * @param original the {@code Product} instance to copy
66 copy(original, this); method
204 public Product copy() { method in class:Product
206 copy(this, result); method
214 * @param source Product to copy
215 * @param dest Product to copy to
218 public static void copy(Product source, Product dest) { method in class:Product
Sum.java 7 * the License. You may obtain a copy of the License at
59 * Copy constructor, creates a new {@code Sum} identical
62 * @param original the {@code Sum} instance to copy
65 copy(original, this); method
200 public Sum copy() { method in class:Sum
202 copy(this, result); method
210 * @param source Sum to copy
211 * @param dest Sum to copy to
214 public static void copy(Sum source, Sum dest) { method in class:Sum
SumOfLogs.java 7 * the License. You may obtain a copy of the License at
67 * Copy constructor, creates a new {@code SumOfLogs} identical
70 * @param original the {@code SumOfLogs} instance to copy
73 copy(original, this); method
146 public SumOfLogs copy() { method in class:SumOfLogs
148 copy(this, result); method
156 * @param source SumOfLogs to copy
157 * @param dest SumOfLogs to copy to
160 public static void copy(SumOfLogs source, SumOfLogs dest) { method in class:SumOfLogs
SumOfSquares.java 7 * the License. You may obtain a copy of the License at
58 * Copy constructor, creates a new {@code SumOfSquares} identical
61 * @param original the {@code SumOfSquares} instance to copy
64 copy(original, this); method
134 public SumOfSquares copy() { method in class:SumOfSquares
136 copy(this, result); method
144 * @param source SumOfSquares to copy
145 * @param dest SumOfSquares to copy to
148 public static void copy(SumOfSquares source, SumOfSquares dest) { method in class:SumOfSquares
  /external/apache-http/src/org/apache/http/impl/client/
ClientParamsStack.java 13 * with the License. You may obtain a copy of the License at
120 * Creates a copy of a parameter stack.
124 * @param stack the stack to copy
135 * Creates a modified copy of a parameter stack.
270 * Does <i>not</i> copy parameters.
273 * that, they are read-only. The typical copy operation to prevent
276 * Create a new stack if you really need a copy.
282 public HttpParams copy() { method in class:ClientParamsStack
  /external/apache-http/src/org/apache/http/params/
BasicHttpParams.java 13 * with the License. You may obtain a copy of the License at
128 * Creates a copy of these parameters.
130 * then calls {@link #copyParams(HttpParams)} to populate the copy.
132 * @return a new set of params holding a copy of the
135 public HttpParams copy() { method in class:BasicHttpParams
149 * This method is called from {@link #copy()}.
151 * @param target the parameters to which to copy
  /external/clang/test/CodeGen/
blockstret.c 52 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE member in struct:block_descriptor_big
tbaa-struct.cpp 11 void copy(struct A *a, struct A *b) { function
  /external/clang/test/CodeGenCXX/
lvalue-bitcasts.cpp 147 void copy( const struct in_addr &new_addr ) { function in namespace:PR6437
  /external/curl/src/
tool_cb_hdr.c 14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
143 char *copy; local
149 copy = malloc(len + 1);
150 if(!copy)
152 memcpy(copy, ptr, len);
153 copy[len] = '\0';
155 p = copy;
174 Curl_safefree(copy);
186 Curl_safefree(copy);
200 if(copy != p
    [all...]

Completed in 462 milliseconds

<<11121314151617181920>>