Searched refs:copy (Results 226 - 250 of 1337) sorted by relevance

1234567891011>>

/external/libffi/src/pa/
H A Dlinux.S8 a copy of this software and associated documentation files (the
10 without limitation the rights to use, copy, modify, merge, publish,
53 copy %r3, %r1
56 copy %sp, %r3
75 copy %sp, %r4
102 copy %r31, %rp
244 copy %r4, %sp /* pop arg stack */
268 copy %r3, %r1
270 copy %sp, %r3
280 copy
[all...]
/external/skia/legacy/src/animator/
H A DSkDisplayable.cpp76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
H A DSkDrawBitmap.cpp144 SkDisplayable* copy = INHERITED::deepCopy(maker); local
145 ((SkImage*) copy)->fUriBase = ((SkImage*) this)->fUriBase;
146 return copy;
/external/skia/src/animator/
H A DSkDisplayable.cpp76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
H A DSkDrawBitmap.cpp144 SkDisplayable* copy = INHERITED::deepCopy(maker); local
145 ((SkImageBaseBitmap*) copy)->fUriBase = ((SkImageBaseBitmap*) this)->fUriBase;
146 return copy;
/external/webkit/Tools/android/flex-2.5.4a/
H A Dmisc.c189 /* copy_string - returns a dynamically allocated copy of a string */
196 char *copy; local
204 copy = (char *) flex_alloc( size );
206 if ( copy == NULL )
209 for ( c2 = copy; (*c2++ = *str++) != 0; )
212 return copy;
217 * returns a dynamically allocated copy of a (potentially) unsigned string
224 Char *copy; local
230 copy = allocate_Character_array( c - str + 1 );
232 for ( c = copy; (*
[all...]
/external/icu4c/test/intltest/
H A Dsdtfmtts.cpp116 SimpleDateFormat copy(pat);
122 if( ! (copy == pat) || copy != pat) {
126 copy = cust1;
127 if(copy != cust1) {
/external/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp99 SkBitmap* copy; local
101 copy = new SkBitmap;
102 // here we make a ceep copy of the pixels, since CG won't take our
104 bm.copyTo(copy, SkBitmap::kARGB_8888_Config);
106 copy = new SkBitmap(bm);
108 return copy;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSortedSetTest.java6 * You may obtain a copy of the License at
154 SortedSet<String> copy = SerializableTester.reserialize(set);
155 assertSame(set, copy);
202 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
203 assertEquals(set.comparator(), copy.comparator());
217 * to copy from that array to the destination array. This would be fine, but
218 * GWT has a bug: It refuses to copy from an E[] to an Object[] when E is an
316 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
317 assertTrue(Iterables.elementsEqual(set, copy));
318 assertEquals(set.comparator(), copy
[all...]
H A DImmutableMapTest.java6 * You may obtain a copy of the License at
495 ImmutableMap<String, Integer> copy
497 assertEquals(Collections.<String, Integer>emptyMap(), copy);
498 assertSame(copy, ImmutableMap.copyOf(copy));
502 ImmutableMap<String, Integer> copy
504 assertMapEquals(copy, "one", 1);
505 assertSame(copy, ImmutableMap.copyOf(copy));
514 ImmutableMap<String, Integer> copy
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcryptstring.h184 InsecureCryptStringImpl * copy = new InsecureCryptStringImpl; local
185 copy->password() = password_;
186 return copy;
/external/elfutils/libdwfl/
H A Ddwfl_module_build_id.c14 You should have received a copy of the GNU General Public License along
63 void *copy = malloc (len); local
64 if (unlikely (copy == NULL))
70 mod->build_id_bits = memcpy (copy, bits, len);
/external/elfutils/src/
H A Dxelf.h15 You should have received a copy of the GNU General Public License along
53 # define xelf_getehdr_copy(elf, name, copy) \
54 (copy) = *(name = elf32_getehdr (elf))
70 # define xelf_getshdr_copy(scn, name, copy) \
71 (copy) = *(name = elf32_getshdr (scn))
185 # define xelf_getehdr_copy(elf, name, copy) \
186 (copy) = *(name = elf64_getehdr (elf))
202 # define xelf_getshdr_copy(scn, name, copy) \
203 (copy) = *(name = elf64_getshdr (scn))
319 # define xelf_getehdr_copy(elf, name, copy) \
[all...]
/external/proguard/src/proguard/evaluation/
H A DTracedStack.java17 * You should have received a copy of the GNU General Public License along
54 * Creates a new TracedStack that is a copy of the given TracedStack.
131 public void copy(TracedStack other) method in class:TracedStack
133 super.copy(other);
135 producerStack.copy(other.producerStack);
/external/webkit/Source/WebCore/storage/
H A DStorageMap.cpp46 PassRefPtr<StorageMap> StorageMap::copy() function in class:WebCore::StorageMap
107 // Implement copy-on-write semantics here. We're guaranteed that the only refs of StorageMaps belong to Storage objects
108 // so if more than one Storage object refs this map, copy it before mutating it.
110 RefPtr<StorageMap> newStorageMap = copy();
147 // Implement copy-on-write semantics here. We're guaranteed that the only refs of StorageMaps belong to Storage objects
148 // so if more than one Storage object refs this map, copy it before mutating it.
150 RefPtr<StorageMap> newStorage = copy();
174 // Be sure to copy the keys/values as items imported on a background thread are destined
/external/guava/guava-tests/test/com/google/common/io/
H A DCharStreamsTest.java6 * You may obtain a copy of the License at
20 import static com.google.common.io.CharStreams.copy;
170 CharStreams.copy(okRead, okWrite);
175 CharStreams.copy(okRead, brokenWrite);
184 CharStreams.copy(brokenRead, okWrite);
193 CharStreams.copy(brokenRead, brokenWrite);
230 copy(in, out);
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dcopymem8x4_v6.asm35 ;copy 1 byte each time
78 ;copy 4 bytes each time
103 ;copy 8 bytes each time
H A Dcopymem8x8_v6.asm35 ;copy 1 byte each time
78 ;copy 4 bytes each time
103 ;copy 8 bytes each time
/external/skia/include/core/
H A DSkTArray.h20 inline void copy(SkTArray<T, true>* self, const T* array) { function in namespace:SkTArrayExt
29 inline void copy(SkTArray<T, false>* self, const T* array) { function in namespace:SkTArrayExt
45 When MEM_COPY is false, T will be copy constructed / destructed.
87 * assign copy of array to this
96 SkTArrayExt::copy(this, static_cast<const T*>(array.fMemArray));
137 * Version of above that uses a copy constructor to initialize the new item
162 * Version of above that uses a copy constructor to initialize all n items
176 * Version of above that uses a copy constructor to initialize the n items
318 SkTArrayExt::copy(this, array);
359 template<typename X> friend void SkTArrayExt::copy(SkTArra
[all...]
/external/skia/legacy/include/core/
H A DSkTArray.h20 inline void copy(SkTArray<T, true>* self, const T* array) { function in namespace:SkTArrayExt
29 inline void copy(SkTArray<T, false>* self, const T* array) { function in namespace:SkTArrayExt
45 When MEM_COPY is false, T will be copy constructed / destructed.
87 * assign copy of array to this
96 SkTArrayExt::copy(this, static_cast<const T*>(array.fMemArray));
137 * Version of above that uses a copy constructor to initialize the new item
162 * Version of above that uses a copy constructor to initialize all n items
176 * Version of above that uses a copy constructor to initialize the n items
318 SkTArrayExt::copy(this, array);
361 template<typename X> friend void SkTArrayExt::copy(SkTArra
[all...]
/external/smali/smali/
H A DAndroid.mk5 # You may obtain a copy of the License at
76 # copy smali script
90 $(copy-file-to-new-target)
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_temp_storage_unittest.cc52 std::copy(b_list.begin(),
62 std::copy(a_list.begin(), a_list.end(), std::back_inserter(b_list));
/external/eyes-free/
H A DAndroid.mk5 # You may obtain a copy of the License at
/external/icu4c/
H A DAndroid.mk5 # You may obtain a copy of the License at
/external/icu4c/common/
H A Dunistr_case.cpp104 // copy the stack buffer contents because it will be overwritten
163 UnicodeString copy(*str);
164 return copy.foldCase().hashCode();

Completed in 587 milliseconds

1234567891011>>