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

12 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fpdfapi/page/
cpdf_color.cpp 121 void CPDF_Color::Copy(const CPDF_Color* pSrc) {
  /external/protobuf/src/google/protobuf/
reflection_ops.cc 48 void ReflectionOps::Copy(const Message& from, Message* to) {
  /external/swiftshader/third_party/LLVM/bindings/ocaml/target/
target_ocaml.c 35 value Copy = copy_string(StringRep);
37 return Copy;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTArray.h 46 @brief Copy constructor.
127 // Copy the first half to the new array
134 // Copy last half to the new array
232 // Copy source data to new array
247 @fn Copy
248 @brief A copy function. Will attempt to copy from other CPVRTArrays
253 void Copy(const CPVRTArray<T2>& other)
258 // Copy data
283 Copy(other)
    [all...]
  /art/openjdkjvmti/
ti_properties.cc 20 * version 2 for more details (a copy is included in the LICENSE file that
23 * You should have received a copy of the GNU General Public License version
148 static jvmtiError Copy(jvmtiEnv* env, const char* in, char** out) {
167 return Copy(env, prop_assignment.substr(assign_pos + 1).c_str(), value_ptr);
202 return Copy(env, chars.c_str(), value_ptr);
217 return Copy(env, DefaultToDot(art::Runtime::Current()->GetClassPathString()), value_ptr);
222 return Copy(env, kProperties[i][1], value_ptr);
  /art/runtime/
dex2oat_environment_test.h 6 * You may obtain a copy of the License at
133 static void Copy(const std::string& src, const std::string& dst) {
  /external/google-breakpad/src/client/
minidump_file_writer.cc 104 result = mdstring->Copy(str, mdstring->get()->length);
109 // Copy the string character by character
138 // Copy the string character by character
176 // Set length excluding the NULL and copy the string
211 if (!mem.Copy(src, mem.size()))
246 bool MinidumpFileWriter::Copy(MDRVA position, const void *src, ssize_t size) {
277 bool UntypedMDRVA::Copy(MDRVA pos, const void *src, size_t size) {
281 return writer_->Copy(pos, src, size);
minidump_file_writer.h 94 // Copy the contents of |str| to a MDString and write it to the file.
97 // Maximum |length| of characters to copy from |str|, or specify 0 to use the
114 bool Copy(MDRVA position, const void *src, ssize_t size);
139 // Copy |length| characters from |str| to |mdstring|. These are distinct
180 // Copy |size| bytes starting at |src| into the minidump at |position|
182 bool Copy(MDRVA position, const void *src, size_t size);
184 // Copy |size| bytes from |src| to the current position
185 inline bool Copy(const void *src, size_t size) {
186 return Copy(position_, src, size);
245 // Copy |item| to |index
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelDAGToDAG.cpp 166 // We cannot copy CC <-> !(CC/D)
168 SDNode *Copy =
174 UpdateNodeOperand(DAG, *UI, UI.getOperandNo(), SDValue(Copy, 0));
  /external/tensorflow/tensorflow/core/util/
tensor_slice_util.h 5 You may obtain a copy of the License at
27 // Some hackery to invoke eigen tensor to copy over tensor slices with variable
49 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d,
60 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d,
97 static void Copy(const SrcTensor& s, Shape s_start, Shape len, DstTensor& d,
181 CopyThatWorksWithStringPointer<DstT>::Copy(t_s, s_start, s_len, t_d,
  /external/toolchain-utils/automation/common/
command.py 172 def Copy(*args, **kwargs):
  /external/v8/src/crankshaft/
hydrogen-removable-simulates.cc 94 ? pred_state->Copy(succ_block, pred_block, zone)
139 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) {
140 State* copy = new(zone) State(*this); local
142 PrintF("[copy state %p from B%d to new state %p for B%d]\n",
144 reinterpret_cast<void*>(copy), succ_block->block_id());
146 return copy;
  /external/webrtc/webrtc/p2p/base/
sessiondescription.cc 73 SessionDescription* SessionDescription::Copy() const {
74 SessionDescription* copy = new SessionDescription(*this); local
75 // Copy all ContentDescriptions.
76 for (ContentInfos::iterator content = copy->contents_.begin();
77 content != copy->contents().end(); ++content) {
78 content->description = content->description->Copy();
80 return copy;
  /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));
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bv.go 61 func (dst bvec) Copy(src bvec) {
62 copy(dst.b, src.b)
160 copy(s, "#*")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
bv.go 61 func (dst bvec) Copy(src bvec) {
62 copy(dst.b, src.b)
160 copy(s, "#*")
  /build/blueprint/parser/
ast.go 5 // You may obtain a copy of the License at
65 func (m *Module) Copy() *Module {
69 ret.Properties[i] = m.Properties[i].Copy()
97 func (p *Property) Copy() *Property {
99 ret.Value = p.Value.Copy()
115 // Copy returns a copy of the Expression that will not affect the original if mutated
116 Copy() Expression
193 func (x *Operator) Copy() Expression {
195 ret.Args[0] = x.Args[0].Copy()
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 59 /** Read or copy elements from the FIFO.
79 /** Make a copy of the FIFO's data.
85 @param[in] Count Number of elements to copy.
186 cFIFO_Copy Copy; ///< Non-destructive copy from FIFO.
196 cFIFO_GetRDex GetRDex; ///< Get a copy of the current Read Index.
197 cFIFO_GetWDex GetWDex; ///< Get a copy of the current Write Index.
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 374 // - Copy(raw_container) returns an STL-style container view of a
375 // copy of raw_container, which is a RawContainer.
391 static type Copy(const RawContainer& container) { return container; }
429 static type Copy(const Element (&array)[N]) {
453 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/googletest/googlemock/include/gmock/internal/
gmock-internal-utils.h 351 // other types. Useful for saving a copy of a function argument.
399 // - Copy(raw_container) returns an STL-style container view of a
400 // copy of raw_container, which is a RawContainer.
416 static type Copy(const RawContainer& container) { return container; }
455 static type Copy(const Element (&array)[N]) {
478 static type Copy(const ::testing::tuple<ElementPointer, Size>& array) {
  /external/libvpx/libvpx/test/
consistency_test.cc 92 void Copy(uint8_t *reference, uint8_t *source) {
154 Copy(source_data_[1], source_data_[0]);
155 Copy(reference_data_[0], source_data_[0]);
157 Copy(reference_data_[1], source_data_[0]);
174 Copy(source_data_[1], source_data_[0]);
184 Copy(source_data_[1], source_data_[0]);
185 Copy(reference_data_[0], source_data_[0]);
186 Copy(reference_data_[1], source_data_[0]);
191 Copy(reference_data_[1], source_data_[0]);
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 204 // Test copy constructor method
213 // Test copy constructor method where SmallDenseMap isn't small.
343 // Simple class that counts how many moves and copy happens when growing a map
346 static int Copy;
349 CountCopyAndMove(const CountCopyAndMove &) { Copy++; }
351 Copy++;
360 int CountCopyAndMove::Copy = 0;
377 CountCopyAndMove::Copy = 0;
387 // Check that no copy occured
388 EXPECT_EQ(0, CountCopyAndMove::Copy);
    [all...]
  /external/skia/src/gpu/
GrSurfaceProxy.cpp 292 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context,
308 // We use an ephemeral surface context to make the copy. Here it isn't clear what color space
309 // to tag it with. That's ok because GrSurfaceContext::copy doesn't do any color space
323 if (!dstContext->copy(src, srcRect, SkIPoint::Make(0, 0))) {
330 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, GrSurfaceProxy* src,
333 return Copy(context, src, mipMapped, SkIRect::MakeWH(src->width(), src->height()), budgeted);
348 if (!dstContext->copy(srcProxy)) {
  /external/skqp/src/gpu/
GrSurfaceProxy.cpp 264 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context,
289 if (!dstContext->copy(src, srcRect, SkIPoint::Make(0, 0))) {
296 sk_sp<GrTextureProxy> GrSurfaceProxy::Copy(GrContext* context, GrSurfaceProxy* src,
299 return Copy(context, src, mipMapped, SkIRect::MakeWH(src->width(), src->height()), budgeted);
314 if (!dstContext->copy(srcProxy)) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
BitVector.h 87 /// BitVector copy ctor.
166 BitWord Copy = Bits[WordPos];
168 Copy &= ~0L << BitPos;
170 if (Copy != 0) {
172 return WordPos * BITWORD_SIZE + CountTrailingZeros_32((uint32_t)Copy);
174 return WordPos * BITWORD_SIZE + CountTrailingZeros_64(Copy);

Completed in 1413 milliseconds

12 3 4 5 6 7 8 91011>>