/external/compiler-rt/BlocksRuntime/tests/ |
byrefstruct.c | 21 BobTheStruct copy; local 32 memset(©, 0x2A, sizeof(copy)); 40 copy = fiddly; 43 if ( © == &fiddly ) { 48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]); 49 if ( (fiddly.ps[i] != copy.ps[i] + 1) || (fiddly.qs[i] != copy.qs[i] + 1) ) [all...] |
byrefcopyint.c | 50 voidVoid copy = Block_copy(dummy); local 53 return copy;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
LenientSerializableTester.java | 6 * You may obtain a copy of the License at 47 Set<E> copy = reserialize(original); local 48 assertEquals(original, copy); 49 assertTrue(copy instanceof ImmutableSet); 50 return copy;
|
HashMultisetTest.java | 6 * You may obtain a copy of the License at 65 Multiset<Multiset<?>> copy = SerializableTester.reserialize(multiset); local 66 assertEquals(2, copy.size()); 67 assertSame(copy, copy.iterator().next()); 84 Multiset<MultisetHolder> copy = SerializableTester.reserialize(multiset); local 85 assertEquals(2, copy.size()); 86 assertSame(copy, copy.iterator().next().member);
|
/external/webkit/Source/WebKit2/Shared/API/c/mac/ |
WKURLRequestNS.mm | 36 RetainPtr<NSURLRequest> copiedURLRequest(AdoptNS, [urlRequest copy]); 43 return [toImpl(urlRequest)->platformRequest() copy];
|
WKURLResponseNS.mm | 36 RetainPtr<NSURLResponse> copiedURLResponse(AdoptNS, [urlResponse copy]); 43 return [toImpl(urlResponse)->platformResponse() copy];
|
/ndk/sources/cxx-stl/llvm-libc++/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/ |
copy.pass.cpp | 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n); 23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
|
/external/chromium/chrome/browser/ui/cocoa/applescript/ |
element_applescript.h | 22 @property(nonatomic, copy) NSNumber* uniqueID; 24 @property(nonatomic, copy) NSString* containerProperty;
|
/external/libpng/ |
autogen.sh | 10 libtoolize --force --copy --automake
|
/external/webkit/Source/WebCore/platform/ |
CrossThreadCopier.h | 53 static Type copy(const T& parameter) function in struct:WebCore::CrossThreadCopierPassThrough 72 // Custom copy methods. 77 static Type copy(const T& refPtr) function in struct:WebCore::CrossThreadCopierBase 85 static Type copy(Type ownPtr) function in struct:WebCore::CrossThreadCopierBase 93 static Type copy(const KURL&); 98 static Type copy(const String&); 103 static Type copy(const ResourceError&); 108 static Type copy(const ResourceRequest&); 113 static Type copy(const ResourceResponse&);
|
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/ |
WebDOMTestCallback.cpp | 15 * You should have received a copy of the GNU Library General Public License 64 WebDOMTestCallback::WebDOMTestCallback(const WebDOMTestCallback& copy) 67 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0; 70 WebDOMTestCallback& WebDOMTestCallback::operator=(const WebDOMTestCallback& copy) 73 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0;
|
WebDOMTestInterface.cpp | 15 * You should have received a copy of the GNU Library General Public License 53 WebDOMTestInterface::WebDOMTestInterface(const WebDOMTestInterface& copy) 56 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0; 59 WebDOMTestInterface& WebDOMTestInterface::operator=(const WebDOMTestInterface& copy) 62 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
|
WebDOMTestMediaQueryListListener.cpp | 15 * You should have received a copy of the GNU Library General Public License 52 WebDOMTestMediaQueryListListener::WebDOMTestMediaQueryListListener(const WebDOMTestMediaQueryListListener& copy) 55 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0; 58 WebDOMTestMediaQueryListListener& WebDOMTestMediaQueryListListener::operator=(const WebDOMTestMediaQueryListListener& copy) 61 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
|
WebDOMTestSerializedScriptValueInterface.cpp | 15 * You should have received a copy of the GNU Library General Public License 54 WebDOMTestSerializedScriptValueInterface::WebDOMTestSerializedScriptValueInterface(const WebDOMTestSerializedScriptValueInterface& copy) 57 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0; 60 WebDOMTestSerializedScriptValueInterface& WebDOMTestSerializedScriptValueInterface::operator=(const WebDOMTestSerializedScriptValueInterface& copy) 63 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
|
/external/webkit/Source/WebCore/loader/mac/ |
DocumentLoaderMac.cpp | 41 const ResourceLoaderSet copy = loaders; local 42 ResourceLoaderSet::const_iterator end = copy.end(); 43 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it) 50 const ResourceLoaderSet copy = loaders; local 51 ResourceLoaderSet::const_iterator end = copy.end(); 52 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/ |
CipherOutputStream.java | 45 int copy = (len > space) ? space : len; local 47 System.arraycopy(src, off, out_buffer, out_buffer_pos, copy); 49 off += copy; 50 out_buffer_pos += copy; 51 len -= copy; 115 int copy = Math.min(avail, len); local 117 System.arraycopy(src, off, buffer, pos, copy); 118 pos += copy; 119 off += copy; 120 len -= copy; [all...] |
/external/llvm/bindings/ocaml/llvm/ |
Makefile | 21 all-local:: copy-meta 28 copy-meta: $(OcamlDir)/META.llvm 42 .PHONY: copy-meta install-meta uninstall-meta
|
/external/stlport/test/unit/ |
finsert_test.cpp | 36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names)); 42 copy(array, array + 3, fit); 53 copy(array, array + 3, front_inserter(names));
|
/external/tinyxml/ |
tinystr.h | 33 * - added "copy" constructor with length, and most compare operators. 67 // TiXmlString copy constructor 68 TiXmlString (const TiXmlString & copy) 70 init(copy.length()); 71 memcpy(start(), copy.data(), length()); 75 TiXmlString (const char * copy) 77 init( static_cast<size_type>( strlen(copy) )); 78 memcpy(start(), copy, length()); local 95 TiXmlString& operator = (const char * copy) 97 return assign( copy, (size_type)strlen(copy)) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
finsert_test.cpp | 36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names)); 42 copy(array, array + 3, fit); 53 copy(array, array + 3, front_inserter(names));
|
/ndk/tests/device/test-stlport/unit/ |
finsert_test.cpp | 36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names)); 42 copy(array, array + 3, fit); 53 copy(array, array + 3, front_inserter(names));
|
/system/core/libcutils/ |
process_name.c | 6 * You may obtain a copy of the License at 44 char* copy = (char*) malloc(len + 1); local 45 strcpy(copy, new_name); 46 process_name = (const char*) copy;
|
/bionic/libc/bionic/ |
scandir.cpp | 6 * You may obtain a copy of the License at 59 dirent* copy = CopyDirent(entry); local 60 if (copy == NULL) { 63 names_[size_++] = copy; 82 dirent* copy = (dirent*) malloc(size); local 83 memcpy(copy, original, original->d_reclen); 84 return copy; 87 // Disallow copy and assignment.
|
/external/chromium/ui/gfx/ |
point.h | 58 Point copy = *this; local 59 copy.Offset(other.x_, other.y_); 60 return copy; 64 Point copy = *this; local 65 copy.Offset(-other.x_, -other.y_); 66 return copy;
|
/frameworks/base/libs/hwui/ |
SkiaShader.cpp | 6 * You may obtain a copy of the License at 109 SkiaShader* SkiaBitmapShader::copy() { function in class:android::uirenderer::SkiaBitmapShader 110 SkiaBitmapShader* copy = new SkiaBitmapShader(); local 111 copy->copyFrom(*this); 112 copy->mBitmap = mBitmap; 113 return copy; 205 SkiaShader* SkiaLinearGradientShader::copy() { function in class:android::uirenderer::SkiaLinearGradientShader 206 SkiaLinearGradientShader* copy = new SkiaLinearGradientShader(); local 207 copy->copyFrom(*this); 208 copy->mBounds = new float[4] 272 SkiaShader* SkiaCircularGradientShader::copy() { function in class:android::uirenderer::SkiaCircularGradientShader 273 SkiaCircularGradientShader* copy = new SkiaCircularGradientShader(); local 327 SkiaShader* SkiaSweepGradientShader::copy() { function in class:android::uirenderer::SkiaSweepGradientShader 328 SkiaSweepGradientShader* copy = new SkiaSweepGradientShader(); local 387 SkiaShader* SkiaComposeShader::copy() { function in class:android::uirenderer::SkiaComposeShader 388 SkiaComposeShader* copy = new SkiaComposeShader(); local [all...] |