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

1234567891011>>

/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
H A Dsmooth_gesture_util.py4 import copy namespace
22 return copy.copy(interaction_record)
30 return copy.copy(interaction_record)
/external/libedit/src/
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
/external/tcpdump/missing/
H A Dstrdup.c45 char *copy; local
48 if ((copy = malloc(len)) == NULL)
50 memcpy(copy, str, len);
51 return (copy);
/external/clang/test/CodeGen/
H A D2007-04-24-VolatileStructCopy.c8 void copy(volatile struct foo *p, struct foo *q) { function
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DMemoable.java5 * via the copy() method and then reseting the object back to that state later using the reset() method.
10 * Produce a copy of this object with its configuration and in its current state.
15 Memoable copy(); method in interface:Memoable
22 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
/external/compiler-rt/test/asan/TestCases/
H A Dstrdup_oob_test.cc11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
/external/deqp/framework/delibs/decpp/
H A DdeMemPool.cpp9 * You may obtain a copy of the License at
35 char* copy = (char*)pool->alloc(size); local
37 std::copy(string, string+size, copy);
39 return copy;
/external/elfutils/libdwfl/
H A Ddwfl_module_report_build_id.c60 void *copy = NULL; local
63 copy = malloc (len);
64 if (unlikely (copy == NULL))
69 memcpy (copy, bits, len);
74 mod->build_id_bits = copy;
/external/elfutils/libelf/
H A Delf32_getphdr.c133 /* Now copy the data and at the same time convert the
143 bool copy = ! (ALLOW_UNALIGNED local
147 if (! copy)
172 if (copy)
H A Delf32_getshdr.c107 /* Now copy the data and at the same time convert the byte order. */
117 bool copy = ! (ALLOW_UNALIGNED local
121 if (! copy)
167 if (copy)
/external/autotest/client/site_tests/firmware_TouchMTB/geometry/
H A Dminicircle.py20 import copy namespace
100 P = copy.deepcopy(P)
101 R = copy.deepcopy(R)
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dbisect_report.py7 import copy namespace
80 results_data = copy.deepcopy(try_job_entity.results_data)
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/auth/
H A Dtest_stsanon.py4 # copy of this software and associated documentation files (the
6 # without limitation the rights to use, copy, modify, merge, publish, dis-
22 import copy namespace
73 req = copy.copy(self.request)
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy
[all...]
/external/dbus/dbus/
H A Ddbus-marshal-byteswap-util.c18 * You should have received a copy of the GNU General Public License
49 DBusString copy; local
53 if (!_dbus_string_init (&copy))
56 if (!_dbus_string_copy (&body, 0, &copy, 0))
62 &copy, 0);
67 &copy, 0);
75 _dbus_verbose_bytes_of_string (&copy, 0,
76 _dbus_string_get_length (&copy));
82 _dbus_string_free (&copy);
/external/icu/icu4c/source/common/unicode/
H A Durep.h121 * @param dst array in which to copy characters. The length of
142 * @param dest the index at which the copy of the UChars should be
146 void (*copy)(UReplaceable* rep, member in struct:UReplaceableCallbacks
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
H A DSyntheticAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWifiConfiguration.java32 public WifiConfiguration copy(){ method in class:ShadowWifiConfiguration
/external/skia/src/core/
H A DSkPathRef.cpp22 SkPathRef* copy = new SkPathRef; local
23 copy->copy(**pathRef, incReserveVerbs, incReservePoints);
24 pathRef->reset(copy);
282 void SkPathRef::copy(const SkPathRef& ref,
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DIoUtils.java5 * use this file except in compliance with the License. You may obtain a copy of
32 public static int copy(InputStream input, OutputStream output) throws Exception, IOException { method in class:IoUtils
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
H A DStepInterpolator.java7 * the License. You may obtain a copy of the License at
39 * {@link #copy()} method.
79 * specific state must be preserved, a copy of the instance must be
80 * created using {@link #copy()}.</p>
125 * @return a deep copy of the instance, which can be used independently.
130 StepInterpolator copy() throws DerivativeException; method in interface:StepInterpolator
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
47 * Returns a copy of the statistic with the same internal state.
49 * @return a copy of the statistic
51 UnivariateStatistic copy(); method in interface:UnivariateStatistic
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java13 * with the License. You may obtain a copy of the License at
66 * Creates a copy of the local collection with the same default
68 public HttpParams copy() { method in class:DefaultedHttpParams
69 HttpParams clone = this.local.copy();

Completed in 3780 milliseconds

1234567891011>>