Home
last modified time | relevance | path

Searched defs:copy (Results 1 – 25 of 739) sorted by relevance

12345678910>>...30

/external/clang/test/CodeGenObjC/
Dcategory-super-class-meth.m4 -(id)copy; method
5 +(id)copy; class
11 -(id)copy { return [super copy]; } // ok: instance method in class method
12 +(id)copy { return [super copy]; } // ok: class method in class class
20 -(id)copy { return [super copy]; } // ok: instance method in category method in Category
21 +(id)copy { return [super copy]; } // BAD: class method in category class in Category
Dobjc-read-weak-byref.m7 - copy; method
/external/chromium_org/third_party/WebKit/Source/platform/
DCrossThreadCopier.cpp43 …, false, false, KURL>::Type CrossThreadCopierBase<false, false, false, KURL>::copy(const KURL& url) in copy() function in blink::CrossThreadCopierBase
48 …e, false, String>::Type CrossThreadCopierBase<false, false, false, String>::copy(const String& str) in copy() function in blink::CrossThreadCopierBase
53 …ceError>::Type CrossThreadCopierBase<false, false, false, ResourceError>::copy(const ResourceError… in copy() function in blink::CrossThreadCopierBase
58 …quest>::Type CrossThreadCopierBase<false, false, false, ResourceRequest>::copy(const ResourceReque… in copy() function in blink::CrossThreadCopierBase
63 …onse>::Type CrossThreadCopierBase<false, false, false, ResourceResponse>::copy(const ResourceRespo… in copy() function in blink::CrossThreadCopierBase
/external/chromium_org/base/third_party/symbolize/
Ddemangle.cc482 State copy = *state; in ParseEncoding() local
503 State copy = *state; in ParseName() local
524 State copy = *state; in ParseUnscopedName() local
543 State copy = *state; in ParseNestedName() local
601 State copy = *state; in ParseSourceName() local
616 State copy = *state; in ParseLocalSourceName() local
707 State copy = *state; in ParseOperatorName() local
766 State copy = *state; in ParseSpecialName() local
829 State copy = *state; in ParseCallOffset() local
852 State copy = *state; in ParseVOffset() local
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/
DStyleRule.h115 …PassRefPtrWillBeRawPtr<StyleRule> copy() const { return adoptRefWillBeNoop(new StyleRule(*this)); } in copy() function
140 …PassRefPtrWillBeRawPtr<StyleRuleFontFace> copy() const { return adoptRefWillBeNoop(new StyleRuleFo… in copy() function
165 …PassRefPtrWillBeRawPtr<StyleRulePage> copy() const { return adoptRefWillBeNoop(new StyleRulePage(*… in copy() function
203 …PassRefPtrWillBeRawPtr<StyleRuleMedia> copy() const { return adoptRefWillBeNoop(new StyleRuleMedia… in copy() function
223 …PassRefPtrWillBeRawPtr<StyleRuleSupports> copy() const { return adoptRefWillBeNoop(new StyleRuleSu… in copy() function
246 …PassRefPtrWillBeRawPtr<StyleRuleViewport> copy() const { return adoptRefWillBeNoop(new StyleRuleVi… in copy() function
270 …PassRefPtrWillBeRawPtr<StyleRuleFilter> copy() const { return adoptRefWillBeNoop(new StyleRuleFilt… in copy() function
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dxstrdup.c48 char *copy; in yasm__xstrdup() local
60 char *copy; in yasm__xstrndup() local
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableBiMapTest.java415 ImmutableBiMap<String, Integer> copy in testCopyOfEmptyMap() local
417 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
419 assertSame(ImmutableBiMap.of(), copy); in testCopyOfEmptyMap() local
423 ImmutableBiMap<String, Integer> copy in testCopyOfSingletonMap() local
435 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); in testCopyOf() local
532 ImmutableBiMap<String, Integer> copy = in testSerialization() local
543 ImmutableBiMap<String, Integer> copy = in testInverseSerialization() local
DTreeMultimapExplicitTest.java102 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); in testMultimapCreateFromTreeMultimap() local
174 TreeMultimap<String, Integer> copy = in testMultimapComparators() local
197 TreeMultimap<String, Integer> copy in testExplicitComparatorSerialization() local
DImmutableSortedMapTest.java539 ImmutableSortedMap<String, Integer> copy in testCopyOfEmptyMap() local
541 assertEquals(Collections.<String, Integer>emptyMap(), copy); in testCopyOfEmptyMap() local
547 ImmutableSortedMap<String, Integer> copy in testCopyOfSingletonMap() local
560 ImmutableSortedMap<String, Integer> copy in testCopyOf() local
574 ImmutableSortedMap<String, Integer> copy in testCopyOfExplicitComparator() local
585 ImmutableSortedMap<String, Integer> copy in testCopyOfImmutableSortedSetDifferentComparator() local
598 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedNatural() local
612 ImmutableSortedMap<String, Integer> copy in testCopyOfSortedExplicit() local
661 Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original); in testImmutableMapCopyOfImmutableSortedMap() local
DHashMultisetTest.java65 Multiset<Multiset<?>> copy = SerializableTester.reserialize(multiset); in testSerializationContainingSelf() local
84 Multiset<MultisetHolder> copy = SerializableTester.reserialize(multiset); in testSerializationIndirectSelfReference() local
DImmutableSortedSetTest.java154 SortedSet<String> copy = SerializableTester.reserialize(set); in testEmpty_serialization() local
202 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testSingle_serialization() local
316 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testOf_serialization() local
414 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testExplicitEmpty_serialization() local
424 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testExplicit_serialization() local
444 SortedSet<String> copy = copyOf(subset); in testCopyOf_subSet() local
451 SortedSet<String> copy = copyOf(headset); in testCopyOf_headSet() local
458 SortedSet<String> copy = copyOf(tailset); in testCopyOf_tailSet() local
653 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); in testDifferentComparator_serialization() local
766 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); in testAsListReturnTypeAndSerialization() local
[all …]
/external/mesa3d/src/mesa/vbo/
Dvbo_split_copy.c117 check_flush( struct copy_context *copy ) in check_flush()
172 flush( struct copy_context *copy ) in flush()
227 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) in begin()
242 elt(struct copy_context *copy, GLuint elt_idx) in elt()
308 end( struct copy_context *copy, GLboolean end_flag ) in end()
324 replay_elts( struct copy_context *copy ) in replay_elts()
429 replay_init( struct copy_context *copy ) in replay_init()
560 replay_finish( struct copy_context *copy ) in replay_finish()
599 struct copy_context copy; in vbo_split_copy() local
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
Dvbo_split_copy.c117 check_flush( struct copy_context *copy ) in check_flush()
172 flush( struct copy_context *copy ) in flush()
227 begin( struct copy_context *copy, GLenum mode, GLboolean begin_flag ) in begin()
242 elt(struct copy_context *copy, GLuint elt_idx) in elt()
308 end( struct copy_context *copy, GLboolean end_flag ) in end()
324 replay_elts( struct copy_context *copy ) in replay_elts()
429 replay_init( struct copy_context *copy ) in replay_init()
560 replay_finish( struct copy_context *copy ) in replay_finish()
599 struct copy_context copy; in vbo_split_copy() local
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListSubListTester.java211 List<E> copy = list.subList(0, size); in testSubList_get() local
235 List<E> copy = list.subList(0, size); in testSubList_contains() local
253 List<E> copy = list.subList(0, size); in testSubList_indexOf() local
279 List<E> copy = list.subList(0, size); in testSubList_lastIndexOf() local
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DSVGRenderStyleDefs.h120 PassRefPtr<StyleFillData> copy() const { return adoptRef(new StyleFillData(*this)); } in copy() function
144 PassRefPtr<StyleStrokeData> copy() const { return adoptRef(new StyleStrokeData(*this)); } in copy() function
174 PassRefPtr<StyleStopData> copy() const { return adoptRef(new StyleStopData(*this)); } in copy() function
194 PassRefPtr<StyleMiscData> copy() const { return adoptRef(new StyleMiscData(*this)); } in copy() function
217 … PassRefPtr<StyleResourceData> copy() const { return adoptRef(new StyleResourceData(*this)); } in copy() function
238 …PassRefPtr<StyleInheritedResourceData> copy() const { return adoptRef(new StyleInheritedResourceDa… in copy() function
DStyleFilterData.h38 PassRefPtr<StyleFilterData> copy() const { return adoptRef(new StyleFilterData(*this)); } in copy() function
/external/flac/libFLAC/
Dmetadata_object.c114 char *copy = strdup(from); in copy_cstring_() local
249 …ta_VorbisComment_Entry *dest, const FLAC__StreamMetadata_VorbisComment_Entry *src, FLAC__bool copy) in vorbiscomment_set_entry_()
398 …reamMetadata_CueSheet_Track *dest, const FLAC__StreamMetadata_CueSheet_Track *src, FLAC__bool copy) in cuesheet_set_track_()
903 …lication_set_data(FLAC__StreamMetadata *object, FLAC__byte *data, unsigned length, FLAC__bool copy) in FLAC__metadata_object_application_set_data()
1153 …ring(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) in FLAC__metadata_object_vorbiscomment_set_vendor_string()
1208 …ata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) in FLAC__metadata_object_vorbiscomment_set_comment()
1218 …ata *object, unsigned comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) in FLAC__metadata_object_vorbiscomment_insert_comment()
1242 …ment(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) in FLAC__metadata_object_vorbiscomment_append_comment()
1249 …mMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy) in FLAC__metadata_object_vorbiscomment_replace_comment()
1608 …mMetadata *object, unsigned track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy) in FLAC__metadata_object_cuesheet_set_track()
[all …]
/external/libedit/src/
Dwcsdup.c29 wchar_t *copy; in wcsdup() local
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_fs_cse.cpp131 fs_inst *copy = new(ralloc_parent(inst)) in opt_cse_local() local
138 fs_inst *copy = new(ralloc_parent(inst)) in opt_cse_local() local
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_fs_cse.cpp131 fs_inst *copy = new(ralloc_parent(inst)) in opt_cse_local() local
138 fs_inst *copy = new(ralloc_parent(inst)) in opt_cse_local() local
/external/clang/test/Lexer/
Ddigraph.c10 void copy(char d<::>, const char s<::>, int len) in copy() function
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DMemoable.java11 public Memoable copy(); in copy() method
/external/tcpdump/missing/
Dstrdup.c50 char *copy; local
/external/clang/test/SemaObjC/
Dblock-as-object.m5 - copy; method
/external/compiler-rt/test/asan/TestCases/
Dstrdup_oob_test.cc11 char *copy = strdup(kString); in main() local

12345678910>>...30