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

1234567891011>>

/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.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 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.java6 * Produce a copy of this object with its configuration and in its current state.
11 public Memoable copy(); method in interface:Memoable
18 * @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/src/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;
H A Ddwfl_module_build_id.c42 void *copy = malloc (len); local
43 if (unlikely (copy == NULL))
49 mod->build_id_bits = memcpy (copy, bits, len);
/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...]
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return 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
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/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
H A DAnnotationDefaultAttribute.java104 * Copies this attribute and returns a new copy.
106 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AnnotationDefaultAttribute
H A DConstantAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ConstantAttribute
68 int index = getConstPool().copy(getConstantValue(), newCp,
H A DEnclosingMethodAttribute.java119 * Makes a copy. Class names are replaced according to the
122 * @param newCp the constant pool table used by the new copy.
126 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:EnclosingMethodAttribute
H A DSourceFileAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SourceFileAttribute
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWifiConfiguration.java32 public WifiConfiguration copy(){ method in class:ShadowWifiConfiguration
/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();
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp29 namespace copy { namespace
31 Volatile(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy constructor may not be volatile}}
32 Volatile& operator=(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy assignment operator may not be volatile}}
61 NonConst nc; // makes implicit copy non-const
65 AssignmentRet1&& operator=(const AssignmentRet1&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet1 &'}}
69 const AssignmentRet2& operator=(const AssignmentRet2&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet2 &'}}
73 ConstAssignment& operator=(const ConstAssignment&) const = default; // expected-error {{an explicitly-defaulted copy assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DIoUtil.java6 * You may obtain a copy of the License at
40 public static void copy(File from, File to, byte[] buf) throws IOException { method in class:IoUtil
55 * Create a copy of an zip file without its empty directories.

Completed in 825 milliseconds

1234567891011>>