Searched defs:Copy (Results 51 - 75 of 199) sorted by relevance

12345678

/external/chromium_org/chrome/browser/chromeos/drive/fileapi/
H A Dfileapi_worker.cc228 void Copy(const base::FilePath& src_file_path, function in namespace:drive::fileapi_internal
234 file_system->Copy(src_file_path, dest_file_path, preserve_last_modified,
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dsyncable_file_system_operation.cc119 void SyncableFileSystemOperation::Copy( function in class:sync_file_system::SyncableFileSystemOperation
135 base::Bind(&FileSystemOperation::Copy,
/external/chromium_org/content/browser/renderer_host/
H A Dime_adapter_android.cc320 void ImeAdapterAndroid::Copy(JNIEnv* env, jobject) { function in class:content::ImeAdapterAndroid
323 wc->Copy();
/external/chromium_org/content/public/test/
H A Dasync_file_test_helper.cc93 base::File::Error AsyncFileTestHelper::Copy( function in class:content::AsyncFileTestHelper
107 context->operation_runner()->Copy(src,
/external/chromium_org/crypto/
H A Dec_private_key_nss.cc218 ECPrivateKey* ECPrivateKey::Copy() const { function in class:crypto::ECPrivateKey
H A Drsa_private_key_nss.cc200 RSAPrivateKey* RSAPrivateKey::Copy() const { function in class:crypto::RSAPrivateKey
/external/chromium_org/extensions/browser/
H A Devent_listener_map.cc52 scoped_ptr<EventListener> EventListener::Copy() const { function in class:extensions::EventListener
/external/chromium_org/media/filters/
H A Dskcanvas_video_renderer_unittest.cc64 void Copy(const scoped_refptr<VideoFrame>& video_frame, SkCanvas* canvas);
236 void SkCanvasVideoRendererTest::Copy( function in class:media::SkCanvasVideoRendererTest
239 renderer_.Copy(video_frame, canvas);
275 Copy(VideoFrame::CreateTransparentFrame(gfx::Size(kWidth, kHeight)).get(),
/external/chromium_org/sdch/open-vcdiff/src/
H A Dencodetable.cc248 void VCDiffCodeTableWriter::Copy(int32_t offset, size_t size) { function in class:open_vcdiff::VCDiffCodeTableWriter
250 VCD_DFATAL << "VCDiffCodeTableWriter::Copy() called without calling Init()"
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCursor.h77 Copy, enumerator in enum:blink::Cursor::Type
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dnullvideoframe.h70 virtual VideoFrame *Copy() const { return NULL; } function in class:cricket::NullVideoFrame
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtctexturevideoframe.cc108 VideoFrame* WebRtcTextureVideoFrame::Copy() const { function in class:cricket::WebRtcTextureVideoFrame
/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/
H A Dsecuretunnelsessionclient.cc75 virtual ContentDescription* Copy() const { function in struct:cricket::SecureTunnelContentDescription
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl67 $m add command -label Copy -command "sqlitecon::Copy $w.t"
124 bind Sqlitecon <<Copy>> {sqlitecon::Copy %W}
534 # Do a Copy operation on the stuff currently selected.
536 proc sqlitecon::Copy w {
565 sqlitecon::Copy $w
603 $m entryconf Copy -state disabled
607 $m entryconf Copy -state normal
611 $m entryconf Copy
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dcryptstring.h30 virtual CryptStringImpl * Copy() const = 0;
44 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); } function in class:rtc::EmptyCryptStringImpl
55 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
56 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
59 impl_.reset(other.impl_->Copy());
168 virtual CryptStringImpl * Copy() const { function in class:rtc::InsecureCryptStringImpl
/external/chromium_org/tools/grit/grit/extern/
H A Dtclib.py432 def Copy(self): member in class:Message
498 def Copy(self): member in class:Translation
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dcmake.py467 class Copy: class in function:WriteCopies
478 file_copy = Copy('', 'copy')
479 dir_copy = Copy('_dirs', 'copy_directory')
/external/chromium_org/v8/src/
H A Dunique.h249 if (that->size_ == 0) return this->Copy(zone);
250 if (this->size_ == 0) return that->Copy(zone);
282 if (that->size_ == 0) return this->Copy(zone);
300 UniqueSet<T>* Copy(Zone* zone) const { function in class:v8::internal::FINAL
/external/llvm/include/llvm/ADT/
H A DBitVector.h179 BitWord Copy = Bits[WordPos]; local
181 Copy &= ~0UL << BitPos;
183 if (Copy != 0) {
185 return WordPos * BITWORD_SIZE + countTrailingZeros((uint32_t)Copy);
187 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
/external/openfst/src/include/fst/
H A Darcsort.h133 // See Fst<>::Copy() for doc.
137 // Get a copy of this ArcSortFst. See Fst<>::Copy() for further doc.
138 virtual ArcSortFst<A, C> *Copy(bool safe = false) const { function in class:fst::ArcSortFst
H A Dcomplement.h63 explicit ComplementFstImpl(const Fst<A> &fst) : fst_(fst.Copy()) {
72 : fst_(impl.fst_->Copy()) {
162 // See Fst<>::Copy() for doc.
166 // Get a copy of this ComplementFst. See Fst<>::Copy() for further doc.
167 virtual ComplementFst<A> *Copy(bool safe = false) const { function in class:fst::ComplementFst
/external/openfst/src/include/fst/script/
H A Dfst-class.h63 virtual FstClassImplBase *Copy() = 0;
83 impl_(should_own ? impl : impl->Copy()) { }
85 explicit FstClassImpl(const Fst<Arc> &impl) : impl_(impl.Copy()) { }
135 virtual FstClassImpl *Copy() { function in class:fst::script::FstClassImpl
174 FstClass(const FstClass &other) : impl_(other.impl_->Copy()) { }
178 impl_ = other.impl_->Copy();
H A Dweight-class.h34 virtual WeightImplBase *Copy() const = 0;
48 virtual WeightClassImpl<W> *Copy() const { function in struct:fst::script::WeightClassImpl
89 impl_(other.impl_ ? other.impl_->Copy() : 0) { }
93 impl_ = other.impl_ ? other.impl_->Copy() : 0;
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_array.cpp86 FX_BOOL CFX_BasicArray::Copy(const CFX_BasicArray& src) function in class:CFX_BasicArray
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsort.h92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) {
101 : fst_(impl.fst_->Copy()), comp_(impl.comp_) {
233 virtual ArcSortFst<A, C> *Copy() const { function in class:fst::ArcSortFst

Completed in 6630 milliseconds

12345678