HomeSort by relevance Sort by last modified time
    Searched refs:Copy (Results 1 - 25 of 557) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/shared_impl/
compositor_layer_data.cc 12 void Copy(scoped_ptr<T>* a, const scoped_ptr<T>& b) {
29 Copy(&color, other.color);
30 Copy(&texture, other.texture);
31 Copy(&image, other.image);
  /external/lzma/CPP/7zip/Compress/
CopyRegister.cpp 12 { CreateCodec, CreateCodec, 0x00, L"Copy", 1, false };
14 REGISTER_CODEC(Copy)
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
copy.h 6 * You may obtain a copy of the License at
37 * File : copy.h
38 * Purpose : Copy vector x[] to y[]
72 * Function : Copy
73 * Purpose : Copy vector x[] to y[], vector length L
78 void Copy(
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
copy.cpp 6 * You may obtain a copy of the License at
37 * File : copy.h
47 #include "copy.h"
66 * FUNCTION: Copy
68 * PURPOSE: Copy vector x[] to y[]
75 * Function : Copy
76 * Purpose : Copy vector x[] to y[]
80 void Copy(
  /external/chromium_org/third_party/webrtc/common_video/
plane.h 32 // Copy the entire plane data.
34 int Copy(const Plane& plane);
36 // Copy buffer: If current size is smaller
39 int Copy(int size, int stride, const uint8_t* buffer);
  /external/chromium_org/tools/telemetry/telemetry/unittest/
options_for_unittests.py 25 return _options.Copy()
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf.cpp 6 * You may obtain a copy of the License at
71 #include "copy.h"
160 Copy(mean_lsf, &state->past_lsf_q[0], M);
203 Copy(mean_lsf_5, &state->past_lsf_q[0], M);
lsp_avg.cpp 6 * You may obtain a copy of the License at
84 #include "copy.h"
163 Copy(mean_lsf, &st->lsp_meanSave[0], M);
199 Copy(mean_lsf_5, &st->lsp_meanSave[0], M);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Copy.java 6 * You may obtain a copy of the License at
24 public class Copy extends TestBase {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mspenum.h 11 template <class Base,const IID *piid,class T,class Copy,class ThreadModel = CComObjectThreadModel>
12 class ATL_NO_VTABLE CSafeComEnum : public CComEnumImpl<Base,piid,T,Copy>,public CComObjectRootEx< ThreadModel >
14 typedef CSafeComEnum<Base,piid,T,Copy,ThreadModel> ThisClass;
15 typedef CComEnumImpl<Base,piid,T,Copy> BaseClass;
  /external/chromium_org/chrome/browser/chromeos/settings/
mock_owner_key_util.cc 22 return private_key_.get() ? private_key_->Copy() : NULL;
28 return private_key_.get() ? private_key_->Copy() : NULL;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
packet.h 17 // NOTE: The Packet class always owns the buffer and address, either by 'Copy'
24 // Copy the buffer, and address reference
25 void Copy(const void* buffer, size_t len, PP_Resource addr);
  /external/chromium_org/sdch/open-vcdiff/src/
codetablewriter_interface.h 6 // You may obtain a copy of the License at
19 // series of Add, Copy, and Run instructions and produces an output file in the
34 // {{Add|Copy|Run}* Output}*
36 // Output() will produce an encoding using the given series of Add, Copy,
59 // Encode a COPY opcode with args "offset" (into dictionary) and "size" bytes.
60 virtual void Copy(int32_t offset, size_t size) = 0;
77 // size arguments passed to Add(), Copy(), and Run().
jsonwriter.h 6 // You may obtain a copy of the License at
36 // * Each COPY is represented by two numbers. The first is an offset into
52 // Encode a COPY opcode with args "offset" (into dictionary) and "size" bytes.
53 virtual void Copy(int32_t offset, size_t size);
72 // size arguments passed to Add(), Copy(), and Run().
85 // The sum of all the size arguments passed to Add(), Copy() and Run().
  /external/protobuf/src/google/protobuf/
reflection_ops.h 58 static void Copy(const Message& from, Message* to);
  /external/llvm/include/llvm/IR/
ValueMap.h 216 // Make a copy that won't get changed even when *this is destroyed.
217 ValueMapCallbackVH Copy(*this);
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.
229 // Make a copy that won't get changed even when *this is destroyed.
230 ValueMapCallbackVH Copy(*this);
231 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
cryptstring.h 47 virtual CryptStringImpl * Copy() const = 0;
61 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); }
72 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
73 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
76 impl_.reset(other.impl_->Copy());
185 virtual CryptStringImpl * Copy() const {
186 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl; local
187 copy->password() = password_;
188 return copy;
  /external/chromium_org/third_party/webrtc/base/
cryptstring.h 30 virtual CryptStringImpl * Copy() const = 0;
44 virtual CryptStringImpl * Copy() const { return new EmptyCryptStringImpl(); }
55 CryptString(const CryptString & other) : impl_(other.impl_->Copy()) {}
56 explicit CryptString(const CryptStringImpl & impl) : impl_(impl.Copy()) {}
59 impl_.reset(other.impl_->Copy());
168 virtual CryptStringImpl * Copy() const {
169 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl; local
170 copy->password() = password_;
171 return copy;
  /external/chromium_org/sync/syncable/
syncable_id.h 50 Copy(that);
53 Copy(that);
56 inline void Copy(const Id& that) {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmailCopyContextMenu.java 7 * You may obtain a copy of the License at
62 * Copy class for handling click event on the "Copy" button and storing
65 private class Copy implements MenuItem.OnMenuItemClickListener {
68 public Copy(CharSequence text) {
74 copy(mText);
81 * Copy the input text sequence to the system clipboard.
84 private void copy(CharSequence text) { method in class:EmailCopyContextMenu
109 new Copy(mAddress));
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 34 # Copy 'fn' and 'arg' onto the child stack.
  /external/chromium_org/third_party/libjingle/source/talk/sound/
sounddevicelocator.h 52 virtual SoundDeviceLocator *Copy() const = 0;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
reflection_ops.h 59 static void Copy(const Message& from, Message* to);
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
media_codec_video_decoder.h 46 virtual VideoDecoder* Copy() {
  /external/llvm/lib/Target/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 90 // Replace the TLS_base_addr instruction I with a copy from
99 // Insert a Copy from TLSBaseAddrReg to x0, which is where the rest of the
101 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(),
102 TII->get(TargetOpcode::COPY),
108 return Copy;
112 // inserting a copy instruction after I. Returns the new instruction.
123 // Insert a copy from X0 to TLSBaseAddrReg for later.
125 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(),
126 TII->get(TargetOpcode::COPY),
129 return Copy;
    [all...]

Completed in 762 milliseconds

1 2 3 4 5 6 7 8 91011>>