Home
last modified time | relevance | path

Searched refs:Clone (Results 1 – 25 of 616) sorted by relevance

12345678910>>...25

/external/ImageMagick/PerlMagick/demo/
Ddemo.pl34 $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 …]
Dcompose-specials.pl56 $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/
Dexamples.pl34 $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/
Dclone.go6 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/libchrome/mojo/public/cpp/bindings/
Dclone_traits.h20 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/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
DMapUnittestProto3.cs198 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 …]
DUnittestWellKnownTypes.cs201 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 …]
DUnittestProto3.cs273 …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 …]
/external/llvm/unittests/IR/
DInstructionsTest.cpp510 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/pdfium/fxbarcode/common/reedsolomon/
DBC_ReedSolomonGF256Poly.cpp106 std::unique_ptr<CBC_ReedSolomonGF256Poly> CBC_ReedSolomonGF256Poly::Clone() in Clone() function in CBC_ReedSolomonGF256Poly
117 return other->Clone(); in AddOrSubtract()
119 return Clone(); in AddOrSubtract()
144 return m_field->GetZero()->Clone(); in Multiply()
167 return m_field->GetZero()->Clone(); in Multiply()
169 return Clone(); in Multiply()
188 return m_field->GetZero()->Clone(); in MultiplyByMonomial()
206 auto quotient = m_field->GetZero()->Clone(); in Divide()
209 auto remainder = Clone(); in Divide()
/external/libchrome/mojo/public/cpp/bindings/lib/
Dwtf_clone_equals_util.h20 static WTF::Vector<T> Clone(const WTF::Vector<T>& input) {
24 result.push_back(mojo::Clone(element));
32 static WTF::HashMap<K, V> Clone(const WTF::HashMap<K, V>& input) {
35 result.insert(mojo::Clone(element.key), mojo::Clone(element.value));
/external/protobuf/csharp/src/Google.Protobuf.Conformance/
DConformance.cs255 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/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DMessages.cs123 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in BoolValue()
127 public BoolValue Clone() { in Clone() method in Grpc.Testing.BoolValue
259 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Payload()
263 public Payload Clone() { in Clone() method in Grpc.Testing.Payload
426 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in EchoStatus()
430 public EchoStatus Clone() { in Clone() method in Grpc.Testing.EchoStatus
586 payload_ = other.payload_ != null ? other.payload_.Clone() : null; in SimpleRequest()
589 …responseCompressed_ = other.responseCompressed_ != null ? other.responseCompressed_.Clone() : null; in SimpleRequest()
590 responseStatus_ = other.responseStatus_ != null ? other.responseStatus_.Clone() : null; in SimpleRequest()
591 expectCompressed_ = other.expectCompressed_ != null ? other.expectCompressed_.Clone() : null; in SimpleRequest()
[all …]
DControl.cs196 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in PoissonParams()
200 public PoissonParams Clone() { in Clone() method in Grpc.Testing.PoissonParams
331 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in ClosedLoopParams()
335 public ClosedLoopParams Clone() { in Clone() method in Grpc.Testing.ClosedLoopParams
434 ClosedLoop = other.ClosedLoop.Clone(); in LoadParams()
437 Poisson = other.Poisson.Clone(); in LoadParams()
441 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in LoadParams()
445 public LoadParams Clone() { in Clone() method in Grpc.Testing.LoadParams
642 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in SecurityParams()
646 public SecurityParams Clone() { in Clone() method in Grpc.Testing.SecurityParams
[all …]
DPayloads.cs76 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in ByteBufferParams()
80 public ByteBufferParams Clone() { in Clone() method in Grpc.Testing.ByteBufferParams
233 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in SimpleProtoParams()
237 public SimpleProtoParams Clone() { in Clone() method in Grpc.Testing.SimpleProtoParams
392 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in ComplexProtoParams()
396 public ComplexProtoParams Clone() { in Clone() method in Grpc.Testing.ComplexProtoParams
495 BytebufParams = other.BytebufParams.Clone(); in PayloadConfig()
498 SimpleParams = other.SimpleParams.Clone(); in PayloadConfig()
501 ComplexParams = other.ComplexParams.Clone(); in PayloadConfig()
505 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in PayloadConfig()
[all …]
/external/llvm/tools/llvm-c-test/
Decho.cpp64 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/deqp-deps/SPIRV-Tools/source/opt/
Dfunction.cpp26 Function* Function::Clone(IRContext* ctx) const { in Clone() function in spvtools::opt::Function
28 new Function(std::unique_ptr<Instruction>(DefInst().Clone(ctx))); in Clone()
32 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone()
38 std::unique_ptr<BasicBlock> bb(b->Clone(ctx)); in Clone()
43 clone->SetFunctionEnd(std::unique_ptr<Instruction>(EndInst()->Clone(ctx))); in Clone()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
Decho.cpp64 LLVMTypeRef Clone(LLVMValueRef Src) { in Clone() function
65 return Clone(LLVMTypeOf(Src)); in Clone()
68 LLVMTypeRef Clone(LLVMTypeRef Src) { in Clone() function
97 Params[i] = Clone(Params[i]); in Clone()
100 LLVMTypeRef FunTy = LLVMFunctionType(Clone(LLVMGetReturnType(Src)), in Clone()
122 Elts.push_back(Clone(LLVMStructGetTypeAtIndex(Src, i))); in Clone()
132 Clone(LLVMGetElementType(Src)), in Clone()
137 Clone(LLVMGetElementType(Src)), in Clone()
142 Clone(LLVMGetElementType(Src)), in Clone()
273 return LLVMConstInt(TypeCloner(M).Clone(Cst), in clone_constant_impl()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfunction.cpp26 Function* Function::Clone(IRContext* ctx) const { in Clone() function in spvtools::opt::Function
28 new Function(std::unique_ptr<Instruction>(DefInst().Clone(ctx))); in Clone()
32 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone()
38 std::unique_ptr<BasicBlock> bb(b->Clone(ctx)); in Clone()
43 clone->SetFunctionEnd(std::unique_ptr<Instruction>(EndInst()->Clone(ctx))); in Clone()
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
DRouteGuide.cs90 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Point()
94 public Point Clone() { in Clone() method in Routeguide.Point
249 lo_ = other.lo_ != null ? other.lo_.Clone() : null; in Rectangle()
250 hi_ = other.hi_ != null ? other.hi_.Clone() : null; in Rectangle()
251 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Rectangle()
255 public Rectangle Clone() { in Clone() method in Routeguide.Rectangle
430 location_ = other.location_ != null ? other.location_.Clone() : null; in Feature()
431 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Feature()
435 public Feature Clone() { in Clone() method in Routeguide.Feature
601 location_ = other.location_ != null ? other.location_.Clone() : null; in RouteNote()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DInstructionsTest.cpp522 std::unique_ptr<CallInst> Clone(cast<CallInst>(Call->clone())); in TEST() local
523 EXPECT_EQ(Call->getTailCallKind(), Clone->getTailCallKind()); in TEST()
533 std::unique_ptr<CallInst> Clone(cast<CallInst>(Call->clone())); in TEST() local
534 EXPECT_TRUE(Clone->onlyReadsMemory()); in TEST()
554 std::unique_ptr<CallInst> Clone(CallInst::Create(Call.get(), NewBundle)); in TEST() local
555 EXPECT_EQ(Call->getNumArgOperands(), Clone->getNumArgOperands()); in TEST()
556 EXPECT_EQ(Call->getArgOperand(0), Clone->getArgOperand(0)); in TEST()
557 EXPECT_EQ(Call->getCallingConv(), Clone->getCallingConv()); in TEST()
558 EXPECT_EQ(Call->getTailCallKind(), Clone->getTailCallKind()); in TEST()
559 EXPECT_TRUE(Clone->hasFnAttr(Attribute::AttrKind::Cold)); in TEST()
[all …]
/external/grpc-grpc/src/csharp/Grpc.Reflection/
DReflection.cs111 FileContainingExtension = other.FileContainingExtension.Clone(); in ServerReflectionRequest()
121 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in ServerReflectionRequest()
125 public ServerReflectionRequest Clone() { in Clone() method in Grpc.Reflection.V1Alpha.ServerReflectionRequest
451 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in ExtensionRequest()
455 public ExtensionRequest Clone() { in Clone() method in Grpc.Reflection.V1Alpha.ExtensionRequest
613 originalRequest_ = other.originalRequest_ != null ? other.originalRequest_.Clone() : null; in ServerReflectionResponse()
616 FileDescriptorResponse = other.FileDescriptorResponse.Clone(); in ServerReflectionResponse()
619 AllExtensionNumbersResponse = other.AllExtensionNumbersResponse.Clone(); in ServerReflectionResponse()
622 ListServicesResponse = other.ListServicesResponse.Clone(); in ServerReflectionResponse()
625 ErrorResponse = other.ErrorResponse.Clone(); in ServerReflectionResponse()
[all …]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DDescriptor.cs194 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/grpc-grpc/src/csharp/Grpc.IntegrationTesting/CoreStats/
DStats.cs73 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Bucket()
77 public Bucket Clone() { in Clone() method in Grpc.Core.Bucket
228 buckets_ = other.buckets_.Clone(); in Histogram()
229 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Histogram()
233 public Histogram Clone() { in Clone() method in Grpc.Core.Histogram
355 Histogram = other.Histogram.Clone(); in Metric()
359 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Metric()
363 public Metric Clone() { in Clone() method in Grpc.Core.Metric
573 metrics_ = other.metrics_.Clone(); in Stats()
574 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); in Stats()
[all …]
/external/pdfium/core/fpdfapi/edit/
Dcpdf_flateencoder.cpp26 m_pDict = ToDictionary(pStream->GetDict()->Clone()); in CPDF_FlateEncoder()
42 m_pDict = ToDictionary(pStream->GetDict()->Clone()); in CPDF_FlateEncoder()
54 m_pDict = ToDictionary(m_pDict->Clone()); in CloneDict()

12345678910>>...25