/external/ImageMagick/PerlMagick/demo/ |
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 …]
|
D | compose-specials.pl | 56 $clone=$dest->Clone(); 65 $clone=$dest->Clone(); 74 $clone=$dest->Clone(); 83 $clone=$dest->Clone(); 95 $clone=$dest->Clone(); 105 $clone=$dest->Clone(); 115 $clone=$dest->Clone(); 125 $clone=$dest->Clone(); 138 $clone=$dest->Clone(); 149 $clone=$dest->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/libmojo/mojo/public/cpp/bindings/lib/ |
D | clone_equals_util.h | 21 static char Test(decltype(&U::Clone)); 34 T Clone(const T& input); 38 static T Clone(const T& input) { return input.Clone(); } 43 static T Clone(const T& input) { return input; } 48 static base::Optional<T> Clone(const base::Optional<T>& input) { 52 return base::Optional<T>(internal::Clone(*input)); 58 static std::vector<T> Clone(const std::vector<T>& input) { 62 result.push_back(internal::Clone(element)); 70 static std::unordered_map<K, V> Clone(const std::unordered_map<K, V>& input) { 73 result.insert(std::make_pair(internal::Clone(element.first), [all …]
|
D | wtf_clone_equals_util.h | 21 static WTF::Vector<T> Clone(const WTF::Vector<T>& input) { 25 result.append(internal::Clone(element)); 33 static WTF::HashMap<K, V> Clone(const WTF::HashMap<K, V>& input) { 37 result.add(internal::Clone(it->key), internal::Clone(it->value));
|
D | native_struct.cc | 20 NativeStructPtr NativeStruct::Clone() const { in Clone() function in mojo::NativeStruct 22 rv->data = data.Clone(); in Clone()
|
/external/google-tv-pairing-protocol/cpp/ |
D | main.scons | 53 linux_env = root_env.Clone(tools = ['target_platform_linux']) 60 linux_32_env = linux_env.Clone() 69 linux_dbg_32_env = linux_32_env.Clone( 77 linux_opt_32_env = linux_32_env.Clone( 90 linux_64_env = linux_env.Clone() 99 linux_dbg_64_env = linux_64_env.Clone( 108 linux_opt_64_env = linux_64_env.Clone( 121 mac_env = root_env.Clone(tools = ['target_platform_mac']) 144 mac_opt_env = mac_env.Clone( 158 mac_dbg_env = mac_env.Clone( [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/ |
D | MapUnittestProto3.cs | 198 mapInt32Int32_ = other.mapInt32Int32_.Clone(); in TestMap() 199 mapInt64Int64_ = other.mapInt64Int64_.Clone(); in TestMap() 200 mapUint32Uint32_ = other.mapUint32Uint32_.Clone(); in TestMap() 201 mapUint64Uint64_ = other.mapUint64Uint64_.Clone(); in TestMap() 202 mapSint32Sint32_ = other.mapSint32Sint32_.Clone(); in TestMap() 203 mapSint64Sint64_ = other.mapSint64Sint64_.Clone(); in TestMap() 204 mapFixed32Fixed32_ = other.mapFixed32Fixed32_.Clone(); in TestMap() 205 mapFixed64Fixed64_ = other.mapFixed64Fixed64_.Clone(); in TestMap() 206 mapSfixed32Sfixed32_ = other.mapSfixed32Sfixed32_.Clone(); in TestMap() 207 mapSfixed64Sfixed64_ = other.mapSfixed64Sfixed64_.Clone(); in TestMap() [all …]
|
D | UnittestWellKnownTypes.cs | 201 AnyField = other.anyField_ != null ? other.AnyField.Clone() : null; in TestWellKnownTypes() 202 ApiField = other.apiField_ != null ? other.ApiField.Clone() : null; in TestWellKnownTypes() 203 DurationField = other.durationField_ != null ? other.DurationField.Clone() : null; in TestWellKnownTypes() 204 EmptyField = other.emptyField_ != null ? other.EmptyField.Clone() : null; in TestWellKnownTypes() 205 FieldMaskField = other.fieldMaskField_ != null ? other.FieldMaskField.Clone() : null; in TestWellKnownTypes() 206 … SourceContextField = other.sourceContextField_ != null ? other.SourceContextField.Clone() : null; in TestWellKnownTypes() 207 StructField = other.structField_ != null ? other.StructField.Clone() : null; in TestWellKnownTypes() 208 TimestampField = other.timestampField_ != null ? other.TimestampField.Clone() : null; in TestWellKnownTypes() 209 TypeField = other.typeField_ != null ? other.TypeField.Clone() : null; in TestWellKnownTypes() 219 ValueField = other.valueField_ != null ? other.ValueField.Clone() : null; in TestWellKnownTypes() [all …]
|
D | UnittestProto3.cs | 273 …SingleNestedMessage = other.singleNestedMessage_ != null ? other.SingleNestedMessage.Clone() : nul… in TestAllTypes() 274 …SingleForeignMessage = other.singleForeignMessage_ != null ? other.SingleForeignMessage.Clone() : … in TestAllTypes() 275 …SingleImportMessage = other.singleImportMessage_ != null ? other.SingleImportMessage.Clone() : nul… in TestAllTypes() 279 …essage = other.singlePublicImportMessage_ != null ? other.SinglePublicImportMessage.Clone() : null; in TestAllTypes() 280 repeatedInt32_ = other.repeatedInt32_.Clone(); in TestAllTypes() 281 repeatedInt64_ = other.repeatedInt64_.Clone(); in TestAllTypes() 282 repeatedUint32_ = other.repeatedUint32_.Clone(); in TestAllTypes() 283 repeatedUint64_ = other.repeatedUint64_.Clone(); in TestAllTypes() 284 repeatedSint32_ = other.repeatedSint32_.Clone(); in TestAllTypes() 285 repeatedSint64_ = other.repeatedSint64_.Clone(); in TestAllTypes() [all …]
|
D | UnittestIssues.cs | 108 public Issue307 Clone() { in Clone() method in UnitTest.Issues.TestProtos.Issue307 186 public NestedOnce Clone() { in Clone() method in UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce 264 public NestedTwice Clone() { in Clone() method in UnitTest.Issues.TestProtos.Issue307.Types.NestedOnce.Types.NestedTwice 349 values_ = other.values_.Clone(); in NegativeEnumMessage() 350 packedValues_ = other.packedValues_.Clone(); in NegativeEnumMessage() 353 public NegativeEnumMessage Clone() { in Clone() method in UnitTest.Issues.TestProtos.NegativeEnumMessage 493 public DeprecatedChild Clone() { in Clone() method in UnitTest.Issues.TestProtos.DeprecatedChild 568 primitiveArray_ = other.primitiveArray_.Clone(); in DeprecatedFieldsMessage() 569 MessageValue = other.messageValue_ != null ? other.MessageValue.Clone() : null; in DeprecatedFieldsMessage() 570 messageArray_ = other.messageArray_.Clone(); in DeprecatedFieldsMessage() [all …]
|
/external/llvm/unittests/IR/ |
D | InstructionsTest.cpp | 510 std::unique_ptr<CallInst> Clone(cast<CallInst>(Call->clone())); in TEST() local 511 EXPECT_EQ(Call->getTailCallKind(), Clone->getTailCallKind()); in TEST() 520 std::unique_ptr<CallInst> Clone(cast<CallInst>(Call->clone())); in TEST() local 521 EXPECT_TRUE(Clone->onlyReadsMemory()); in TEST() 541 std::unique_ptr<CallInst> Clone(CallInst::Create(Call.get(), NewBundle)); in TEST() local 542 EXPECT_EQ(Call->getNumArgOperands(), Clone->getNumArgOperands()); in TEST() 543 EXPECT_EQ(Call->getArgOperand(0), Clone->getArgOperand(0)); in TEST() 544 EXPECT_EQ(Call->getCallingConv(), Clone->getCallingConv()); in TEST() 545 EXPECT_EQ(Call->getTailCallKind(), Clone->getTailCallKind()); in TEST() 546 EXPECT_TRUE(Clone->hasFnAttr(Attribute::AttrKind::Cold)); in TEST() [all …]
|
/external/libmojo/mojo/public/cpp/bindings/tests/ |
D | equals_unittest.cc | 42 RectPtr r2(r1.Clone()); in TEST_F() 54 RectPairPtr p2(p1.Clone()); in TEST_F() 67 NamedRegionPtr n2(n1.Clone()); in TEST_F() 99 m2.insert("bar", m1.at("foo").Clone()); in TEST_F() 102 m2 = m1.Clone(); in TEST_F() 106 m2 = m1.Clone(); in TEST_F() 114 m2 = m1.Clone(); in TEST_F()
|
/external/pdfium/xfa/fxbarcode/common/reedsolomon/ |
D | BC_ReedSolomonGF256Poly.cpp | 98 CBC_ReedSolomonGF256Poly* CBC_ReedSolomonGF256Poly::Clone(int32_t& e) { in Clone() function in CBC_ReedSolomonGF256Poly 109 return other->Clone(e); in AddOrSubtract() 111 return Clone(e); in AddOrSubtract() 144 return m_field->GetZero()->Clone(e); in Multiply() 171 return m_field->GetZero()->Clone(e); in Multiply() 173 return Clone(e); in Multiply() 196 return m_field->GetZero()->Clone(e); in MultiplyByMonomial() 219 m_field->GetZero()->Clone(e)); in Divide() 222 std::unique_ptr<CBC_ReedSolomonGF256Poly> remainder(Clone(e)); in Divide()
|
/external/protobuf/csharp/src/Google.Protobuf.Conformance/ |
D | Conformance.cs | 255 public ConformanceRequest Clone() { in Clone() method in Conformance.ConformanceRequest 458 public ConformanceResponse Clone() { in Clone() method in Conformance.ConformanceResponse 762 …lNestedMessage = other.optionalNestedMessage_ != null ? other.OptionalNestedMessage.Clone() : null; in TestAllTypes() 763 …reignMessage = other.optionalForeignMessage_ != null ? other.OptionalForeignMessage.Clone() : null; in TestAllTypes() 768 RecursiveMessage = other.recursiveMessage_ != null ? other.RecursiveMessage.Clone() : null; in TestAllTypes() 769 repeatedInt32_ = other.repeatedInt32_.Clone(); in TestAllTypes() 770 repeatedInt64_ = other.repeatedInt64_.Clone(); in TestAllTypes() 771 repeatedUint32_ = other.repeatedUint32_.Clone(); in TestAllTypes() 772 repeatedUint64_ = other.repeatedUint64_.Clone(); in TestAllTypes() 773 repeatedSint32_ = other.repeatedSint32_.Clone(); in TestAllTypes() [all …]
|
/external/llvm/tools/llvm-c-test/ |
D | echo.cpp | 64 LLVMTypeRef Clone(LLVMValueRef Src) { in Clone() function 65 return Clone(LLVMTypeOf(Src)); in Clone() 68 LLVMTypeRef Clone(LLVMTypeRef Src) { in Clone() function 96 Params[i] = Clone(Params[i]); in Clone() 99 LLVMTypeRef FunTy = LLVMFunctionType(Clone(LLVMGetReturnType(Src)), in Clone() 121 Elts.push_back(Clone(LLVMStructGetTypeAtIndex(Src, i))); in Clone() 131 Clone(LLVMGetElementType(Src)), in Clone() 136 Clone(LLVMGetElementType(Src)), in Clone() 141 Clone(LLVMGetElementType(Src)), in Clone() 261 return LLVMConstInt(TypeCloner(M).Clone(Cst), in clone_constant_impl() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 194 file_ = other.file_.Clone(); in FileDescriptorSet() 197 public FileDescriptorSet Clone() { in Clone() method in Google.Protobuf.Reflection.FileDescriptorSet 294 dependency_ = other.dependency_.Clone(); in FileDescriptorProto() 295 publicDependency_ = other.publicDependency_.Clone(); in FileDescriptorProto() 296 weakDependency_ = other.weakDependency_.Clone(); in FileDescriptorProto() 297 messageType_ = other.messageType_.Clone(); in FileDescriptorProto() 298 enumType_ = other.enumType_.Clone(); in FileDescriptorProto() 299 service_ = other.service_.Clone(); in FileDescriptorProto() 300 extension_ = other.extension_.Clone(); in FileDescriptorProto() 301 Options = other.options_ != null ? other.Options.Clone() : null; in FileDescriptorProto() [all …]
|
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/ |
D | wrapper_union_class_template_definition.tmpl | 2 {{union.name}}Ptr {{union.name}}::Clone() const { 11 rv->set_{{field.name}}(mojo::internal::Clone(*data_.{{field.name}})); 13 rv->set_{{field.name}}(mojo::internal::Clone(data_.{{field.name}}));
|
/external/e2fsprogs/tests/f_dup4/ |
D | expect.1 | 22 Clone multiply-claimed blocks? yes 29 Clone multiply-claimed blocks? yes 36 Clone multiply-claimed blocks? yes 50 Clone multiply-claimed blocks? yes 57 Clone multiply-claimed blocks? yes 64 Clone multiply-claimed blocks? yes
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Type.cs | 116 fields_ = other.fields_.Clone(); in Type() 117 oneofs_ = other.oneofs_.Clone(); in Type() 118 options_ = other.options_.Clone(); in Type() 119 SourceContext = other.sourceContext_ != null ? other.SourceContext.Clone() : null; in Type() 123 public Type Clone() { in Clone() method in Google.Protobuf.WellKnownTypes.Type 363 options_ = other.options_.Clone(); in Field() 368 public Field Clone() { in Clone() method in Google.Protobuf.WellKnownTypes.Field 841 enumvalue_ = other.enumvalue_.Clone(); in Enum() 842 options_ = other.options_.Clone(); in Enum() 843 SourceContext = other.sourceContext_ != null ? other.SourceContext.Clone() : null; in Enum() [all …]
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | struct_ptr.h | 79 StructPtr Clone() const { return is_null() ? StructPtr() : ptr_->Clone(); } in Clone() function 169 InlinedStructPtr Clone() const { in Clone() function 170 return is_null() ? InlinedStructPtr() : value_.Clone(); in Clone()
|
/external/e2fsprogs/tests/f_dup3/ |
D | expect.1 | 16 Clone multiply-claimed blocks? yes 20 Clone multiply-claimed blocks? yes 24 Clone multiply-claimed blocks? yes
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/ |
D | pump.py | 125 def Clone(self): member in Cursor 156 def Clone(self): member in Token 159 return Token(self.start.Clone(), self.end.Clone(), self.value, 189 start = cursor.Clone() 298 start = pos.Clone() 589 def Clone(self): member in Env 660 RunAtomicCode(env.Clone(), node.atomic_code, result) 676 new_env = env.Clone() 686 RunCode(env.Clone(), node.then_branch, output) 688 RunCode(env.Clone(), node.else_branch, output) [all …]
|
/external/v8/testing/gtest/scripts/ |
D | pump.py | 125 def Clone(self): member in Cursor 156 def Clone(self): member in Token 159 return Token(self.start.Clone(), self.end.Clone(), self.value, 189 start = cursor.Clone() 298 start = pos.Clone() 589 def Clone(self): member in Env 660 RunAtomicCode(env.Clone(), node.atomic_code, result) 676 new_env = env.Clone() 686 RunCode(env.Clone(), node.then_branch, output) 688 RunCode(env.Clone(), node.else_branch, output) [all …]
|
/external/googletest/googletest/scripts/ |
D | pump.py | 125 def Clone(self): member in Cursor 156 def Clone(self): member in Token 159 return Token(self.start.Clone(), self.end.Clone(), self.value, 189 start = cursor.Clone() 298 start = pos.Clone() 589 def Clone(self): member in Env 660 RunAtomicCode(env.Clone(), node.atomic_code, result) 676 new_env = env.Clone() 686 RunCode(env.Clone(), node.then_branch, output) 688 RunCode(env.Clone(), node.else_branch, output) [all …]
|