HomeSort by relevance Sort by last modified time
    Searched refs:Clone (Results 151 - 175 of 539) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/googletest/googletest/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /external/protobuf/gtest/scripts/
pump.py 126 def Clone(self):
157 def Clone(self):
160 return Token(self.start.Clone(), self.end.Clone(), self.value,
190 start = cursor.Clone()
288 start = pos.Clone()
582 def Clone(self):
583 clone = Env()
584 clone.variables = self.variables[:]
585 clone.ranges = self.ranges[:
    [all...]
  /external/tensorflow/tensorflow/core/framework/
variant.h 159 : other.value_->Clone()) {}
291 virtual std::unique_ptr<ValueInterface> Clone() const = 0;
316 std::unique_ptr<ValueInterface> Clone() const override {
  /external/v8/testing/gtest/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /frameworks/base/tools/aapt2/link/
XmlCompatVersioner.cpp 28 dst.compiled_value.reset(src.compiled_value->Clone(out_string_pool));
44 dst_attr->compiled_value.reset(src_attr.compiled_value->Clone(out_string_pool));
161 return std::unique_ptr<Item>(src->Clone(out_string_pool));
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestWellKnownTypes.cs 201 AnyField = other.anyField_ != null ? other.AnyField.Clone() : null;
202 ApiField = other.apiField_ != null ? other.ApiField.Clone() : null;
203 DurationField = other.durationField_ != null ? other.DurationField.Clone() : null;
204 EmptyField = other.emptyField_ != null ? other.EmptyField.Clone() : null;
205 FieldMaskField = other.fieldMaskField_ != null ? other.FieldMaskField.Clone() : null;
206 SourceContextField = other.sourceContextField_ != null ? other.SourceContextField.Clone() : null;
207 StructField = other.structField_ != null ? other.StructField.Clone() : null;
208 TimestampField = other.timestampField_ != null ? other.TimestampField.Clone() : null;
209 TypeField = other.typeField_ != null ? other.TypeField.Clone() : null;
219 ValueField = other.valueField_ != null ? other.ValueField.Clone() : null
    [all...]
UnittestProto3.cs 273 SingleNestedMessage = other.singleNestedMessage_ != null ? other.SingleNestedMessage.Clone() : null;
274 SingleForeignMessage = other.singleForeignMessage_ != null ? other.SingleForeignMessage.Clone() : null;
275 SingleImportMessage = other.singleImportMessage_ != null ? other.SingleImportMessage.Clone() : null;
279 SinglePublicImportMessage = other.singlePublicImportMessage_ != null ? other.SinglePublicImportMessage.Clone() : null;
280 repeatedInt32_ = other.repeatedInt32_.Clone();
281 repeatedInt64_ = other.repeatedInt64_.Clone();
282 repeatedUint32_ = other.repeatedUint32_.Clone();
283 repeatedUint64_ = other.repeatedUint64_.Clone();
284 repeatedSint32_ = other.repeatedSint32_.Clone();
285 repeatedSint64_ = other.repeatedSint64_.Clone();
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_server_test.go 135 serverConfig := testConfig.Clone()
156 serverConfig := testConfig.Clone()
181 serverConfig := testConfig.Clone()
275 config := testConfig.Clone()
745 config := testConfig.Clone()
761 config := testConfig.Clone()
773 config := testConfig.Clone()
794 config := testConfig.Clone()
829 config := testConfig.Clone()
851 config := testConfig.Clone()
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_server_test.go 135 serverConfig := testConfig.Clone()
156 serverConfig := testConfig.Clone()
181 serverConfig := testConfig.Clone()
275 config := testConfig.Clone()
745 config := testConfig.Clone()
761 config := testConfig.Clone()
773 config := testConfig.Clone()
794 config := testConfig.Clone()
829 config := testConfig.Clone()
851 config := testConfig.Clone()
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
NetBuffer.c 244 NET_BUF *Clone;
248 Clone = AllocatePool (NET_BUF_SIZE (Nbuf->BlockOpNum));
250 if (Clone == NULL) {
254 Clone->Signature = NET_BUF_SIGNATURE;
255 Clone->RefCnt = 1;
256 InitializeListHead (&Clone->List);
258 Clone->Ip = Nbuf->Ip;
259 Clone->Tcp = Nbuf->Tcp;
261 CopyMem (Clone->ProtoData, Nbuf->ProtoData, NET_PROTO_DATA);
265 Clone->Vector = Nbuf->Vector;
    [all...]
  /external/golang-protobuf/proto/
clone_test.go 73 m := proto.Clone(cloneTestMessage).(*pb.MyMessage)
75 t.Errorf("Clone(%v) = %v", cloneTestMessage, m)
81 t.Error("Mutating clone changed the original")
103 if c := proto.Clone(m); !proto.Equal(m, c) {
104 t.Errorf("Clone(%v) = %v", m, c)
294 got := proto.Clone(m.dst)
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 222 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
891 TiXmlElement* clone = new TiXmlElement( Value() ); local
892 if ( !clone )
    [all...]
  /external/tinyxml/
tinyxml.cpp 212 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
873 TiXmlElement* clone = new TiXmlElement( Value() ); local
874 if ( !clone )
1127 TiXmlDocument* clone = new TiXmlDocument(); local
1316 TiXmlComment* clone = new TiXmlComment(); local
1376 TiXmlText* clone = 0; local
1476 TiXmlDeclaration* clone = new TiXmlDeclaration(); local
1508 TiXmlUnknown* clone = new TiXmlUnknown(); local
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_array_unittest.cpp 91 TEST(cpdf_array, Clone) {
98 std::unique_ptr<CPDF_Array> arr2 = ToArray(arr->Clone());
101 // Clone() always create new objects.
107 // Clone() with and without dereferencing reference objects.
130 std::unique_ptr<CPDF_Array> arr1 = ToArray(arr->Clone());
cpdf_object_unittest.cpp 95 m_IndirectObjs = {m_ObjHolder->AddIndirectObject(boolean_true_obj->Clone()),
96 m_ObjHolder->AddIndirectObject(number_int_obj->Clone()),
97 m_ObjHolder->AddIndirectObject(str_spec_obj->Clone()),
98 m_ObjHolder->AddIndirectObject(name_obj->Clone()),
99 m_ObjHolder->AddIndirectObject(m_ArrayObj->Clone()),
100 m_ObjHolder->AddIndirectObject(m_DictObj->Clone()),
101 m_ObjHolder->AddIndirectObject(stream_obj->Clone())};
159 // Since this function is used for testing Clone(), only memory based
277 TEST_F(PDFObjectsTest, Clone) {
280 std::unique_ptr<CPDF_Object> obj = m_DirectObjs[i]->Clone();
    [all...]
cpdf_stream.h 31 std::unique_ptr<CPDF_Object> Clone() const override;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
chanmgr.h 157 virtual HRESULT WINAPI Clone(IEnumChannels **ppenum) = 0;
168 HRESULT (WINAPI *Clone)(IEnumChannels *This,IEnumChannels **ppenum);
181 #define IEnumChannels_Clone(This,ppenum) (This)->lpVtbl->Clone(This,ppenum)
  /external/libbrillo/brillo/errors/
error.h 53 ErrorPtr Clone() const;
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 78 /// Clone - Creates a clone of the specified SUnit. It does not copy the
81 SUnit *Clone(SUnit *N);
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 89 Module *Clone = CloneModule(Program).release();
94 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
122 std::unique_ptr<Module> New = runPassesOn(Clone, Passes);
123 delete Clone;
296 assert(GV && "Not a clone of M1?");
  /external/pdfium/core/fxge/dib/
cfx_dibsource.h 75 RetainPtr<CFX_DIBitmap> Clone(const FX_RECT* pClip) const;
  /external/pdfium/fpdfsdk/
fpdfppo.cpp 68 pCurPageDict->SetFor(key, pInheritable->Clone());
204 // Clone the page dictionary
211 pCurPageDict->SetFor(cbSrcKeyStr, pObj->Clone());
224 pCurPageDict->SetFor("MediaBox", pInheritable->Clone());
328 std::unique_ptr<CPDF_Object> pClone = pDirect->Clone();
  /external/pdfium/fxbarcode/common/reedsolomon/
BC_ReedSolomonGF256.cpp 86 auto temp = m_zero->Clone();

Completed in 2508 milliseconds

1 2 3 4 5 67 8 91011>>