Home
last modified time | relevance | path

Searched defs:copy (Results 1 – 25 of 175) sorted by relevance

1234567

/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dcategory-super-class-meth.m4 -(id)copy; method
5 +(id)copy; class
11 -(id)copy { return [super copy]; } // ok: instance method in class method
12 +(id)copy { return [super copy]; } // ok: class method in class class
20 -(id)copy { return [super copy]; } // ok: instance method in category method in Category
21 +(id)copy { return [super copy]; } // BAD: class method in category class in Category
H A Dobjc-read-weak-byref.m7 - copy; method
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/array/array.cons/
H A Dimplicit_copy.pass.cpp42 Array copy = array; in tests() local
50 Array copy = array; (void)copy; in tests() local
57 Array copy = array; in tests() local
66 Array copy = array; (void)copy; in tests() local
73 Array copy = array; in tests() local
81 Array copy = array; (void)copy; in tests() local
90 Array copy = array; in tests() local
97 Array copy = array; in tests() local
104 Array copy = array; in tests() local
/llvm-project-15.0.7/clang/test/Lexer/
H A Ddigraph.c17 void copy(char d<::>, const char s<::>, int len) in copy() function
33 void copy() <% %> function
/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.general/
H A Dignore.pass.cpp28 auto copy = std::ignore; in test_ignore_constexpr() local
33 auto copy = std::ignore; in test_ignore_constexpr() local
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/iterator/
H A Dincrement.pass.cpp54 auto copy = it++; in test() local
78 auto copy = it++; in test() local
100 auto copy = it++; in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
42 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
42 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/associative/multiset/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
40 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/map.modifiers/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
42 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/associative/set/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
40 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.set/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
40 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Dextract_key.pass.cpp30 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
44 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/libcxx/test/std/containers/unord/unord.multiset/
H A Dextract_key.pass.cpp28 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
40 for (KeyTypeIter copy = first; copy != last; ++copy) in test() local
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dhomogeneous-aggregates.cpp136 Pod copy(Pod *x) { return *x; } // MSVC: ldp d0,d1,[x0], Clang: ldp d0,d1,[x0] in copy() function
138 NotCXX14Aggregate copy(NotCXX14Aggregate *x) { return *x; } // MSVC: stp x8,x9,[x0], Clang: str q0,… in copy() function
140 NotPod copy(NotPod *x) { return *x; } in copy() function
142 HasEmptyBase copy(HasEmptyBase *x) { return *x; } in copy() function
144 HasPodBase copy(HasPodBase *x) { return *x; } in copy() function
/llvm-project-15.0.7/llvm/benchmarks/
H A DDummyYAML.cpp7 std::string copy(x); in BM_YAMLDummyIsNumeric() local
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/vector/vector.cons/
H A Dcopy.move_only.verify.cpp20 …std::vector<MoveOnly> copy = v; // expected-error-re@* {{{{(no matching function for call to 'cons… in main() local
/llvm-project-15.0.7/clang/test/Import/array-init-loop-expr/Inputs/
H A DS.cpp7 S copy = s; in f() local
/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Posix/
H A Dstrndup_oob_test2.cpp17 char *copy = strndup(kChars, 3); in main() local
H A Dstrndup_oob_test.cpp17 char *copy = strndup(kString, 2); in main() local
/llvm-project-15.0.7/lld/test/ELF/
H A Dmap-file-copy.s46 copy: label
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Dstrndup.cpp17 char *copy = strndup(kString, 4); // BOOM in main() local
/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/
H A Dstrdup_oob_test.cpp21 char *copy = strdup(kString); in main() local
/llvm-project-15.0.7/clang/test/CodeGen/
H A D2007-04-24-VolatileStructCopy.c8 void copy(volatile struct foo *p, struct foo *q) { in copy() function
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dblock-as-object.m5 - copy; method

1234567