Searched refs:copy (Results 251 - 275 of 1267) sorted by relevance

<<11121314151617181920>>

/external/openssh/regress/
H A Dssh-com-sftp.sh7 COPY=${OBJ}/copy
60 cmp $DATA ${COPY}.1 || fail "corrupted copy after get"
61 cmp $DATA ${COPY}.2 || fail "corrupted copy after put"
/external/safe-iop/
H A DAndroid.mk5 # You may obtain a copy of the License at
/external/stlport/src/
H A Dcodecvt.cpp11 * Permission to use or copy this software for any purpose is hereby granted
91 copy(from, from + len, to);
106 copy(__REINTERPRET_CAST(const unsigned char*, from),
/external/stlport/test/eh/
H A DLeakCheck.h5 * Permission to use, copy, modify, distribute and sell this software
59 copy of the value triggering the nth possible exception, where n increments
174 EH_STD::copy(dup.begin(), dup.end(), o);
176 EH_STD::copy(v.begin(), v.end(), o);
/external/webkit/Source/JavaScriptCore/
H A Dwscript79 myenv = obj.env.copy()
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferCG.cpp205 // We're drawing into our own buffer. In order for this to work, we need to copy the source buffer first.
206 RefPtr<Image> copy = copyImage(); local
207 destContext->drawImage(copy.get(), ColorSpaceDeviceRGB, destRect, srcRect, op, useLowQualityScale);
213 RefPtr<Image> copy = copyImage(); local
215 destContext->drawImage(copy.get(), colorSpace, destRect, srcRect, op, useLowQualityScale);
224 // We're drawing into our own buffer. In order for this to work, we need to copy the source buffer first.
225 RefPtr<Image> copy = copyImage(); local
226 copy->drawPattern(destContext, srcRect, patternTransform, phase, styleColorSpace, op, destRect);
232 RefPtr<Image> copy = copyImage(); local
233 copy
[all...]
/external/webkit/Tools/android/webkitmerge/
H A DAndroid.mk5 # You may obtain a copy of the License at
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A DAndroid.mk5 # You may obtain a copy of the License at
/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java38 * Constructs a copy of an exceptions attribute.
62 * Makes a copy. Class names are replaced according to the
65 * @param newCp the constant pool table used by the new copy.
69 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ExceptionsAttribute
75 * Specified class names are replaced during the copy.
91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
/external/astl/include/
H A Dchar_traits.h75 static char* copy(char* lhs, const char* rhs, size_t n) function in struct:std::char_traits
/external/chromium/chrome/browser/ui/webui/
H A Dtextfields_ui.cc36 std::copy(full_html.begin(), full_html.end(), html_bytes->data.begin());
/external/chromium/testing/gtest/test/
H A Dgtest_env_var_test.py45 environ = os.environ.copy()
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstream.cc743 const size_t copy = data_length_; local
744 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
746 memcpy(buffer + tail_copy, &buffer_[0], copy - tail_copy);
767 const size_t copy = _min(bytes, available);
768 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
771 memcpy(p + tail_copy, &buffer_[0], copy - tail_copy);
772 read_position_ = (read_position_ + copy) % buffer_length_;
773 data_length_ -= copy;
775 *bytes_read = copy;
778 if (!was_writable && copy >
800 const size_t copy = _min(bytes, available); local
[all...]
/external/clang/include/clang/AST/
H A DStmtIterator.h172 StmtRange copy = *this; local
174 return copy;
215 ConstStmtRange copy = *this; local
217 return copy;
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp30 copy(NodeMap.begin(), NodeMap.end(),
/external/clang/test/CodeGen/
H A Dblocksignature.c43 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE
H A Dblockstret.c45 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE member in struct:block_descriptor_big
/external/clang/test/CodeGenCXX/
H A Dlvalue-bitcasts.cpp147 void copy( const struct in_addr &new_addr ) { function in namespace:PR6437
/external/compiler-rt/BlocksRuntime/
H A DBlock_private.h5 * to any person obtaining a copy of this software and associated documentation
7 * including without limitation the rights to use, copy, modify, merge, publish,
65 void (*copy)(void *dst, void *src); member in struct:Block_descriptor
99 /* Runtime support functions used by compiler when generating copy/dispose helpers. */
106 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy helpers */
107 BLOCK_BYREF_CALLER = 128 /* called from __block (byref) copy/dispose support routines. */
110 /* Runtime entry point called by compiler when assigning objects inside copy helper routines */
112 /* BLOCK_FIELD_IS_BYREF is only used from within block copy helpers */
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpecSet.java6 * You may obtain a copy of the License at
377 * Makes and return a mutable copy of this instance.
379 * @return {@code non-null;} the mutable copy
383 RegisterSpecSet copy = new RegisterSpecSet(len);
388 copy.put(spec);
392 copy.size = size;
394 return copy;
/external/gtest/test/
H A Dgtest_env_var_test.py45 environ = os.environ.copy()
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java6 * You may obtain a copy of the License at
167 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet);
168 assertNotSame(sortedSet, copy);
187 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list);
188 assertTrue(copy instanceof ImmutableAsList);
/external/guava/guava-tests/test/com/google/common/io/
H A DByteStreamsTest.java6 * You may obtain a copy of the License at
19 import static com.google.common.io.ByteStreams.copy;
192 // copy, both suppliers
193 ByteStreams.copy(okRead, okWrite);
198 ByteStreams.copy(okRead, brokenWrite);
207 ByteStreams.copy(brokenRead, okWrite);
216 ByteStreams.copy(brokenRead, brokenWrite);
224 // copy, input supplier
226 ByteStreams.copy(okRead, out);
233 ByteStreams.copy(okRea
[all...]
/external/icu4c/common/unicode/
H A Drep.h116 * @param target UnicodeString into which to copy characters.
172 virtual void copy(int32_t start, int32_t limit, int32_t dest) = 0;
/external/icu4c/stubdata/
H A DAndroid.mk5 # You may obtain a copy of the License at
42 $(eval $(call copy-one-file,$(LOCAL_PATH)/$(root)-$(config).dat,$(HOST_OUT)/usr/icu/$(root).dat))

Completed in 3059 milliseconds

<<11121314151617181920>>