Searched defs:Copy (Results 1 - 25 of 70) sorted by relevance

123

/external/llvm/unittests/ADT/
H A DBitVectorTest.cpp79 BitVector Copy = Vec; local
83 EXPECT_TRUE(Copy == Alt);
87 std::swap(Copy, Vec);
H A DSmallBitVectorTest.cpp76 SmallBitVector Copy = Vec; local
80 EXPECT_TRUE(Copy == Alt);
84 std::swap(Copy, Vec);
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable_id.h52 Copy(that);
55 Copy(that);
58 inline void Copy(const Id& that) { function in class:syncable::Id
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dinvert.h71 virtual InvertFst<A> *Copy() const { return new InvertFst(*this); } function in class:fst::InvertFst
H A Dclosure.h113 virtual ClosureFst<A> *Copy() const { return new ClosureFst<A>(*this); } function in class:fst::ClosureFst
H A Dconcat.h124 virtual ConcatFst<A> *Copy() const { return new ConcatFst<A>(*this); } function in class:fst::ConcatFst
H A Ddifference.h82 virtual DifferenceFst<A> *Copy() const { function in class:fst::DifferenceFst
H A Dintersect.h73 virtual IntersectFst<A> *Copy() const { function in class:fst::IntersectFst
H A Dproject.h89 virtual ProjectFst<A> *Copy() const { return new ProjectFst(*this); } function in class:fst::ProjectFst
H A Dunion.h126 virtual UnionFst<A> *Copy() const { return new UnionFst<A>(*this); } function in class:fst::UnionFst
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
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c35 value Copy = copy_string(StringRep); local
37 return Copy;
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc44 void ReflectionOps::Copy(const Message& from, Message* to) { function in class:google::protobuf::internal::ReflectionOps
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_selection_model.cc137 void TabStripSelectionModel::Copy(const TabStripSelectionModel& source) { function in class:TabStripSelectionModel
/external/chromium/sdch/open-vcdiff/src/
H A Dencodetable.cc216 void VCDiffCodeTableWriter::Copy(int32_t offset, size_t size) { function in class:open_vcdiff::VCDiffCodeTableWriter
218 LOG(DFATAL) << "VCDiffCodeTableWriter::Copy() called without calling Init()"
/external/chromium/webkit/glue/
H A Dwebcursor.cc34 Copy(other);
42 Copy(other);
160 void WebCursor::Copy(const WebCursor& other) { function in class:WebCursor
/external/clang/lib/Sema/
H A DTypeLocBuilder.h64 TypeLoc Copy = pushFullUninitializedImpl(L.getType(), Size); local
65 memcpy(Copy.getOpaqueData(), L.getOpaqueData(), Size);
/external/llvm/lib/Target/Blackfin/
H A DBlackfinISelDAGToDAG.cpp168 SDNode *Copy = local
174 UpdateNodeOperand(DAG, *UI, UI.getOperandNo(), SDValue(Copy, 0));
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage.h44 Copy, enumerator in enum:QWKPage::WebAction
/external/chromium/base/win/
H A Dscoped_variant.cc84 VARIANT ScopedVariant::Copy() const { function in class:base::win::ScopedVariant
/external/chromium/net/base/
H A Daddress_list.cc117 void AddressList::Copy(const struct addrinfo* head, bool recursive) { function in class:net::AddressList
163 Copy(src.head(), true);
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-internal-utils.h371 // - Copy(raw_container) returns an STL-style container view of a
388 static type Copy(const RawContainer& container) { return container; } function in class:testing::internal::StlContainerView
426 static type Copy(const Element (&array)[N]) {
450 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) { function in class:testing::internal::StlContainerView
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcryptstring.h45 virtual CryptStringImpl * Copy() const = 0;
59 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); } function in class:talk_base::EmptyCryptStringImpl
70 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
71 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
74 impl_.reset(other.impl_->Copy());
183 virtual CryptStringImpl * Copy() const { function in class:talk_base::InsecureCryptStringImpl
/external/llvm/include/llvm/ADT/
H A DBitVector.h166 BitWord Copy = Bits[WordPos]; local
168 Copy &= ~0L << BitPos;
170 if (Copy != 0) {
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
/external/llvm/lib/Target/PTX/
H A DPTXISelLowering.cpp327 SDValue Copy = DAG.getCopyToReg(Chain, dl, Reg, OutVals[i]/*, Flag*/); local
330 Chain = DAG.getNode(PTXISD::WRITE_PARAM, dl, MVT::Other, Copy, OutReg);

Completed in 797 milliseconds

123