Searched defs:Copy (Results 101 - 125 of 199) sorted by relevance

12345678

/external/chromium_org/third_party/motemplate/
H A Dmotemplate.py252 def Copy(self): member in class:_RenderState
373 content_render_state = render_state.Copy()
395 content_render_state = render_state.Copy()
/external/chromium_org/third_party/re2/re2/
H A Dregexp.cc494 void RegexpStatus::Copy(const RegexpStatus& status) { function in class:re2::RegexpStatus
780 CharClassBuilder* CharClassBuilder::Copy() { function in class:re2::CharClassBuilder
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.cc706 // Store encoded frame if key frame. (Used in Copy method.)
725 // Copy encoded frame.
868 VideoDecoder* VP8DecoderImpl::Copy() { function in class:webrtc::VP8DecoderImpl
935 // Copy all member variables (that are not set in initialization).
/external/chromium_org/third_party/webrtc/sound/
H A Dalsasoundsystem.cc64 virtual SoundDeviceLocator *Copy() const { function in class:rtc::AlsaDeviceLocator
/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc152 return pred_state->Copy(succ_block, pred_block, zone);
175 // Copy state to successor block.
176 HCheckTable* Copy(HBasicBlock* succ, HBasicBlock* from_block, Zone* zone) { function in class:v8::internal::HCheckTable
241 UniqueSet<Map>* maps = entry->maps_->Copy(zone);
379 instr->set_maps(entry->maps_->Copy(graph->zone()));
635 UniqueSet<Map>* maps = entry->maps_->Copy(zone());
652 graph->zone(), value, entry->maps_->Copy(graph->zone()), true, instr);
H A Dregexp-macro-assembler-irregexp.cc427 Copy(array->GetDataStartAddress());
437 void RegExpMacroAssemblerIrregexp::Copy(Address a) { function in class:v8::internal::RegExpMacroAssemblerIrregexp
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c91 value Copy = copy_string(StringRep); local
93 return Copy;
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h421 SmallBitVector Copy = RHS; local
422 Copy.resize(size());
423 getPointer()->operator&=(*Copy.getPointer());
469 SmallBitVector Copy = RHS; local
470 Copy.resize(size());
471 getPointer()->operator|=(*Copy.getPointer());
483 SmallBitVector Copy = RHS; local
484 Copy.resize(size());
485 getPointer()->operator^=(*Copy.getPointer());
/external/llvm/include/llvm/IR/
H A DValueMap.h217 ValueMapCallbackVH Copy(*this); variable
218 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
221 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
222 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
230 ValueMapCallbackVH Copy(*this); variable
231 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
237 Config::onRAUW(Copy.Map->Data, Copy
[all...]
/external/llvm/lib/CodeGen/
H A DPeepholeOptimizer.cpp186 /// \brief Specialized version of getNextSource for Copy instructions.
392 MachineInstr *Copy = BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(), local
397 Copy->getOperand(0).setSubReg(SubIdx);
398 Copy->getOperand(0).setIsUndef();
480 /// \brief Get the index of the definition and source for \p Copy
482 /// \pre Copy.isCopy() or Copy.isBitcast().
483 /// \return True if the Copy instruction has only one register source
486 static bool getCopyOrBitcastDefUseIdx(const MachineInstr &Copy, argument
488 assert((Copy
[all...]
H A DTailDuplication.cpp293 MachineInstr *Copy = Copies[i]; local
294 if (!Copy->isCopy())
296 unsigned Dst = Copy->getOperand(0).getReg();
297 unsigned Src = Copy->getOperand(1).getReg();
300 // Copy is the only use. Do trivial copy propagation here.
302 Copy->eraseFromParent();
/external/openfst/src/include/fst/
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...]
H A Dlookahead-matcher.h201 TrivialLookAheadMatcher<M> *Copy(bool safe = false) const { function in class:fst::TrivialLookAheadMatcher
280 ArcLookAheadMatcher<M, F> *Copy(bool safe = false) const { function in class:fst::ArcLookAheadMatcher
475 LabelLookAheadMatcher<M, F, S> *Copy(bool safe = false) const { function in class:fst::LabelLookAheadMatcher
725 base_ = matcher.base_->Copy(safe);
732 LookAheadMatcher<F> *Copy(bool safe = false) const { function in class:fst::LookAheadMatcher
H A Dmatcher.h50 // // If safe=true, the copy is thread-safe. See Fst<>::Copy()
54 // // If safe=true, the copy is thread-safe. See Fst<>::Copy()
56 // Matcher<F> *Copy(bool safe = false) const;
113 virtual MatcherBase<A> *Copy(bool safe = false) const = 0;
150 : fst_(fst.Copy()),
174 : fst_(matcher.fst_->Copy(safe)),
190 virtual SortedMatcher<F> *Copy(bool safe = false) const { function in class:fst::SortedMatcher
442 virtual RhoMatcher<M> *Copy(bool safe = false) const { function in class:fst::RhoMatcher
616 virtual SigmaMatcher<M> *Copy(bool safe = false) const { function in class:fst::SigmaMatcher
805 virtual PhiMatcher<M> *Copy(boo function in class:fst::PhiMatcher
1029 MultiEpsMatcher<M> *Copy(bool safe = false) const { function in class:fst::MultiEpsMatcher
1181 Matcher<F> *Copy(bool safe = false) const { function in class:fst::Matcher
[all...]
H A Drmepsilon.h401 fst_(fst.Copy()),
416 fst_(impl.fst_->Copy(true)),
539 // See Fst<>::Copy() for doc.
543 // Get a copy of this RmEpsilonFst. See Fst<>::Copy() for further doc.
544 virtual RmEpsilonFst<A> *Copy(bool safe = false) const { function in class:fst::RmEpsilonFst
H A Dsymbol-table.h303 virtual SymbolTable* Copy() const { function in class:fst::SymbolTable
412 // Copy on write
H A Dvector-fst.h430 // Get a copy of this VectorFst. See Fst<>::Copy() for further doc.
431 virtual VectorFst<A> *Copy(bool safe = false) const { function in class:fst::VectorFst
/external/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h76 ParenMatcher<F> *Copy(bool safe = false) const { function in class:fst::ParenMatcher
/external/regex-re2/re2/
H A Dregexp.cc494 void RegexpStatus::Copy(const RegexpStatus& status) { function in class:re2::RegexpStatus
780 CharClassBuilder* CharClassBuilder::Copy() { function in class:re2::CharClassBuilder
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmap.h271 : CacheImpl<B>(opts), fst_(fst.Copy()),
281 : CacheImpl<B>(opts), fst_(fst.Copy()),
514 virtual MapFst<A, B, C> *Copy() const { function in class:fst::MapFst
H A Dreplace.h132 fst_array_.push_back(impl.fst_array_[i]->Copy());
144 fst_array_.push_back(fst->Copy());
213 fst_array_[nonterminal] = fst->Copy();
594 virtual ReplaceFst<A>* Copy() const { function in class:fst::ReplaceFst
H A Drmepsilon.h331 fst_(fst.Copy()),
473 virtual RmEpsilonFst<A> *Copy() const { function in class:fst::RmEpsilonFst
H A Dvector-fst.h520 virtual VectorFst<A> *Copy() const { function in class:fst::VectorFst
655 // Copy on write
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_system.cc418 void FileSystem::Copy(const base::FilePath& src_file_path, function in class:drive::FileSystem
424 copy_operation_->Copy(

Completed in 2580 milliseconds

12345678