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

1234567891011>>

/external/chromium_org/third_party/libevent/
H A Dautogen.sh11 automake --add-missing --copy
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCSessionDescription.h36 @property(nonatomic, copy, readonly) NSString *description;
39 @property(nonatomic, copy, readonly) NSString *type;
H A DRTCICECandidate.h36 @property(nonatomic, copy, readonly) NSString* sdpMid;
43 @property(nonatomic, copy, readonly) NSString* sdp;
H A DRTCICEServer.h35 @property(nonatomic, copy, readonly) NSString* username;
36 @property(nonatomic, copy, readonly) NSString* password;
/external/chromium_org/android_webview/native/
H A Dstate_serializer_unittest.cc75 scoped_ptr<content::NavigationEntry> copy(content::NavigationEntry::Create());
77 result = internal::RestoreNavigationEntryFromPickle(&iterator, copy.get());
80 EXPECT_EQ(url, copy->GetURL());
81 EXPECT_EQ(virtual_url, copy->GetVirtualURL());
82 EXPECT_EQ(referrer.url, copy->GetReferrer().url);
83 EXPECT_EQ(referrer.policy, copy->GetReferrer().policy);
84 EXPECT_EQ(title, copy->GetTitle());
85 EXPECT_EQ(page_state, copy->GetPageState());
86 EXPECT_EQ(has_post_data, copy->GetHasPostData());
87 EXPECT_EQ(original_request_url, copy
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_report_build_id.c14 You should have received a copy of the GNU General Public License along
81 void *copy = NULL; local
84 copy = malloc (len);
85 if (unlikely (copy == NULL))
90 memcpy (copy, bits, len);
95 mod->build_id_bits = copy;
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFUtils.h35 CFReleaser(const CFReleaser& copy) : _ptr(copy.get()) argument
43 CFReleaser& operator= (const CFReleaser<T>& copy) argument
45 if (copy != *this)
48 reset(copy.get());
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dparse_dsc_test.py6 import copy namespace
44 testdesc = copy.deepcopy(BASIC_DESC)
48 testdesc = copy.deepcopy(BASIC_DESC)
52 testdesc = copy.deepcopy(BASIC_DESC)
57 testdesc = copy.deepcopy(BASIC_DESC)
61 testdesc = copy.deepcopy(BASIC_DESC)
65 testdesc = copy.deepcopy(BASIC_DESC)
70 testdesc = copy.deepcopy(BASIC_DESC)
75 testdesc = copy.deepcopy(BASIC_DESC)
80 testdesc = copy
[all...]
/external/mockito/src/org/mockito/internal/creation/settings/
H A DCreationSettings.java37 public CreationSettings(CreationSettings copy) { argument
38 this.typeToMock = copy.typeToMock;
39 this.extraInterfaces = copy.extraInterfaces;
40 this.name = copy.name;
41 this.spiedInstance = copy.spiedInstance;
42 this.defaultAnswer = copy.defaultAnswer;
43 this.mockName = copy.mockName;
44 this.serializable = copy.serializable;
45 this.invocationListeners = copy.invocationListeners;
46 this.stubOnly = copy
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &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
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.copy/
H A DAndroid.mk6 # You may obtain a copy of the License at
17 test_makefile := external/libcxx/test/algorithms/alg.modifying.operations/alg.copy/Android.mk
19 test_name := algorithms/alg.modifying.operations/alg.copy/copy_n
23 test_name := algorithms/alg.modifying.operations/alg.copy/copy_backward
27 test_name := algorithms/alg.modifying.operations/alg.copy/copy_if
31 test_name := algorithms/alg.modifying.operations/alg.copy/copy
32 test_src := copy.pass.cpp
/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/
H A Ddevtools.js8 // Make a shallow copy with a null prototype, so that sidebar does not
11 var copy = { __proto__: null };
13 copy[props[i]] = data[props[i]];
14 return copy;
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
H A DAndroid.mk6 # You may obtain a copy of the License at
17 test_makefile := external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/Android.mk
19 test_name := utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy
23 test_name := utilities/memory/specialized.algorithms/uninitialized.copy/uninitialized_copy_n
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCPair.m37 _key = [key copy];
38 _value = [value copy];
/external/guava/guava-tests/test/com/google/common/collect/
H A DLenientSerializableTester.java6 * You may obtain a copy of the License at
47 Set<E> copy = reserialize(original);
48 assertEquals(original, copy);
49 assertTrue(copy instanceof ImmutableSet);
50 return copy;
H A DHashMultisetTest.java6 * You may obtain a copy of the License at
65 Multiset<Multiset<?>> copy = SerializableTester.reserialize(multiset);
66 assertEquals(2, copy.size());
67 assertSame(copy, copy.iterator().next());
84 Multiset<MultisetHolder> copy = SerializableTester.reserialize(multiset);
85 assertEquals(2, copy.size());
86 assertSame(copy, copy.iterator().next().member);
/external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
H A Dcopy.pass.cpp14 // 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/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Dcopy.pass.cpp14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
23 assert(std::char_traits<wchar_t>::copy(s2, s1, 3) == s2);
/external/chromium_org/chrome/browser/ui/cocoa/applescript/
H A Delement_applescript.h22 @property(nonatomic, copy) NSNumber* uniqueID;
24 @property(nonatomic, copy) NSString* containerProperty;
/external/libcxx/test/strings/basic.string/string.modifiers/string_copy/
H A DAndroid.mk6 # You may obtain a copy of the License at
19 test_name := strings/basic.string/string.modifiers/string_copy/copy
20 test_src := copy.pass.cpp
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecASCIIFastPath.h36 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
41 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
50 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
55 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
/external/chromium_org/third_party/skia/experimental/pixman/
H A Djunk.cpp51 pixman_image_t *copy; local
75 copy = pixman_image_ref (image);
79 copy = pixman_image_create_bits (PIXMAN_a8r8g8b8,
82 image, NULL, copy,
88 SkBitmap* bitmap = (SkBitmap*) pixbuf_from_argb32 (pixman_image_get_data (copy),
90 pixman_image_get_stride (copy));
/external/chromium_org/third_party/webrtc/base/
H A Diosfilesystem.mm22 // Return a new[]'d |char*| copy of the UTF8 representation of |s|.
27 char* copy = new char[len];
31 strcpy(copy, utf8);
32 return copy;
35 // Return a (leaked) copy of a directory name suitable for application data.
43 // Return a (leaked) copy of a directory name suitable for use as a $TEMP.
/external/skia/experimental/pixman/
H A Djunk.cpp51 pixman_image_t *copy; local
75 copy = pixman_image_ref (image);
79 copy = pixman_image_create_bits (PIXMAN_a8r8g8b8,
82 image, NULL, copy,
88 SkBitmap* bitmap = (SkBitmap*) pixbuf_from_argb32 (pixman_image_get_data (copy),
90 pixman_image_get_stride (copy));
/external/chromium_org/content/common/
H A Done_writer_seqlock_unittest.cc40 TestData copy; variable
44 copy = *data_;
47 EXPECT_EQ(copy.a + 100, copy.b);
48 EXPECT_EQ(copy.c, copy.b + copy.a);

Completed in 800 milliseconds

1234567891011>>