/external/caliper/examples/src/main/java/examples/ |
D | CopyArrayBenchmark.java | 50 @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/selinux/libsepol/cil/src/ |
D | cil_copy_ast.c | 49 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/clang/test/CodeGenObjC/ |
D | category-super-class-meth.m | 4 -(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/guava/guava-testlib/test/com/google/common/collect/testing/ |
D | SafeTreeSetTest.java | 86 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/test/com/google/common/collect/ |
D | ImmutableBiMapTest.java | 357 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
|
D | ImmutableSortedMapTest.java | 486 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
|
D | LenientSerializableTester.java | 48 Set<E> copy = reserialize(original); in reserializeAndAssertLenient() local 56 Multiset<E> copy = reserialize(original); in reserializeAndAssertLenient() local
|
D | TreeMultimapExplicitTest.java | 105 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
|
D | ImmutableSortedSetTest.java | 255 SortedSet<String> copy = SerializableTester.reserialize(set); in testEmpty_serialization() local 303 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testSingle_serialization() local 417 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testOf_serialization() local 515 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testExplicitEmpty_serialization() local 525 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testExplicit_serialization() local 545 SortedSet<String> copy = copyOf(subset); in testCopyOf_subSet() local 552 SortedSet<String> copy = copyOf(headset); in testCopyOf_headSet() local 559 SortedSet<String> copy = copyOf(tailset); in testCopyOf_tailSet() local 755 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testDifferentComparator_serialization() local 868 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); in testAsListReturnTypeAndSerialization() local [all …]
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
D | ComparatorDelegationOverheadBenchmark.java | 53 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/mesa3d/src/mesa/vbo/ |
D | vbo_split_copy.c | 117 check_flush( struct copy_context *copy ) in check_flush() 172 flush( struct copy_context *copy ) in flush() 227 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) in begin() 242 elt(struct copy_context *copy, GLuint elt_idx) in elt() 308 end( struct copy_context *copy, GLboolean end_flag ) in end() 324 replay_elts( struct copy_context *copy ) in replay_elts() 429 replay_init( struct copy_context *copy ) in replay_init() 560 replay_finish( struct copy_context *copy ) in replay_finish() 599 struct copy_context copy; in vbo_split_copy() local
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
D | copy.hpp | 60 …__global__ void copy(const SrcPtr src, GlobPtr<DstType> dst, const MaskPtr mask, const int rows, c… in copy() function 72 …__host__ void copy(const SrcPtr& src, const GlobPtr<DstType>& dst, const MaskPtr& mask, int rows, … in copy() function 87 … __device__ static void copy(const SrcPtrTuple& src, DstPtrTuple& dst, const int y, const int x) in copy() function 99 …__device__ __forceinline__ static void copy(const SrcPtrTuple&, DstPtrTuple&, const int, const int) in copy() function
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedMapTest.java | 409 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
|
D | ImmutableBiMapTest.java | 316 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/ |
D | ListSubListTester.java | 222 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/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | ListSubListTester.java | 226 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
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
D | SecondMoment.java | 105 public SecondMoment copy() { in copy() method in SecondMoment 119 public static void copy(SecondMoment source, SecondMoment dest) { in copy() method in SecondMoment
|
D | ThirdMoment.java | 119 public ThirdMoment copy() { in copy() method in ThirdMoment 133 public static void copy(ThirdMoment source, ThirdMoment dest) { in copy() method in ThirdMoment
|
D | FourthMoment.java | 124 public FourthMoment copy() { in copy() method in FourthMoment 138 public static void copy(FourthMoment source, FourthMoment dest) { in copy() method in FourthMoment
|
D | FirstMoment.java | 139 public FirstMoment copy() { in copy() method in FirstMoment 153 public static void copy(FirstMoment source, FirstMoment dest) { in copy() method in FirstMoment
|
/external/v8/src/compiler/ |
D | osr.cc | 83 Node* copy = mapping->at(orig->id()); in PeelOuterLoopsForOsr() local 111 Node* copy = mapping->at(orig->id()); in PeelOuterLoopsForOsr() local 171 Node* copy = mapping->at(node->id()); in PeelOuterLoopsForOsr() local 189 Node* copy = mapping->at(node->id()); in PeelOuterLoopsForOsr() local
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
D | Min.java | 144 public Min copy() { in copy() method in Min 158 public static void copy(Min source, Min dest) { in copy() method in Min
|
D | Max.java | 144 public Max copy() { in copy() method in Max 158 public static void copy(Max source, Max dest) { in copy() method in Max
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/ |
D | SumOfSquares.java | 134 public SumOfSquares copy() { in copy() method in SumOfSquares 148 public static void copy(SumOfSquares source, SumOfSquares dest) { in copy() method in SumOfSquares
|
D | SumOfLogs.java | 146 public SumOfLogs copy() { in copy() method in SumOfLogs 160 public static void copy(SumOfLogs source, SumOfLogs dest) { in copy() method in SumOfLogs
|