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

1 2 34 5 6

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 326 /// Returns a copy of this CallEvent, but using the given state.
330 /// Returns a copy of this CallEvent, but using the given state.
    [all...]
  /external/llvm/lib/CodeGen/
TailDuplication.cpp 279 MachineInstr *Copy = Copies[i];
280 if (!Copy->isCopy())
282 unsigned Dst = Copy->getOperand(0).getReg();
283 unsigned Src = Copy->getOperand(1).getReg();
286 // Copy is the only use. Do trivial copy propagation here.
288 Copy->eraseFromParent();
352 // block (which is why we need to copy the information).
382 /// ProcessPHI - Process PHI node in TailBB by turning it into a copy in PredBB.
399 // Insert a copy from source to the end of the block. The def register is th
    [all...]
  /external/openfst/src/include/fst/
compose.h 5 // You may obtain a copy of the License at
146 virtual ComposeFstImplBase<A> *Copy() = 0;
243 virtual ComposeFstImpl<M1, M2, F, T> *Copy() {
538 // See Fst<>::Copy() for doc.
541 SetImpl(fst.GetImpl()->Copy());
546 // Get a copy of this ComposeFst. See Fst<>::Copy() for further doc.
547 virtual ComposeFst<A> *Copy(bool safe = false) const {
706 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
710 copts.gc_limit = 0; // Cache only the last state for fastest copy
    [all...]
edit-fst.h 4 // You may obtain a copy of the License at
35 // ExpandedFst. The implementation uses copy-on-write semantics at the node
38 // will copy the edited node to an internal MutableFst and perform any edits in
44 // 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
56 // allows EditFstImpl to implement the thread-safe, copy-on-write semantics
57 // required by Fst::Copy(true).
64 // crucially, MutableFstT::Copy(false) *must* yield an fst that is
300 // copy the final weight
369 // The implementation uses copy-on-write semantics at the node level: if a use
    [all...]
lookahead-matcher.h 5 // You may obtain a copy of the License at
51 // // If safe=true, the copy is thread-safe (except the lookahead Fst is
82 // // call LookAheadFst? If so, return true and copy it to '*arc', o.w.
88 // // to LookAheadFst() for possible precomputation. If copy is true,
89 // // then 'fst' is a copy of the FST used in the previous call to
91 // void InitLookAheadFst(const Fst<Arc>& fst, bool copy = false);
163 virtual void InitLookAheadFst(const Fst<Arc>& fst, bool copy = false) = 0;
201 TrivialLookAheadMatcher<M> *Copy(bool safe = false) const {
222 void InitLookAheadFst(const Fst<Arc>& fst, bool copy = false) {}
280 ArcLookAheadMatcher<M, F> *Copy(bool safe = false) const
    [all...]
matcher.h 5 // You may obtain a copy of the License at
50 // // 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
    [all...]
randgen.h 5 // You may obtain a copy of the License at
259 } else { // shallow copy
350 fst_(fst.Copy()),
367 fst_(impl.fst_->Copy(true)),
524 // See Fst<>::Copy() for doc.
528 // Get a copy of this RandGenFst. See Fst<>::Copy() for further doc.
529 virtual RandGenFst<A, B, S> *Copy(bool safe = false) const {
vector-fst.h 5 // You may obtain a copy of the License at
430 // Get a copy of this VectorFst. See Fst<>::Copy() for further doc.
431 virtual VectorFst<A> *Copy(bool safe = false) const {
arc-map.h 5 // You may obtain a copy of the License at
335 fst_(fst.Copy()),
346 fst_(fst.Copy()),
356 fst_(impl.fst_->Copy(true)),
574 // See Fst<>::Copy() for doc.
578 // Get a copy of this ArcMapFst. See Fst<>::Copy() for further doc.
579 virtual ArcMapFst<A, B, C> *Copy(bool safe = false) const {
    [all...]
compact-fst.h 6 // You may obtain a copy of the License at
847 // See Fst<>::Copy() for doc.
851 // Get a copy of this CompactFst. See Fst<>::Copy() for further doc.
852 virtual CompactFst<A, C, U> *Copy(bool safe = false) const {
    [all...]
determinize.h 6 // You may obtain a copy of the License at
144 // and copy constructor.
175 // // Required copy constructor that does not copy state
181 // // copy it if it creates a new state).
215 // the subset argument (so that it doesn't have to copy it if it
376 : CacheImpl<A>(opts), fst_(fst.Copy()) {
388 fst_(impl.fst_->Copy(true)) {
397 virtual DeterminizeFstImplBase<A> *Copy() = 0;
502 FSTERROR() << "DeterminizeFsaImpl: cannot copy with out_dist vector"
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
compose.h 5 // You may obtain a copy of the License at
76 ParenMatcher<F> *Copy(bool safe = false) const {
  /external/regex-re2/re2/
compile.cc 150 Frag Copy(Frag arg);
667 Frag Compiler::Copy(Frag arg) {
669 LOG(DFATAL) << "Compiler::Copy called!";
    [all...]
re2.h 418 // Note that PossibleMatchRange() will only consider the first copy of an
626 void Copy(const Options& src) {
    [all...]
regexp.cc 216 // Going to edit sub; make a copy so we don't step on caller.
494 void RegexpStatus::Copy(const RegexpStatus& status) {
780 CharClassBuilder* CharClassBuilder::Copy() {
827 // Build up negation and then copy in.
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
determinize.h 6 // You may obtain a copy of the License at
136 : CacheImpl<A>(opts), fst_(fst.Copy()) {
266 // ownership of the subset argument (so that it doesn't have to copy it
589 virtual DeterminizeFst<A> *Copy() const {
714 nopts.gc_limit = 0; // Cache only the last state for fastest copy.
map.h 5 // You may obtain a copy of the License at
271 : CacheImpl<B>(opts), fst_(fst.Copy()),
281 : CacheImpl<B>(opts), fst_(fst.Copy()),
514 virtual MapFst<A, B, C> *Copy() const {
replace.h 5 // You may obtain a copy of the License at
32 // By default ReplaceFst will copy the input label of the 'replace arc'.
133 fst_array_.push_back(impl.fst_array_[i]->Copy());
145 fst_array_.push_back(fst->Copy());
214 fst_array_[nonterminal] = fst->Copy();
400 // copy constructor
497 // could potentially have one copy of prefix array
595 virtual ReplaceFst<A>* Copy() const {
677 opts.gc_limit = 0; // Cache only the last state for fastest copy.
vector-fst.h 5 // You may obtain a copy of the License at
517 // Get a copy of this VectorFst
518 virtual VectorFst<A> *Copy() const {
653 // Copy on write
  /external/v8/src/
handles.cc 335 Handle<JSObject> Copy(Handle<JSObject> obj) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 301 enum MoveOrCopy { Move, Copy };
  /external/webkit/Source/WebKit/wx/
WebView.cpp 279 // store a copy since there is no getter for MemoryCache values
854 void wxWebView::Copy()
857 m_mainFrame->Copy();
902 //Some things WebKit won't do for us... Copy/Cut/Paste and KB scrolling
907 Copy();
925 Copy();
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
WebViewContextMenu.java 7 * You may obtain a copy of the License at
86 // For our copy menu items.
87 private class Copy implements MenuItem.OnMenuItemClickListener {
90 public Copy(CharSequence text) {
96 copy(mText);
137 private void copy(CharSequence text) { method in class:WebViewContextMenu
231 // Copy
233 setOnMenuItemClickListener(new Copy(extra));
242 setOnMenuItemClickListener(new Copy(extra));
261 setOnMenuItemClickListener(new Copy(extra))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediachannel.h 279 // Make a copy of the frame. The frame buffer itself may not be copied,
282 virtual VideoFrame *Copy() const = 0;
364 virtual VideoFrame *Copy() const {
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 103 // Copy the result values into the output registers.
117 // If the function returns a struct, copy the SRetReturnReg to I0
288 //Copy the SRet Argument to SRetReturnReg
295 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
296 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
413 //Use local copy if it is a byval arg.
543 // Build a sequence of copy-to-reg nodes chained together with token
544 // chain and flag operands which copy the outgoing args into registers.
568 // Returns a chain & a flag for retval copy to use
599 // Copy all of the result registers out of their specified physreg
    [all...]

Completed in 563 milliseconds

1 2 34 5 6