Home
last modified time | relevance | path

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

12345678910>>...30

/external/caliper/examples/src/main/java/examples/
DCopyArrayBenchmark.java50 @Override Object[] copy(Object[] array) { in copy() method
53 @Override boolean[] copy(boolean[] array) { in copy() method
56 @Override byte[] copy(byte[] array) { in copy() method
59 @Override char[] copy(char[] array) { in copy() method
62 @Override double[] copy(double[] array) { in copy() method
65 @Override float[] copy(float[] array) { in copy() method
68 @Override int[] copy(int[] array) { in copy() method
71 @Override long[] copy(long[] array) { in copy() method
74 @Override short[] copy(short[] array) { in copy() method
79 @Override Object[] copy(Object[] array) { in copy() method
[all …]
/external/clang/test/CodeGenObjC/
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
/external/selinux/libsepol/cil/src/
Dcil_copy_ast.c49 void cil_copy_list(struct cil_list *data, struct cil_list **copy) in cil_copy_list()
86 int cil_copy_node(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__… in cil_copy_node()
98 int cil_copy_block(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *sy… in cil_copy_block()
116 int cil_copy_blockabstract(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __at… in cil_copy_blockabstract()
130 int cil_copy_blockinherit(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __att… in cil_copy_blockinherit()
145 int cil_copy_policycap(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t… in cil_copy_policycap()
163 int cil_copy_perm(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *sym… in cil_copy_perm()
216 int cil_copy_classmapping(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __att… in cil_copy_classmapping()
233 int cil_copy_class(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *sy… in cil_copy_class()
255 int cil_copy_classorder(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attri… in cil_copy_classorder()
[all …]
/external/ImageMagick/Magick++/lib/
DDrawable.cpp74 Magick::DrawableBase* Magick::DrawableBase::copy() const in copy() function in Magick::DrawableBase
231 Magick::DrawableBase* Magick::DrawableAffine::copy() const in copy() function in Magick::DrawableAffine
245 Magick::DrawableBase* Magick::DrawableAlpha::copy() const in copy() function in Magick::DrawableAlpha
258 Magick::DrawableBase* Magick::DrawableArc::copy() const in copy() function in Magick::DrawableArc
300 Magick::DrawableBase* Magick::DrawableBezier::copy() const in copy() function in Magick::DrawableBezier
349 Magick::DrawableBase* Magick::DrawableBorderColor::copy() const in copy() function in Magick::DrawableBorderColor
381 Magick::DrawableBase* Magick::DrawableClipRule::copy() const in copy() function in Magick::DrawableClipRule
413 Magick::DrawableBase* Magick::DrawableClipUnits::copy() const in copy() function in Magick::DrawableClipUnits
432 Magick::DrawableBase* Magick::DrawablePopClipPath::copy() const in copy() function in Magick::DrawablePopClipPath
457 Magick::DrawableBase* Magick::DrawablePushClipPath::copy() const in copy() function in Magick::DrawablePushClipPath
[all …]
/external/guava/guava-testlib/test/com/google/common/collect/testing/
DSafeTreeSetTest.java86 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testEmpty_serialization() local
94 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testSingle_serialization() local
104 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testSeveral_serialization() local
/external/guava/guava-tests/benchmark/com/google/common/collect/
DComparatorDelegationOverheadBenchmark.java53 Integer[] copy = inputArrays[i & 0xFF].clone(); in arraysSortNoComparator() local
63 Integer[] copy = inputArrays[i & 0xFF].clone(); in arraysSortOrderingNatural() local
80 Integer[] copy = inputArrays[i & 0xFF].clone(); in arraysSortOrderingFromNatural() local
/external/libcxx/test/std/utilities/tuple/tuple.general/
Dignore.pass.cpp29 auto copy = std::ignore; in test_ignore_constexpr() local
34 auto copy = std::ignore; in test_ignore_constexpr() local
/external/guava/guava-tests/test/com/google/common/collect/
DLenientSerializableTester.java48 Set<E> copy = reserialize(original); in reserializeAndAssertLenient() local
56 Multiset<E> copy = reserialize(original); in reserializeAndAssertLenient() local
DImmutableBiMapTest.java357 ImmutableBiMap<String, Integer> copy in testCopyOfEmptyMap() local
359 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
361 assertSame(ImmutableBiMap.of(), copy); in testCopyOfEmptyMap() local
365 ImmutableBiMap<String, Integer> copy in testCopyOfSingletonMap() local
377 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); in testCopyOf() local
475 ImmutableBiMap<String, Integer> copy = in testSerialization() local
486 ImmutableBiMap<String, Integer> copy = in testInverseSerialization() local
DTreeMultimapExplicitTest.java105 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); in testMultimapCreateFromTreeMultimap() local
189 TreeMultimap<String, Integer> copy = in testMultimapComparators() local
212 TreeMultimap<String, Integer> copy in testExplicitComparatorSerialization() local
DImmutableSortedMapTest.java486 ImmutableSortedMap<String, Integer> copy in testCopyOfEmptyMap() local
488 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
494 ImmutableSortedMap<String, Integer> copy in testCopyOfSingletonMap() local
507 ImmutableSortedMap<String, Integer> copy in testCopyOf() local
521 ImmutableSortedMap<String, Integer> copy in testCopyOfExplicitComparator() local
532 ImmutableSortedMap<String, Integer> copy in testCopyOfImmutableSortedSetDifferentComparator() local
545 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedNatural() local
559 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedExplicit() local
606 Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original); in testImmutableMapCopyOfImmutableSortedMap() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DSecondMoment.java105 public SecondMoment copy() { in copy() method in SecondMoment
119 public static void copy(SecondMoment source, SecondMoment dest) { in copy() method in SecondMoment
DThirdMoment.java119 public ThirdMoment copy() { in copy() method in ThirdMoment
133 public static void copy(ThirdMoment source, ThirdMoment dest) { in copy() method in ThirdMoment
DFourthMoment.java124 public FourthMoment copy() { in copy() method in FourthMoment
138 public static void copy(FourthMoment source, FourthMoment dest) { in copy() method in FourthMoment
DFirstMoment.java139 public FirstMoment copy() { in copy() method in FirstMoment
153 public static void copy(FirstMoment source, FirstMoment dest) { in copy() method in FirstMoment
/external/mesa3d/src/mesa/vbo/
Dvbo_split_copy.c119 check_flush( struct copy_context *copy ) in check_flush()
174 flush( struct copy_context *copy ) in flush()
229 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) in begin()
244 elt(struct copy_context *copy, GLuint elt_idx) in elt()
310 end( struct copy_context *copy, GLboolean end_flag ) in end()
326 replay_elts( struct copy_context *copy ) in replay_elts()
431 replay_init( struct copy_context *copy ) in replay_init()
564 replay_finish( struct copy_context *copy ) in replay_finish()
603 struct copy_context copy; in vbo_split_copy() local
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DImmutableSortedMapTest.java409 ImmutableSortedMap<String, Integer> copy in testCopyOfEmptyMap() local
411 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
417 ImmutableSortedMap<String, Integer> copy in testCopyOfSingletonMap() local
430 ImmutableSortedMap<String, Integer> copy in testCopyOf() local
444 ImmutableSortedMap<String, Integer> copy in testCopyOfExplicitComparator() local
455 ImmutableSortedMap<String, Integer> copy in testCopyOfImmutableSortedSetDifferentComparator() local
468 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedNatural() local
482 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedExplicit() local
529 Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original); in testImmutableMapCopyOfImmutableSortedMap() local
DImmutableBiMapTest.java316 ImmutableBiMap<String, Integer> copy in testCopyOfEmptyMap() local
318 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
320 assertSame(ImmutableBiMap.of(), copy); in testCopyOfEmptyMap() local
324 ImmutableBiMap<String, Integer> copy in testCopyOfSingletonMap() local
336 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); in testCopyOf() local
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
DListSubListTester.java222 List<E> copy = list.subList(0, size); in testSubList_get() local
246 List<E> copy = list.subList(0, size); in testSubList_contains() local
264 List<E> copy = list.subList(0, size); in testSubList_indexOf() local
290 List<E> copy = list.subList(0, size); in testSubList_lastIndexOf() local
/external/protobuf/src/google/protobuf/stubs/
Dstatusor_test.cc93 StatusOr<int> copy(original); in TEST() local
100 StatusOr<int> copy(original); in TEST() local
107 StatusOr<double> copy(original); in TEST() local
114 StatusOr<double> copy(original); in TEST() local
192 StatusOr<const int*> copy(original); in TEST() local
199 StatusOr<int*> copy(original); in TEST() local
206 StatusOr<Base2*> copy(original); in TEST() local
214 StatusOr<Base2*> copy(original); in TEST() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
DSumOfSquares.java134 public SumOfSquares copy() { in copy() method in SumOfSquares
148 public static void copy(SumOfSquares source, SumOfSquares dest) { in copy() method in SumOfSquares
DSumOfLogs.java146 public SumOfLogs copy() { in copy() method in SumOfLogs
160 public static void copy(SumOfLogs source, SumOfLogs dest) { in copy() method in SumOfLogs
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DMin.java144 public Min copy() { in copy() method in Min
158 public static void copy(Min source, Min dest) { in copy() method in Min
DMax.java144 public Max copy() { in copy() method in Max
158 public static void copy(Max source, Max dest) { in copy() method in Max
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListSubListTester.java226 List<E> copy = list.subList(0, size); in testSubList_get() local
250 List<E> copy = list.subList(0, size); in testSubList_contains() local
268 List<E> copy = list.subList(0, size); in testSubList_indexOf() local
294 List<E> copy = list.subList(0, size); in testSubList_lastIndexOf() local

12345678910>>...30