/external/ImageMagick/PerlMagick/demo/ |
D | compose-specials.pl | 51 my $clone; 56 $clone=$dest->Clone(); 57 $clone->Label('Over\n(normal compose)'); 58 $clone->Composite( 63 push(@$results, $clone); 65 $clone=$dest->Clone(); 66 $clone->Label('Multiply\n(add black)'); 67 $clone->Composite( 72 push(@$results, $clone); 74 $clone=$dest->Clone(); [all …]
|
D | demo.pl | 34 $example=$model->Clone(); 40 $example=$model->Clone(); 46 $example=$model->Clone(); 52 $example=$model->Clone(); 58 $example=$model->Clone(); 64 $example=$model->Clone(); 71 $example=$model->Clone(); 77 $example=$model->Clone(); 83 $example=$model->Clone(); 89 $example=$model->Clone(); [all …]
|
/external/syzkaller/pkg/ast/ |
D | clone.go | 6 func (desc *Description) Clone() *Description { func 9 desc1.Nodes = append(desc1.Nodes, n.Clone()) 14 func (n *NewLine) Clone() Node { func 20 func (n *Comment) Clone() Node { func 27 func (n *Include) Clone() Node { func 30 File: n.File.Clone().(*String), 34 func (n *Incdir) Clone() Node { func 37 Dir: n.Dir.Clone().(*String), 41 func (n *Define) Clone() Node { func 44 Name: n.Name.Clone().(*Ident), [all …]
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_clone.cpp | 31 ir_rvalue::clone(void *mem_ctx, struct hash_table *) const in clone() function in ir_rvalue 41 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable 63 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone() 67 this->constant_initializer->clone(mem_ctx, ht); in clone() 78 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle 80 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone() 84 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return 89 new_value = this->value->clone(mem_ctx, ht); in clone() 95 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard 100 new_condition = this->condition->clone(mem_ctx, ht); in clone() [all …]
|
/external/ImageMagick/www/source/ |
D | examples.pl | 34 $example=$model->Clone(); 40 $example=$model->Clone(); 46 $example=$model->Clone(); 52 $example=$model->Clone(); 58 $example=$model->Clone(); 64 $example=$model->Clone(); 71 $example=$model->Clone(); 77 $example=$model->Clone(); 83 $example=$model->Clone(); 89 $example=$model->Clone(); [all …]
|
/external/testng/src/main/java/org/testng/internal/ |
D | TestNGMethod.java | 173 * @see org.testng.internal.BaseTestMethod#clone() 176 public BaseTestMethod clone() { in clone() method in TestNGMethod 177 TestNGMethod clone= new TestNGMethod(getMethod(), getAnnotationFinder(), false, getXmlTest(), in clone() local 181 testClass.setBeforeTestMethods(clone(tc.getBeforeTestMethods())); in clone() 182 testClass.setAfterTestMethod(clone(tc.getAfterTestMethods())); in clone() 183 clone.m_testClass= testClass; in clone() 184 clone.setDate(getDate()); in clone() 185 clone.setGroups(getGroups()); in clone() 186 clone.setGroupsDependedUpon(getGroupsDependedUpon(), Collections.<String>emptyList()); in clone() 187 clone.setMethodsDependedUpon(getMethodsDependedUpon()); in clone() [all …]
|
/external/curl/lib/ |
D | dotdot.c | 56 char *clone; in Curl_dedotdotify() local 68 clone = strdup(input); in Curl_dedotdotify() 69 if(!clone) { in Curl_dedotdotify() 73 orgclone = clone; in Curl_dedotdotify() 76 if(!*clone) { in Curl_dedotdotify() 79 return clone; in Curl_dedotdotify() 87 queryp = strchr(clone, '?'); in Curl_dedotdotify() 96 if(!strncmp("./", clone, 2)) { in Curl_dedotdotify() 97 clone += 2; in Curl_dedotdotify() 100 else if(!strncmp("../", clone, 3)) { in Curl_dedotdotify() [all …]
|
/external/ltp/runtest/ |
D | containers | 19 mqns_01_clone mqns_01 -clone 21 mqns_02_clone mqns_02 -clone 23 mqns_03_clone mqns_03 -clone 25 mqns_04_clone mqns_04 -clone 47 shmnstest_clone shmnstest clone 50 shmem_2nstest_clone shmem_2nstest clone 54 mesgq_nstest_clone mesgq_nstest clone 58 sem_nstest_clone sem_nstest clone 61 semtest_2ns_clone semtest_2ns clone 70 utstest_clone_1 utstest clone 1 [all …]
|
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/ |
D | FieldData.java | 191 public final FieldData clone() { in clone() method in FieldData 192 FieldData clone = new FieldData(); in clone() local 194 clone.cachedExtension = cachedExtension; in clone() 196 clone.unknownFieldData = null; in clone() 198 clone.unknownFieldData.addAll(unknownFieldData); in clone() 201 // Whether we need to deep clone value depends on its type. Primitive reference types in clone() 202 // (e.g. Integer, Long etc.) are ok, since they're immutable. We need to clone arrays in clone() 207 clone.value = ((MessageNano) value).clone(); in clone() 209 clone.value = ((byte[]) value).clone(); in clone() 213 clone.value = cloneArray; in clone() [all …]
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | clone_traits.h | 20 static char Test(decltype(&U::Clone)); 33 T Clone(const T& input); 37 static T Clone(const T& input) { return input.Clone(); } 42 static T Clone(const T& input) { return input; } 47 static base::Optional<T> Clone(const base::Optional<T>& input) { 51 return base::Optional<T>(mojo::Clone(*input)); 57 static std::vector<T> Clone(const std::vector<T>& input) { 61 result.push_back(mojo::Clone(element)); 69 static base::flat_map<K, V> Clone(const base::flat_map<K, V>& input) { 72 result.insert(std::make_pair(mojo::Clone(element.first), [all …]
|
/external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/ |
D | Cloning.cpp | 27 T *clone(T *V1) { in clone() function in CloneInstruction 28 Value *V2 = V1->clone(); in clone() 58 BinaryOperator *AddClone = this->clone(Add); in TEST_F() 59 BinaryOperator *SubClone = this->clone(Sub); in TEST_F() 60 BinaryOperator *MulClone = this->clone(Mul); in TEST_F() 75 AddClone = this->clone(Add); in TEST_F() 76 SubClone = this->clone(Sub); in TEST_F() 77 MulClone = this->clone(Mul); in TEST_F() 92 AddClone = this->clone(Add); in TEST_F() 93 SubClone = this->clone(Sub); in TEST_F() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | AxesWalker.java | 87 public Object clone() throws CloneNotSupportedException in clone() method in AxesWalker 91 AxesWalker clone = (AxesWalker) super.clone(); in clone() local 93 //clone.setCurrentNode(clone.m_root); in clone() 95 // clone.m_isFresh = true; in clone() 97 return clone; in clone() 101 * Do a deep clone of this walker, including next and previous walkers. 102 * If the this AxesWalker is on the clone list, don't clone but 106 * iterator to which this clone will be added. 110 * @return non-null clone, which may be a new clone, or may be a clone 116 AxesWalker clone = findClone(this, cloneList); in cloneDeep() local [all …]
|
D | ReverseAxesWalker.java | 138 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getProximityPosition() local 140 clone.setRoot(this.getRoot()); in getProximityPosition() 142 clone.setPredicateCount(predicateIndex); in getProximityPosition() 144 clone.setPrevWalker(null); in getProximityPosition() 145 clone.setNextWalker(null); in getProximityPosition() 146 wi().setLastUsedWalker(clone); in getProximityPosition() 152 while (DTM.NULL != (next = clone.nextNode())) in getProximityPosition() 201 ReverseAxesWalker clone = (ReverseAxesWalker) this.clone(); in getLastPos() local 203 clone.setRoot(this.getRoot()); in getLastPos() 205 clone.setPredicateCount(m_predicateIndex); in getLastPos() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | function.cpp | 26 Function* Function::Clone(IRContext* ctx) const { in Clone() function in spvtools::opt::Function 27 Function* clone = in Clone() local 28 new Function(std::unique_ptr<Instruction>(DefInst().Clone(ctx))); in Clone() 29 clone->params_.reserve(params_.size()); in Clone() 31 [clone, ctx](const Instruction* inst) { in Clone() 32 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 36 clone->blocks_.reserve(blocks_.size()); in Clone() 38 std::unique_ptr<BasicBlock> bb(b->Clone(ctx)); in Clone() 39 bb->SetParent(clone); in Clone() 40 clone->AddBasicBlock(std::move(bb)); in Clone() [all …]
|
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DirectoryEntryTest.groovy | 34 def clone = entry.cloneWithNewPath(NEW_PATH) 36 assert !clone.is(entry) 37 assert clone.path == NEW_PATH 38 assert clone.lastModified == LAST_MODIFIED 39 assert clone.owner == USER 40 assert clone.group == GROUP 41 assert clone.permissions == PERMISSIONS 42 assert clone.size == 0 43 assert clone.directory
|