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

12 3 4 5 6

  /external/chromium/webkit/glue/
webcursor.cc 34 Copy(other);
42 Copy(other);
160 void WebCursor::Copy(const WebCursor& other) {
  /external/openfst/src/include/fst/
concat.h 5 // You may obtain a copy of the License at
210 // See Fst<>::Copy() for doc.
214 // Get a copy of this ConcatFst. See Fst<>::Copy() for further doc.
215 virtual ConcatFst<A> *Copy(bool safe = false) const {
project.h 5 // You may obtain a copy of the License at
112 // See Fst<>::Copy() for doc.
116 // Get a copy of this ProjectFst. See Fst<>::Copy() for further doc.
117 virtual ProjectFst<A> *Copy(bool safe = false) const {
union.h 5 // You may obtain a copy of the License at
149 // See Fst<>::Copy() for doc.
153 // Get a copy of this UnionFst. See Fst<>::Copy() for further doc.
154 virtual UnionFst<A> *Copy(bool safe = false) const {
arcsort.h 5 // You may obtain a copy of the License at
133 // 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 {
complement.h 5 // You may obtain a copy of the License at
63 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 {
matcher-fst.h 5 // You may obtain a copy of the License at
52 // // Required copy constructor.
102 // 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 {
217 matcher_ = matcher.matcher_->Copy();
222 Matcher<FST> *Copy() const {
257 matcher_ = matcher.matcher_->Copy(safe);
263 LookAheadMatcher<FST> *Copy(bool safe = false) const
    [all...]
relabel.h 5 // You may obtain a copy of the License at
216 : 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 {
state-map.h 5 // You may obtain a copy of the License at
50 // // Required copy constructor that allows updating Fst argument;
211 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 {
  /external/regex-re2/re2/
simplify.cc 111 virtual Regexp* Copy(Regexp* re);
154 Regexp* SimplifyWalker::Copy(Regexp* re) {
walker-inl.h 50 // Virtual method called to copy a T,
52 virtual T Copy(T arg);
69 // Like Walk, but doesn't use Copy. This can lead to
112 template<typename T> T Regexp::Walker<T>::Copy(T arg) {
197 s->child_args[s->n] = Copy(s->child_args[s->n - 1]);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
concat.h 5 // You may obtain a copy of the License at
124 virtual ConcatFst<A> *Copy() const { return new ConcatFst<A>(*this); }
union.h 5 // You may obtain a copy of the License at
126 virtual UnionFst<A> *Copy() const { return new UnionFst<A>(*this); }
  /external/chromium/net/base/
address_list.cc 117 void AddressList::Copy(const struct addrinfo* head, bool recursive) {
162 // Otherwise we need to make a copy in order to change the port number.
163 Copy(src.head(), true);
  /external/chromium/testing/gmock/include/gmock/internal/
gmock-internal-utils.h 371 // - Copy(raw_container) returns an STL-style container view of a
372 // copy of raw_container, which is a RawContainer.
388 static type Copy(const RawContainer& container) { return container; }
426 static type Copy(const Element (&array)[N]) {
450 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/chromium/third_party/libjingle/source/talk/base/
cryptstring.h 45 virtual CryptStringImpl * Copy() const = 0;
59 virtual CryptStringImpl * Copy() const { return new 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 {
184 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl; local
185 copy->password() = password_;
186 return copy;
  /external/clang/lib/Sema/
TypeLocBuilder.h 60 /// Pushes a copy of the given TypeLoc onto this builder. The builder
64 TypeLoc Copy = pushFullUninitializedImpl(L.getType(), Size);
65 memcpy(Copy.getOpaqueData(), L.getOpaqueData(), Size);
156 // Allocate the new buffer and copy the old data into it.
  /external/open-vcdiff/src/
encodetable.cc 6 // You may obtain a copy of the License at
159 // opcode 0xA3 (ADD size 1 + COPY size 4 mode 0).
166 // double-instruction opcode (say, COPY size 0 mode 0 + ADD size 0)
167 // followed by the size of the COPY, then by the size of the ADD.
168 // If using the SDCH interleaved format, the address of the COPY instruction
170 // [Compound Opcode][Size of COPY][Address of COPY][Size of ADD]
248 void VCDiffCodeTableWriter::Copy(int32_t offset, size_t size) {
250 VCD_DFATAL << "VCDiffCodeTableWriter::Copy() called without calling Init()"
  /external/openfst/src/include/fst/script/
weight-class.h 4 // You may obtain a copy of the License at
34 virtual WeightImplBase *Copy() const = 0;
48 virtual WeightClassImpl<W> *Copy() const {
89 impl_(other.impl_ ? other.impl_->Copy() : 0) { }
93 impl_ = other.impl_ ? other.impl_->Copy() : 0;
fst-class.h 4 // You may obtain a copy of the License at
63 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() {
174 FstClass(const FstClass &other) : impl_(other.impl_->Copy()) { }
178 impl_ = other.impl_->Copy();
  /external/valgrind/unittest/
linear_solver.h 70 inline void Copy(const Vector & from) {
260 m_by_curr.Copy(perf_m.MultiplyRight(current));
262 derivative.Copy(perf_m.MultiplyLeft(stats_v - m_by_curr));
298 stats_est.Copy(perf_m.MultiplyRight(current));
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.h 44 Copy,
  /external/chromium/chrome/browser/chromeos/frame/
browser_view.cc 321 void BrowserView::Copy() {
  /external/llvm/include/llvm/ADT/
BitVector.h 88 /// BitVector copy ctor.
173 BitWord Copy = Bits[WordPos];
175 Copy &= ~0UL << BitPos;
177 if (Copy != 0) {
179 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
181 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);
  /external/llvm/lib/CodeGen/
PeepholeOptimizer.cpp 138 /// optimizeExtInstr - If instruction is a copy-like instruction, i.e. it reads
219 // %reg1027 = COPY %reg1025:4
224 // the COPY here, it will give us the value after the <sext>, not the
252 std::copy(ExtendedUses.begin(), ExtendedUses.end(),
284 MachineInstr *Copy = BuildMI(*UseMBB, UseMI, UseMI->getDebugLoc(),
285 TII->get(TargetOpcode::COPY), NewVR)
289 Copy->getOperand(0).setSubReg(SubIdx);
290 Copy->getOperand(0).setIsUndef();

Completed in 648 milliseconds

12 3 4 5 6