Searched refs:Clone (Results 126 - 150 of 274) sorted by relevance

1234567891011

/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
H A Dpump.py125 def Clone(self): member in class:Cursor
156 def Clone(self): member in class: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 class:Env
660 RunAtomicCode(env.Clone(), node.atomic_code, result)
676 new_env = env.Clone()
686 RunCode(env.Clone(), nod
[all...]
/external/protobuf/csharp/src/AddressBook/
H A DAddressbook.cs72 phones_ = other.phones_.Clone();
75 public Person Clone() { method in class:Google.Protobuf.Examples.AddressBook.Person
260 public PhoneNumber Clone() { method in class:Google.Protobuf.Examples.AddressBook.Person.Types.PhoneNumber
394 people_ = other.people_.Clone();
397 public AddressBook Clone() { method in class:Google.Protobuf.Examples.AddressBook.AddressBook
/external/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h107 virtual ParamIteratorInterface* Clone() const = 0;
130 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
133 impl_.reset(other.impl_->Clone());
146 ParamIteratorInterface<T>* clone = impl_->Clone();
236 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::RangeGenerator::Iterator
323 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
H A Dgtest-param-util.h107 virtual ParamIteratorInterface* Clone() const = 0;
130 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
133 impl_.reset(other.impl_->Clone());
146 ParamIteratorInterface<T>* clone = impl_->Clone();
236 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::RangeGenerator::Iterator
323 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp222 TiXmlNode* node = addThis.Clone();
242 TiXmlNode* node = addThis.Clone();
275 TiXmlNode* node = addThis.Clone();
312 TiXmlNode* node = withThis.Clone();
859 // Clone the attributes, then clone the children.
871 target->LinkEndChild( node->Clone() );
889 TiXmlNode* TiXmlElement::Clone() const function in class:TiXmlElement
1129 target->LinkEndChild( node->Clone() );
1134 TiXmlNode* TiXmlDocument::Clone() const
1320 TiXmlNode* TiXmlComment::Clone() cons
[all...]
/external/tinyxml/
H A Dtinyxml.cpp212 TiXmlNode* node = addThis.Clone();
225 TiXmlNode* node = addThis.Clone();
251 TiXmlNode* node = addThis.Clone();
277 TiXmlNode* node = withThis.Clone();
854 // Clone the attributes, then clone the children.
866 target->LinkEndChild( node->Clone() );
871 TiXmlNode* TiXmlElement::Clone() const function in class:TiXmlElement
1120 target->LinkEndChild( node->Clone() );
1125 TiXmlNode* TiXmlDocument::Clone() const function in class:TiXmlDocument
1314 TiXmlNode* TiXmlComment::Clone() cons function in class:TiXmlComment
1374 TiXmlNode* TiXmlText::Clone() const function in class:TiXmlText
1474 TiXmlNode* TiXmlDeclaration::Clone() const function in class:TiXmlDeclaration
1506 TiXmlNode* TiXmlUnknown::Clone() const function in class:TiXmlUnknown
[all...]
/external/v8/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h107 virtual ParamIteratorInterface* Clone() const = 0;
130 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
133 impl_.reset(other.impl_->Clone());
146 ParamIteratorInterface<T>* clone = impl_->Clone();
236 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::RangeGenerator::Iterator
323 virtual ParamIteratorInterface<T>* Clone() const { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
/external/libmojo/mojo/public/cpp/bindings/
H A Dmap.h185 // key/value type defines a Clone() method, it will be used; otherwise copy
191 Map Clone() const { function in class:mojo::Map
195 result.map_.insert(std::make_pair(internal::Clone(it->first),
196 internal::Clone(it->second)));
H A Darray.h163 // defines a Clone() method, it will be used; otherwise copy
169 Array Clone() const { function in class:mojo::Array
172 result.vec_ = internal::Clone(vec_);
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_array_unittest.cpp84 TEST(cpdf_array, Clone) {
91 std::unique_ptr<CPDF_Array> arr2 = ToArray(arr->Clone());
94 // Clone() always create new objects.
100 // Clone() with and without dereferencing reference objects.
124 std::unique_ptr<CPDF_Array> arr1 = ToArray(arr->Clone());
H A Dcpdf_object_unittest.cpp97 m_IndirectObjs = {m_ObjHolder->AddIndirectObject(boolean_true_obj->Clone()),
98 m_ObjHolder->AddIndirectObject(number_int_obj->Clone()),
99 m_ObjHolder->AddIndirectObject(str_spec_obj->Clone()),
100 m_ObjHolder->AddIndirectObject(name_obj->Clone()),
101 m_ObjHolder->AddIndirectObject(m_ArrayObj->Clone()),
102 m_ObjHolder->AddIndirectObject(m_DictObj->Clone()),
103 m_ObjHolder->AddIndirectObject(stream_obj->Clone())};
161 // Since this function is used for testing Clone(), only memory based
273 TEST_F(PDFObjectsTest, Clone) {
276 std::unique_ptr<CPDF_Object> obj = m_DirectObjs[i]->Clone();
[all...]
H A Dcpdf_object.h50 virtual std::unique_ptr<CPDF_Object> Clone() const = 0;
/external/protobuf/csharp/src/Google.Protobuf/Collections/
H A DRepeatedField.cs69 public RepeatedField<T> Clone() method in class:Google.Protobuf.Collections.RepeatedField
74 clone.array = (T[])array.Clone();
80 clone.array[i] = cloneableArray[i].Clone();
/external/libbrillo/brillo/errors/
H A Derror.h53 ErrorPtr Clone() const;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h78 /// Clone - Creates a clone of the specified SUnit. It does not copy the
81 SUnit *Clone(SUnit *N);
/external/llvm/tools/bugpoint/
H A DExtractFunction.cpp89 Module *Clone = CloneModule(Program).release(); local
94 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
122 std::unique_ptr<Module> New = runPassesOn(Clone, Passes);
123 delete Clone;
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_contentmark.cpp116 std::unique_ptr<CPDF_Dictionary>(ToDictionary(pDict->Clone())));
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_imagecacheentry.cpp37 m_pCachedBitmap = pBitmap->Clone();
/external/pdfium/xfa/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256.cpp84 CBC_ReedSolomonGF256Poly* temp = m_zero->Clone(e);
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DSourceContext.cs68 public SourceContext Clone() { method in class:Google.Protobuf.WellKnownTypes.SourceContext
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
H A DUnittestImportProto3.cs77 public ImportMessage Clone() { method in class:Google.Protobuf.TestProtos.ImportMessage
H A DUnittestImportPublicProto3.cs63 public PublicImportMessage Clone() { method in class:Google.Protobuf.TestProtos.PublicImportMessage
/external/skia/src/utils/win/
H A DSkIStream.h70 virtual HRESULT STDMETHODCALLTYPE Clone(IStream **);
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DExtractFunction.cpp60 Module *Clone = CloneModule(Program); local
65 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
93 Module *New = runPassesOn(Clone, Passes);
94 delete Clone;
/external/mesa3d/src/mesa/
H A DSConscript11 env = env.Clone()

Completed in 2244 milliseconds

1234567891011