Searched refs:copy (Results 26 - 50 of 1337) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestInterface.cpp15 * You should have received a copy of the GNU Library General Public License
53 WebDOMTestInterface::WebDOMTestInterface(const WebDOMTestInterface& copy) argument
56 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
59 WebDOMTestInterface& WebDOMTestInterface::operator=(const WebDOMTestInterface& copy) argument
62 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
H A DWebDOMTestMediaQueryListListener.cpp15 * You should have received a copy of the GNU Library General Public License
52 WebDOMTestMediaQueryListListener::WebDOMTestMediaQueryListListener(const WebDOMTestMediaQueryListListener& copy) argument
55 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
58 WebDOMTestMediaQueryListListener& WebDOMTestMediaQueryListListener::operator=(const WebDOMTestMediaQueryListListener& copy) argument
61 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
H A DWebDOMTestSerializedScriptValueInterface.cpp15 * You should have received a copy of the GNU Library General Public License
54 WebDOMTestSerializedScriptValueInterface::WebDOMTestSerializedScriptValueInterface(const WebDOMTestSerializedScriptValueInterface& copy) argument
57 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
60 WebDOMTestSerializedScriptValueInterface& WebDOMTestSerializedScriptValueInterface::operator=(const WebDOMTestSerializedScriptValueInterface& copy) argument
63 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
/external/webkit/Source/WebCore/loader/mac/
H A DDocumentLoaderMac.cpp41 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/
H A DCipherOutputStream.java45 int copy = (len > space) ? space : len;
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);
117 System.arraycopy(src, off, buffer, pos, copy);
118 pos += copy;
119 off += copy;
120 len -= copy;
[all...]
H A DCipherInputStream.java123 int copy = Math.min(avail, len);
124 System.arraycopy(buffer, pos, dst, off, copy);
125 pos += copy;
126 off += copy;
127 len -= copy;
128 count += copy;
/external/llvm/bindings/ocaml/llvm/
H A DMakefile21 all-local:: copy-meta
28 copy-meta: $(OcamlDir)/META.llvm
42 .PHONY: copy-meta install-meta uninstall-meta
/external/stlport/test/unit/
H A Dfinsert_test.cpp36 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));
H A Dostmit_test.cpp41 copy(text, text + 5, iter);
47 copy(array, array + 4, iter2);
H A Dcopy_test.cpp44 copy(string, string + 23, result);
54 copy(a, a + size, va);
64 copy(a, a + size, va);
76 copy(a, a + size, va);
91 copy(v1.begin(), v1.end(), v2.begin());
102 copy(v1.begin(), v1.end(), i);
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparsePatch.pl46 +++ Makefile (working copy)
52 +++ Makefile_new (working copy)
63 +++ Makefile (working copy)
/external/chromium/ui/gfx/
H A Dpoint.h58 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;
/external/compiler-rt/BlocksRuntime/tests/
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return copy;
H A Dfail.c35 char *copy[argc+1]; // make a copy local
44 copy[counter++] = argv[i];
47 copy[counter] = NULL;
61 int result = execv(copy[0], copy);
/external/webkit/Source/WebCore/platform/
H A DCrossThreadCopier.h53 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/zlib/src/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
383 unsigned copy, dist; local
402 /* copy state->wsize or less output bytes into the circular window */
403 copy = out - strm->avail_out;
404 if (copy >= state->wsize) {
411 if (dist > copy) dist = copy;
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dis
615 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DTreeMultimapExplicitTest.java6 * You may obtain a copy of the License at
102 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree);
103 assertEquals(tree, copy);
104 ASSERT.that(copy.keySet()).hasContentsInOrder("google", "tree");
105 ASSERT.that(copy.get("google")).hasContentsInOrder(2, 6);
106 assertEquals(Ordering.natural(), copy.keyComparator());
107 assertEquals(Ordering.natural(), copy.valueComparator());
108 assertEquals(Ordering.natural(), copy.get("google").comparator());
174 TreeMultimap<String, Integer> copy =
176 copy
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dtab_view_picker_table.h28 @property(nonatomic, copy) NSString* heading;
/external/valgrind/main/none/tests/s390x/
H A Dfgx.stdout.exp5 copy f to g
13 copy g to f
/external/zlib/src/contrib/infback9/
H A Dinfback9.c237 unsigned long length; /* literal or length of data to copy */
238 unsigned long offset; /* distance back to copy string from */
239 unsigned long copy; /* number of stored or match bytes to copy */ local
240 unsigned char FAR *from; /* where to copy match bytes from */
247 unsigned len; /* length to copy for repeats, bits to drop */
328 /* copy stored block from input to output */
330 copy = length;
333 if (copy > have) copy
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
328 unsigned copy, dist; local
347 /* copy state->wsize or less output bytes into the circular window */
348 copy = out - strm->avail_out;
349 if (copy >= state->wsize) {
356 if (dist > copy) dist = copy;
357 zmemcpy(state->window + state->write, strm->next_out - copy, dis
565 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java90 final byte[] copy = new byte[size];
91 System.arraycopy(bytes, offset, copy, 0, size);
92 return new ByteString(copy);
107 final byte[] copy = new byte[size];
108 bytes.get(copy);
109 return new ByteString(copy);
175 * @param target buffer to copy into
185 * @param target buffer to copy into
188 * @param size number of bytes to copy
201 final byte[] copy
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java84 final byte[] copy = new byte[size];
85 System.arraycopy(bytes, offset, copy, 0, size);
86 return new ByteStringMicro(copy);
123 * @param target buffer to copy into
133 * @param target buffer to copy into
136 * @param size number of bytes to copy
149 final byte[] copy = new byte[size];
150 System.arraycopy(bytes, 0, copy, 0, size);
151 return copy;
/external/zlib/src/contrib/minizip/
H A Dmake_vms.com1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
3 $ copy sys$input: zdef
12 $ copy vmsdefs.h,ioapi.h_orig ioapi.h
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DUnmodifiableCollectionTests.java6 * You may obtain a copy of the License at
118 Collection<E> copy = new ArrayList<E>();
119 copy.addAll(collection);
126 assertCollectionsAreEquivalent(copy, collection);
133 assertCollectionsAreEquivalent(copy, collection);
140 assertCollectionsAreEquivalent(copy, collection);
143 assertCollectionsAreEquivalent(copy, collection);
150 assertCollectionsAreEquivalent(copy, collection);
157 assertCollectionsAreEquivalent(copy, collection);
164 assertCollectionsAreEquivalent(copy, collectio
[all...]

Completed in 701 milliseconds

1234567891011>>