Searched defs:Copy (Results 26 - 50 of 110) sorted by relevance

12345

/external/google-breakpad/src/processor/
H A Dbasic_source_line_resolver_unittest.cc71 virtual const CodeModule* Copy() const { function in class:__anon5221::TestCodeModule
H A Dfast_source_line_resolver_unittest.cc82 virtual const CodeModule* Copy() const { function in class:__anon5228::TestCodeModule
H A Dstackwalker_unittest_utils.h117 const google_breakpad::CodeModule *Copy() const { function in class:MockCodeModule
160 const CodeModules *Copy() const { abort(); } // Tests won't use this. function in class:MockCodeModules
/external/google-breakpad/src/testing/include/gmock/internal/
H A Dgmock-internal-utils.h374 // - Copy(raw_container) returns an STL-style container view of a
391 static type Copy(const RawContainer& container) { return container; } function in class:testing::internal::StlContainerView
429 static type Copy(const Element (&array)[N]) {
453 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) { function in class:testing::internal::StlContainerView
/external/llvm/include/llvm/ADT/
H A DBitVector.h172 BitWord Copy = Bits[WordPos]; local
174 Copy &= ~0UL << BitPos;
176 if (Copy != 0)
177 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
H A DSmallBitVector.h418 SmallBitVector Copy = RHS; local
419 Copy.resize(size());
420 getPointer()->operator&=(*Copy.getPointer());
466 SmallBitVector Copy = RHS; local
467 Copy.resize(size());
468 getPointer()->operator|=(*Copy.getPointer());
480 SmallBitVector Copy = RHS; local
481 Copy.resize(size());
482 getPointer()->operator^=(*Copy.getPointer());
/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
H A Dconst-fst.h276 // Get a copy of this ConstFst. See Fst<>::Copy() for further doc.
277 virtual ConstFst<A, U> *Copy(bool safe = false) const { function in class:fst::ConstFst
H A Dfactor-weight.h185 fst_(fst.Copy()),
204 fst_(impl.fst_->Copy(true)),
416 // See Fst<>::Copy() for doc.
420 // Get a copy of this FactorWeightFst. See Fst<>::Copy() for further doc.
421 virtual FactorWeightFst<A, F> *Copy(bool copy = false) const { function in class:fst::FactorWeightFst
H A Dmatcher-fst.h102 // See Fst<>::Copy() for doc.
106 // Get a copy of this MatcherFst. See Fst<>::Copy() for further doc.
107 virtual MatcherFst<F, M, N, I> *Copy(bool safe = false) const { function in class:fst::MatcherFst
217 matcher_ = matcher.matcher_->Copy();
222 Matcher<FST> *Copy() const { function in class:fst::Matcher
257 matcher_ = matcher.matcher_->Copy(safe);
263 LookAheadMatcher<FST> *Copy(bool safe = false) const { function in class:fst::LookAheadMatcher
H A Drelabel.h216 : CacheImpl<A>(opts), fst_(fst.Copy()),
245 : CacheImpl<A>(opts), fst_(fst.Copy()),
278 fst_(impl.fst_->Copy(true)),
440 // See Fst<>::Copy() for doc.
444 // Get a copy of this RelabelFst. See Fst<>::Copy() for further doc.
445 virtual RelabelFst<A> *Copy(bool safe = false) const { function in class:fst::RelabelFst
H A Dstate-map.h211 fst_(fst.Copy()),
220 fst_(fst.Copy()),
228 fst_(impl.fst_->Copy(true)),
352 // See Fst<>::Copy() for doc.
356 // Get a copy of this StateMapFst. See Fst<>::Copy() for further doc.
357 virtual StateMapFst<A, B, C> *Copy(bool safe = false) const { function in class:fst::StateMapFst
H A Dsynchronize.h86 : CacheImpl<A>(opts), fst_(fst.Copy()) {
97 fst_(impl.fst_->Copy(true)) {
371 // See Fst<>::Copy() for doc.
375 // Get a copy of this SynchronizeFst. See Fst<>::Copy() for further doc.
376 virtual SynchronizeFst<A> *Copy(bool safe = false) const { function in class:fst::SynchronizeFst
H A Dedit-fst.h44 // N.B.: The documentation for Fst::Copy(true) says that its behavior is
47 // behavior when its Copy(true) method is invoked, where consistent means
57 // required by Fst::Copy(true).
64 // crucially, MutableFstT::Copy(false) *must* yield an fst that is
382 // crucially, MutableFstT::Copy(false) *must* yield an fst that is
425 : wrapped_(static_cast<WrappedFstT *>(wrapped.Copy())) {
436 // the Copy() method of the Fst interface.
439 wrapped_(static_cast<WrappedFstT *>(impl.wrapped_->Copy(true))),
707 // See Fst<>::Copy() for doc.
713 // Get a copy of this EditFst. See Fst<>::Copy() fo
714 virtual EditFst<A, WrappedFstT, MutableFstT> *Copy(bool safe = false) const { function in class:fst::EditFst
[all...]
H A Dencode.h187 isymbols_ = syms->Copy();
198 osymbols_ = syms->Copy();
323 // Copy constructor but setting the type, typically to DECODE
504 // See Fst<>::Copy() for doc.
508 // Get a copy of this EncodeFst. See Fst<>::Copy() for further doc.
509 virtual EncodeFst<A> *Copy(bool safe = false) const { function in class:fst::EncodeFst
511 FSTERROR() << "EncodeFst::Copy(true): not allowed.";
541 // See Fst<>::Copy() for doc.
545 // Get a copy of this DecodeFst. See Fst<>::Copy() for further doc.
546 virtual DecodeFst<A> *Copy(boo function in class:fst::DecodeFst
[all...]
/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/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
H A Dhydrogen-load-elimination.cc27 HFieldApproximation* Copy(Zone* zone) { function in class:v8::internal::HFieldApproximation
31 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone);
127 return pred_state->Copy(succ_block, pred_block, zone);
143 // Copy state to successor block.
144 HLoadEliminationTable* Copy(HBasicBlock* succ, HBasicBlock* from_block, function in class:v8::internal::HLoadEliminationTable
150 copy->fields_[i] = fields_[i] == NULL ? NULL : fields_[i]->Copy(zone);
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_GlobalData.cpp24 void CJS_GlobalVariableArray::Copy(const CJS_GlobalVariableArray& array) function in class:CJS_GlobalVariableArray
66 pNewObjData->objData.Copy(pOldObjData->objData);
263 pData->data.objData.Copy(array);
270 pNewData->data.objData.Copy(array);
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c62 value Copy = copy_string(StringRep); local
64 return Copy;
/external/llvm/include/llvm/IR/
H A DValueMap.h238 ValueMapCallbackVH Copy(*this); variable
239 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
243 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
244 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
250 ValueMapCallbackVH Copy(*this); variable
251 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
258 Config::onRAUW(Copy.Map->Data, Copy
[all...]
/external/llvm/lib/CodeGen/
H A DTailDuplication.cpp294 MachineInstr *Copy = Copies[i]; local
295 if (!Copy->isCopy())
297 unsigned Dst = Copy->getOperand(0).getReg();
298 unsigned Src = Copy->getOperand(1).getReg();
301 // Copy is the only use. Do trivial copy propagation here.
303 Copy->eraseFromParent();
/external/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h76 ParenMatcher<F> *Copy(bool safe = false) const { function in class:fst::ParenMatcher

Completed in 2021 milliseconds

12345