Searched refs:Copy (Results 1 - 25 of 338) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Compress/
H A DCopyRegister.cpp13 REGISTER_CODEC_2(Copy, CreateCodec, CreateCodec, 0, "Copy")
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dvariadic_copy.fail.cpp30 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}}
35 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}}
40 LG Copy(Orig); // expected-error{{call to deleted constructor of 'LG'}}
/external/llvm/unittests/ADT/
H A DFunctionRefTest.cpp19 TEST(FunctionRefTest, Copy) {
/external/llvm/include/llvm/Analysis/
H A DMemoryLocation.h101 MemoryLocation Copy(*this);
102 Copy.Ptr = NewPtr;
103 return Copy;
107 MemoryLocation Copy(*this);
108 Copy.Size = NewSize;
109 return Copy;
113 MemoryLocation Copy(*this);
114 Copy.AATags = AAMDNodes();
115 return Copy;
/external/curl/tests/libtest/
H A Dtest610.pl9 use File::Copy;
/external/google-breakpad/src/google_breakpad/processor/
H A Dcode_modules.h93 virtual const CodeModules* Copy() const = 0;
H A Dcode_module.h89 virtual const CodeModule* Copy() const = 0;
/external/webrtc/webrtc/base/
H A Dcryptstring.cc29 CryptStringImpl* EmptyCryptStringImpl::Copy() const { function in class:rtc::EmptyCryptStringImpl
41 : impl_(other.impl_->Copy()) {
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {
63 CryptStringImpl* InsecureCryptStringImpl::Copy() const { function in class:rtc::InsecureCryptStringImpl
/external/pdfium/core/fxge/ge/
H A Dcfx_graphstatedata.cpp23 Copy(src);
26 void CFX_GraphStateData::Copy(const CFX_GraphStateData& src) { function in class:CFX_GraphStateData
/external/pdfium/core/fxge/
H A Dcfx_graphstatedata.h20 void Copy(const CFX_GraphStateData& src);
/external/google-breakpad/src/client/
H A Dminidump_file_writer-inl.h74 return writer_->Copy(
84 return writer_->Copy(
92 return writer_->Copy(position_, &data_, minidump_size<MDType>::size());
H A Dminidump_file_writer.h94 // Copy the contents of |str| to a MDString and write it to the file.
114 bool Copy(MDRVA position, const void *src, ssize_t size);
139 // Copy |length| characters from |str| to |mdstring|. These are distinct
180 // Copy |size| bytes starting at |src| into the minidump at |position|
182 bool Copy(MDRVA position, const void *src, size_t size);
184 // Copy |size| bytes from |src| to the current position
185 inline bool Copy(const void *src, size_t size) { function in class:google_breakpad::UntypedMDRVA
186 return Copy(position_, src, size);
245 // Copy |item| to |index|
250 // Copy |siz
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DJSystem.cs61 Array.Copy( sourceArray, sourceIndex, destinationArray, destinationIndex, length );
/external/libvpx/libvpx/test/
H A Dconsistency_test.cc92 void Copy(uint8_t *reference, uint8_t *source) { function in class:__anon11834::ConsistencyTestBase
154 Copy(source_data_[1], source_data_[0]);
155 Copy(reference_data_[0], source_data_[0]);
157 Copy(reference_data_[1], source_data_[0]);
174 Copy(source_data_[1], source_data_[0]);
184 Copy(source_data_[1], source_data_[0]);
185 Copy(reference_data_[0], source_data_[0]);
186 Copy(reference_data_[1], source_data_[0]);
191 Copy(reference_data_[1], source_data_[0]);
/external/llvm/lib/Target/AArch64/
H A DAArch64CleanupLocalDynamicTLSPass.cpp100 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
102 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), local
109 return Copy;
123 MachineInstr *Copy = local
128 return Copy;
/external/llvm/lib/Target/SystemZ/
H A DSystemZLDCleanup.cpp119 // Insert a Copy from TLSBaseAddrReg to R2.
120 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), local
127 return Copy;
140 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), local
144 return Copy;
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_allstates.h23 void Copy(const CPDF_AllStates& src);
H A Dcpdf_color.h23 void Copy(const CPDF_Color* pSrc);
/external/pdfium/fpdfsdk/javascript/
H A DJS_KeyValue.h27 void Copy(const CJS_GlobalVariableArray& array);
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.h59 static void Copy(const Message& from, Message* to);
/external/webrtc/webrtc/sound/
H A Dsounddevicelocator.h35 virtual SoundDeviceLocator *Copy() const = 0;
/external/llvm/include/llvm/IR/
H A DValueMap.h257 ValueMapCallbackVH Copy(*this); variable
258 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
262 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
263 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
269 ValueMapCallbackVH Copy(*this); variable
270 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
277 Config::onRAUW(Copy.Map->Data, Copy
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DValueMap.h211 ValueMapCallbackVH Copy(*this);
212 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
215 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
216 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
224 ValueMapCallbackVH Copy(*this);
225 sys::Mutex *M = Config::getMutex(Copy.Map->Data);
231 Config::onRAUW(Copy.Map->Data, Copy
[all...]
/external/google-breakpad/src/processor/
H A Dbasic_code_modules.cc68 that->GetModuleAtIndex(module_sequence)->Copy());
124 const CodeModules* BasicCodeModules::Copy() const { function in class:google_breakpad::BasicCodeModules
/external/valgrind/none/tests/s390x/
H A Dex.stdout.exp1 ------- Copy 10+1 bytes from buffer to target

Completed in 897 milliseconds

1234567891011>>