HomeSort by relevance Sort by last modified time
    Searched defs:Copy (Results 51 - 75 of 134) sorted by null

1 23 4 5 6

  /external/openfst/src/include/fst/
synchronize.h 5 // You may obtain a copy of the License at
86 : 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 {
451 opts.gc_limit = 0; // Cache only the last state for fastest copy.
const-fst.h 5 // You may obtain a copy of the License at
276 // Get a copy of this ConstFst. See Fst<>::Copy() for further doc.
277 virtual ConstFst<A, U> *Copy(bool safe = false) const {
encode.h 5 // You may obtain a copy of the License at
187 isymbols_ = syms->Copy();
198 osymbols_ = syms->Copy();
323 // Copy constructor but setting the type, typically to DECODE
504 // See Fst<>::Copy() for doc.
505 EncodeFst(const EncodeFst<A> &fst, bool copy = false)
506 : ArcMapFst<A, A, C>(fst, copy) {}
508 // Get a copy of this EncodeFst. See Fst<>::Copy() for further doc.
509 virtual EncodeFst<A> *Copy(bool safe = false) const
    [all...]
factor-weight.h 5 // You may obtain a copy of the License at
185 fst_(fst.Copy()),
204 fst_(impl.fst_->Copy(true)),
416 // See Fst<>::Copy() for doc.
417 FactorWeightFst(const FactorWeightFst<A, F> &fst, bool copy)
418 : ImplToFst<Impl>(fst, copy) {}
420 // Get a copy of this FactorWeightFst. See Fst<>::Copy() for further doc.
421 virtual FactorWeightFst<A, F> *Copy(bool copy = false) const
    [all...]
rmepsilon.h 5 // You may obtain a copy of the License at
401 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 {
symbol-table.h 4 // You may obtain a copy of the License at
227 // Create a reference counted copy.
302 // create a reference counted copy
303 virtual SymbolTable* Copy() const {
412 // Copy on write
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 5 // You may obtain a copy of the License at
92 : CacheImpl<A>(opts), fst_(fst.Copy()), comp_(comp) {
101 : fst_(impl.fst_->Copy()), comp_(impl.comp_) {
233 virtual ArcSortFst<A, C> *Copy() const {
complement.h 5 // You may obtain a copy of the License at
57 explicit ComplementFstImpl(const Fst<A> &fst) : fst_(fst.Copy()) {
148 virtual ComplementFst<A> *Copy() const {
const-fst.h 5 // You may obtain a copy of the License at
269 // Get a copy of this ConstFst
270 virtual ConstFst<A> *Copy() const {
encode.h 5 // You may obtain a copy of the License at
219 // Copy constructor but setting the type, typically to DECODE
353 virtual EncodeFst<A> *Copy() const { return new EncodeFst(*this); }
377 virtual DecodeFst<A> *Copy() const { return new DecodeFst(*this); }
relabel.h 5 // You may obtain a copy of the License at
168 : CacheImpl<A>(opts), fst_(fst.Copy()),
195 : CacheImpl<A>(opts), fst_(fst.Copy()),
384 virtual RelabelFst<A> *Copy() const {
symbol-table.h 5 // You may obtain a copy of the License at
164 // Create a reference counted copy.
175 // create a reference counted copy
176 SymbolTable* Copy() const {
326 // Constructor creates a refcounted copy of underlying implementation
factor-weight.h 5 // You may obtain a copy of the License at
163 : CacheImpl<A>(opts), fst_(fst.Copy()), delta_(opts.delta),
386 virtual FactorWeightFst<A, F> *Copy() const {
rmepsilon.h 5 // You may obtain a copy of the License at
333 fst_(fst.Copy()),
475 virtual RmEpsilonFst<A> *Copy() const {
synchronize.h 5 // You may obtain a copy of the License at
73 : CacheImpl<A>(opts), fst_(fst.Copy()) {
369 virtual SynchronizeFst<A> *Copy() const {
453 opts.gc_limit = 0; // Cache only the last state for fastest copy.
  /external/v8/src/
regexp-macro-assembler-irregexp.cc 443 Copy(array->GetDataStartAddress());
453 void RegExpMacroAssemblerIrregexp::Copy(Address a) {
  /external/webkit/Source/WebCore/platform/
Cursor.h 144 Copy,
  /external/chromium/chrome/browser/bookmarks/
bookmark_model.cc 218 void BookmarkModel::Copy(const BookmarkNode* node,
  /external/chromium/chrome/browser/ui/panels/
panel.cc 310 void Panel::Copy() {
  /external/llvm/include/llvm/ADT/
SmallBitVector.h 148 /// SmallBitVector copy ctor.
422 SmallBitVector Copy = RHS;
423 Copy.resize(size());
424 getPointer()->operator&=(*Copy.getPointer());
436 SmallBitVector Copy = RHS;
437 Copy.resize(size());
438 getPointer()->operator|=(*Copy.getPointer());
450 SmallBitVector Copy = RHS;
451 Copy.resize(size());
452 getPointer()->operator^=(*Copy.getPointer())
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 764 // Replace the TLS_base_addr instruction I with a copy from
773 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
775 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
776 TII->get(TargetOpcode::COPY),
783 return Copy;
787 // inserting a copy instruction after I. Returns the new instruction.
798 // Insert a copy from X0 to TLSBaseAddrReg for later.
800 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
801 TII->get(TargetOpcode::COPY),
805 return Copy;
    [all...]
  /external/webkit/Source/WebKit/wx/
WebFrame.cpp 424 void wxWebFrame::Copy()
427 m_impl->frame->editor()->copy();
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
typedefs.h 6 ** You may obtain a copy of the License at
195 #define Copy voAWB_Copy
  /external/chromium/base/
file_util_proxy.cc 15 // Performs common checks for move and copy.
17 // checks are passed (so that the copy/move correctly overwrites the
30 // It is an error to try to copy/move an entry into its child.
50 // It is an error to copy/move an entry into the same path.
55 // It is an error to copy/move an entry to a non-empty directory.
56 // Otherwise the copy/move attempt must overwrite the destination, but
57 // the file_util's Copy or Move method doesn't perform overwrite
59 // TODO(kinuko): may be better to change the file_util::{Copy,Move}.
807 bool FileUtilProxy::Copy(scoped_refptr<MessageLoopProxy> message_loop_proxy,
  /external/chromium/chrome/browser/automation/
automation_provider.cc 322 IPC_MESSAGE_HANDLER(AutomationMsg_Copy, Copy)
656 void AutomationProvider::Copy(int tab_handle) {
663 view->Copy();
    [all...]

Completed in 1536 milliseconds

1 23 4 5 6