Searched refs:copy (Results 51 - 75 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/
H A DCrossThreadCopier.cpp43 CrossThreadCopierBase<false, false, false, KURL>::Type CrossThreadCopierBase<false, false, false, KURL>::copy(const KURL& url) function in class:blink::CrossThreadCopierBase
45 return url.copy();
48 CrossThreadCopierBase<false, false, false, String>::Type CrossThreadCopierBase<false, false, false, String>::copy(const String& str) function in class:blink::CrossThreadCopierBase
53 CrossThreadCopierBase<false, false, false, ResourceError>::Type CrossThreadCopierBase<false, false, false, ResourceError>::copy(const ResourceError& error) function in class:blink::CrossThreadCopierBase
55 return error.copy();
58 CrossThreadCopierBase<false, false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:blink::CrossThreadCopierBase
63 CrossThreadCopierBase<false, false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:blink::CrossThreadCopierBase
/external/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc482 State copy = *state; local
486 *state = copy;
503 State copy = *state; local
508 *state = copy;
524 State copy = *state; local
530 *state = copy;
543 State copy = *state; local
548 LeaveNestedName(state, copy.nest_level) &&
552 *state = copy;
601 State copy local
616 State copy = *state; local
707 State copy = *state; local
766 State copy = *state; local
829 State copy = *state; local
852 State copy = *state; local
864 State copy = *state; local
908 State copy = *state; local
982 State copy = *state; local
992 State copy = *state; local
1004 State copy = *state; local
1023 State copy = *state; local
1040 State copy = *state; local
1057 State copy = *state; local
1077 State copy = *state; local
1095 State copy = *state; local
1131 State copy = *state; local
1179 State copy = *state; local
1213 State copy = *state; local
1231 State copy = *state; local
1248 State copy = *state; local
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_input_field.h16 @property(nonatomic, copy) NSString* fieldValue;
17 @property(nonatomic, copy) NSString* defaultValue;
58 @property(nonatomic, copy) NSString* fieldValue;
59 @property(nonatomic, copy) NSString* defaultValue;
67 @property(nonatomic, copy) NSString* validityMessage;
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Drule_test.cc5 // You may obtain a copy of the License at
65 Rule copy; local
66 EXPECT_NE(rule.GetFormat(), copy.GetFormat());
67 EXPECT_NE(rule.GetLatinFormat(), copy.GetLatinFormat());
68 EXPECT_NE(rule.GetId(), copy.GetId());
69 EXPECT_NE(rule.GetRequired(), copy.GetRequired());
70 EXPECT_NE(rule.GetSubKeys(), copy.GetSubKeys());
71 EXPECT_NE(rule.GetLanguages(), copy.GetLanguages());
73 copy.GetAdminAreaNameMessageId());
75 copy
365 Rule copy; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkRecorder.cpp29 // The structs we're creating all copy their constructor arguments. Given the way the SkRecords
31 // into a single copy unless the class has a non-trivial copy constructor. For classes with
32 // non-trivial copy constructors, we skip the first copy (and its destruction) by wrapping the value
35 // This is used below for SkBitmap, SkPaint, SkPath, and SkRegion, which all have non-trivial copy
50 // Use copy() only for optional arguments, to be copied if present or skipped if not.
51 // (For most types we just pass by value and let copy constructors do their thing.)
53 T* SkRecorder::copy(const T* src) { function in class:SkRecorder
60 // This copy() i
63 T* SkRecorder::copy(const T src[], size_t count) { function in class:SkRecorder
78 char* SkRecorder::copy(const char src[], size_t count) { function in class:SkRecorder
89 char* SkRecorder::copy(const char* src) { function in class:SkRecorder
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparsePatch.pl46 +++ Makefile (working copy)
52 +++ Makefile_new (working copy)
63 +++ Makefile (working copy)
/external/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/
H A DAndroid.mk6 # You may obtain a copy of the License at
17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.sort/partial.sort.copy/Android.mk
19 test_name := algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy
23 test_name := algorithms/alg.sorting/alg.sort/partial.sort.copy/partial_sort_copy_comp
/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);
/external/chromium_org/third_party/libsrtp/srtp/
H A Dinstall-win.bat28 copy include\*.h %destdir%\include\srtp
29 copy crypto\include\*.h %destdir%\include\srtp
30 copy Release\srtp.lib %destdir%\lib\srtp.lib
31 copy Debug\srtp.lib %destdir%\lib\srtpd.lib
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return copy;
/external/skia/src/core/
H A DSkRecorder.cpp26 // The structs we're creating all copy their constructor arguments. Given the way the SkRecords
28 // into a single copy unless the class has a non-trivial copy constructor. For classes with
29 // non-trivial copy constructors, we skip the first copy (and its destruction) by wrapping the value
32 // This is used below for SkBitmap, SkPaint, SkPath, and SkRegion, which all have non-trivial copy
47 // Use copy() only for optional arguments, to be copied if present or skipped if not.
48 // (For most types we just pass by value and let copy constructors do their thing.)
50 T* SkRecorder::copy(const T* src) { function in class:SkRecorder
57 // This copy() i
60 T* SkRecorder::copy(const T src[], unsigned count) { function in class:SkRecorder
75 char* SkRecorder::copy(const char src[], unsigned count) { function in class:SkRecorder
[all...]
/external/qemu/distrib/zlib-1.2.8/
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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/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()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/chromium_org/third_party/zlib/
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()
363 unsigned copy, dist; local
382 /* copy state->wsize or less output bytes into the circular window */
383 copy = out - strm->avail_out;
384 if (copy >= state->wsize) {
391 if (dist > copy) dist = copy;
392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dis
600 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inflate.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()
97 unsigned copy));
382 unsigned copy)
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dis
379 updatewindow( z_streamp strm, const Bytef *end, unsigned copy) argument
616 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_org/third_party/WebKit/Source/core/dom/
H A DCrossThreadTask.h402 CrossThreadCopier<P1>::copy(parameter1));
412 CrossThreadCopier<P1>::copy(parameter1), CrossThreadCopier<P2>::copy(parameter2));
422 CrossThreadCopier<P1>::copy(parameter1), CrossThreadCopier<P2>::copy(parameter2),
423 CrossThreadCopier<P3>::copy(parameter3));
434 CrossThreadCopier<P1>::copy(parameter1), CrossThreadCopier<P2>::copy(parameter2),
435 CrossThreadCopier<P3>::copy(parameter3), CrossThreadCopier<P4>::copy(parameter
[all...]
/external/chromium_org/build/
H A Dcp.py18 # Use copy instead of copyfile to ensure the executable bit is copied.
19 return shutil.copy(src, os.path.normpath(dst))
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_drag_drop.cc26 bool copy) {
35 DCHECK(copy ||
40 if (copy) {
47 return copy ? ui::DragDropTypes::DRAG_COPY : ui::DragDropTypes::DRAG_MOVE;
22 DropBookmarks(Profile* profile, const BookmarkNodeData& data, const BookmarkNode* parent_node, int index, bool copy) argument
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepadCommon.cpp45 std::copy(data, data + count, m_axes.begin());
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
H A DRTCSessionDescriptionSyncObserver.h40 @property(atomic, copy) NSString *error;
/external/deqp/framework/delibs/decpp/
H A DdePoolString.cpp9 * You may obtain a copy of the License at
35 std::copy(begin(), end(), str.begin());
44 std::copy(str, str+len, begin()+oldEnd);
52 std::copy(str.begin(), str.end(), begin()+oldEnd);
60 std::copy(str.begin(), str.end(), begin()+oldEnd);

Completed in 5267 milliseconds

1234567891011>>