Searched refs:copy (Results 76 - 100 of 1337) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dinsert_test.cpp40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
49 copy(array1, array1 + 3, itd);
62 copy(array2, array2 + 3, inserter(names, i));
/external/tinyxml/
H A Dtinystr.h33 * - added "copy" constructor with length, and most compare operators.
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy) argument
70 init(copy.length());
71 memcpy(start(), copy.data(), length());
75 TiXmlString (const char * copy) argument
77 init( static_cast<size_type>( strlen(copy) ));
78 memcpy(start(), copy, length()); local
95 TiXmlString& operator = (const char * copy) argument
97 return assign( copy, (size_typ
101 operator =(const TiXmlString & copy) argument
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecASCIIFastPath.h52 static void copy(UChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
61 static void copy(UChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
81 UCharByteFiller<sizeof(MachineWord)>::copy(destination, source);
/external/chromium/base/memory/
H A Dlinked_ptr.h88 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
92 copy(&ptr);
98 copy(&ptr);
105 copy(&ptr);
155 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:linked_ptr
/external/qemu/android/utils/
H A Dsystem.c127 char* copy; local
133 copy = malloc(len+1);
134 memcpy(copy, str, len);
135 copy[len] = 0;
137 return copy;
/external/qemu/distrib/zlib-1.2.3/
H A Dinfback.c254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy
[all...]
/external/webkit/Tools/wx/packaging/
H A Dbuild-mac-installer.py88 copy = True
91 copy = False
93 if copy:
100 shutil.copy(filename, copydir)
126 shutil.copy(afile, wxpythonroot)
131 shutil.copy(afile, wxroot)
143 shutil.copy(os.path.join(wxwk_root, "Source", "WebKit", "wx", "bindings", "python", "samples", "simple.py"), demodir)
/external/zlib/src/
H A Dinfback.c263 unsigned copy; /* number of stored or match bytes to copy */ local
264 unsigned char FAR *from; /* where to copy match bytes from */
267 unsigned len; /* length to copy for repeats, bits to drop */
340 /* copy stored block from input to output */
342 copy = state->length;
345 if (copy > have) copy = have;
346 if (copy > left) copy
[all...]
/external/libusb_aah/msvc/
H A Dddk_build.cmd22 copy target+..\..\msvc\libusb_sources sources >NUL 2>&1
62 copy %srcPath%\libusb-%version%.dll %dstPath%\dll
63 copy %srcPath%\libusb-%version%.pdb %dstPath%\dll
65 copy %srcPath%\libusb-%version%.lib %dstPath%\lib
74 copy ..\..\msvc\listdevs_sources sources >NUL 2>&1
84 copy %srcPath%\listdevs.exe %dstPath%\examples
85 copy %srcPath%\listdevs.pdb %dstPath%\examples
/external/zlib/src/contrib/blast/
H A Dblast.c262 * an instruction to copy previously uncompressed bytes to the output. The
263 * copy is from distance bytes back in the output stream, copying for length
272 * twelve copies the last four bytes three times. A simple forward copy
281 int len; /* length for copy */
282 int dist; /* distance for copy */
283 int copy; /* copy counter */ local
284 unsigned char *from, *to; /* copy pointers */
339 /* copy length bytes from distance bytes back */
343 copy
[all...]
/external/eigen/bench/btl/libs/gmm/
H A Dgmm_interface.hh14 // You should have received a copy of the GNU General Public License
114 gmm::copy(source,cible);
118 gmm::copy(source,cible);
122 gmm::copy(B,X);
127 gmm::copy(X,R);
133 gmm::copy(X,R);
138 gmm::copy(X,R);
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractBiMapTest.java6 * You may obtain a copy of the License at
482 BiMap<Integer, String> copy =
484 assertEquals(bimap.inverse(), copy.inverse());
514 BiMapPair copy = SerializableTester.reserialize(pair);
515 assertEquals(pair.forward, copy.forward);
516 assertEquals(pair.backward, copy.backward);
518 copy.forward.put(4, "four");
519 copy.backward.put("five", 5);
520 assertEquals(copy.backward, copy
[all...]
H A DImmutableSortedMapTest.java6 * You may obtain a copy of the License at
539 ImmutableSortedMap<String, Integer> copy
541 assertEquals(Collections.<String, Integer>emptyMap(), copy);
542 assertSame(copy, ImmutableSortedMap.copyOf(copy));
543 assertSame(Ordering.natural(), copy.comparator());
547 ImmutableSortedMap<String, Integer> copy
549 assertMapEquals(copy, "one", 1);
550 assertSame(copy, ImmutableSortedMap.copyOf(copy));
[all...]
H A DHashBasedTableTest.java6 * You may obtain a copy of the License at
75 Table<String, Integer, Character> copy = HashBasedTable.create(original);
76 assertEquals(original, copy);
77 assertEquals((Character) 'a', copy.get("foo", 1));
/external/openssh/regress/
H A Ddynamic-forward.sh46 somehost cat $DATA > $OBJ/ls.copy
47 test -f $OBJ/ls.copy || fail "failed copy $DATA"
48 cmp $DATA $OBJ/ls.copy || fail "corrupted copy of $DATA"
/external/skia/legacy/src/animator/
H A DSkDisplayMovie.cpp55 SkDisplayMovie* copy = (SkDisplayMovie*) INHERITED::deepCopy(maker); local
56 copy->fMovie.fMaker->fParentMaker = fMovie.fMaker->fParentMaker;
57 copy->fMovie.fMaker->fHostEventSinkID = fMovie.fMaker->fHostEventSinkID;
58 copy->fMovieBuilt = false;
59 *fMovie.fMaker->fParentMaker->fMovies.append() = copy;
60 return copy;
/external/skia/src/animator/
H A DSkDisplayMovie.cpp55 SkDisplayMovie* copy = (SkDisplayMovie*) INHERITED::deepCopy(maker); local
56 copy->fMovie.fMaker->fParentMaker = fMovie.fMaker->fParentMaker;
57 copy->fMovie.fMaker->fHostEventSinkID = fMovie.fMaker->fHostEventSinkID;
58 copy->fMovieBuilt = false;
59 *fMovie.fMaker->fParentMaker->fMovies.append() = copy;
60 return copy;
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMEventTarget.cpp15 * You should have received a copy of the GNU Library General Public License
76 WebDOMEventTarget::WebDOMEventTarget(const WebDOMEventTarget& copy) argument
79 m_impl = copy.impl() ? new WebDOMEventTargetPrivate(copy.impl()) : 0;
201 WebDOMEventTarget& WebDOMEventTarget::operator=(const WebDOMEventTarget& copy) argument
204 m_impl = copy.impl() ? new WebDOMEventTargetPrivate(copy.impl()) : 0;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java419 byte[] copy = new byte[data.length];
421 System.arraycopy(data, 0, copy, 0, data.length);
423 return copy;
432 int[] copy = new int[data.length];
434 System.arraycopy(data, 0, copy, 0, data.length);
436 return copy;
445 short[] copy = new short[data.length];
447 System.arraycopy(data, 0, copy, 0, data.length);
449 return copy;
458 BigInteger[] copy
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DObjectArrays.java6 * You may obtain a copy of the License at
79 T[] copy = newArray(original, newLength);
81 original, 0, copy, 0, Math.min(original.length, newLength));
82 return copy;
/external/guava/guava-tests/test/com/google/common/testing/
H A DSerializableTesterTest.java6 * You may obtain a copy of the License at
32 String copy = SerializableTester.reserializeAndAssert(original);
33 assertEquals(original, copy);
34 assertNotSame(original, copy);
/external/llvm/utils/lit/lit/
H A DTest.py65 import copy namespace
66 res = copy.copy(self)
/external/skia/legacy/src/core/
H A DSkData.cpp66 void* copy = sk_malloc_throw(length); // balanced in sk_free_releaseproc local
67 memcpy(copy, data, length);
68 return new SkData(copy, length, sk_free_releaseproc, NULL);
84 We could, if we wanted/need to, just make a deep copy of src's data,
/external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
H A DcreateDocumentType-err.js66 var copy = new Array(args.length);
68 copy[i] = sourceify(args[i]);
70 return copy.join(", ");
/external/webkit/Source/WebCore/plugins/
H A DPluginMainThreadScheduler.cpp94 CallQueueMap copy(m_callQueueMap);
106 CallQueueMap::iterator end = copy.end();
107 for (CallQueueMap::iterator it = copy.begin(); it != end; ++it)

Completed in 1441 milliseconds

1234567891011>>