HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 676 - 700 of 4741) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/tests/coretests/
Android.mk 36 # Rules to copy all the test apks to the intermediate raw resource directory
41 $(call copy-file-to-new-target)
  /frameworks/base/libs/hwui/
Patch.h 6 * You may obtain a copy of the License at
54 void copy(const int32_t* xDivs, const int32_t* yDivs);
  /ndk/sources/cxx-stl/llvm-libc++/test/algorithms/alg.modifying.operations/alg.copy/
copy.pass.cpp 14 // copy(InIter first, InIter last, OutIter result);
31 OutIter r = std::copy(InIter(ia), InIter(ia+N), OutIter(ib));
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 17 # You should have received a copy of the GNU General Public License
339 my $copy;
340 ($copy, $_) = split /\n\n/, $_, 2;
342 for ($copy)
359 $include{$sect} .= $copy;
  /ndk/tests/device/test-gnustl-copy_vector_into_a_set/jni/
copy_vector_into_a_set.cpp 49 std::copy(vector1.begin(), vector1.end(), std::inserter(set1, set1.begin()));
  /ndk/tests/device/test-stlport-copy_vector_into_a_set/jni/
copy_vector_into_a_set.cpp 49 std::copy(vector1.begin(), vector1.end(), std::inserter(set1, set1.begin()));
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
BinaryTempFileBody.java 6 * You may obtain a copy of the License at
73 IOUtils.copy(in, base64Out);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java 6 * You may obtain a copy of the License at
65 mInputPointers.copy(inputPointers);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm-indirect.h 17 * You should have received a copy of the GNU General Public License
49 snd_pcm_indirect_copy_t copy)
75 copy(substream, rec, bytes);
115 snd_pcm_indirect_copy_t copy)
140 copy(substream, rec, bytes);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm-indirect.h 17 * You should have received a copy of the GNU General Public License
49 snd_pcm_indirect_copy_t copy)
75 copy(substream, rec, bytes);
115 snd_pcm_indirect_copy_t copy)
140 copy(substream, rec, bytes);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 6 * You may obtain a copy of the License at
214 Configuration configuration = copy(base);
231 * Creates a new {@linkplain Configuration} that is a copy from a different configuration
233 * @param original the original to copy from
237 public static Configuration copy(@NonNull Configuration original) { method in class:Configuration
238 Configuration copy = create(original.mConfigChooser); local
239 copy.mFullConfig.set(original.mFullConfig);
241 copy.mEditedConfig = new FolderConfiguration();
242 copy.mEditedConfig.set(original.mEditedConfig);
244 copy.mTarget = original.getTarget()
    [all...]
  /external/freetype/src/base/
ftglyph.c 309 FT_Glyph copy; local
330 error = ft_new_glyph( source->library, clazz, &copy );
334 copy->advance = source->advance;
335 copy->format = source->format;
338 error = clazz->glyph_copy( source, copy );
341 FT_Done_Glyph( copy );
343 *target = copy;
400 /* copy advance while converting it to 16.16 format */
583 /* in case of success, copy the bitmap to the glyph bitmap */
588 /* copy advance *
    [all...]
  /frameworks/base/libs/androidfw/tests/
InputEvent_test.cpp 6 * You may obtain a copy of the License at
451 MotionEvent copy; local
452 copy.copyFrom(&event, true /*keepHistory*/);
461 MotionEvent copy; local
462 copy.copyFrom(&event, false /*keepHistory*/);
464 ASSERT_EQ(event.getPointerCount(), copy.getPointerCount());
465 ASSERT_EQ(0U, copy.getHistorySize());
467 ASSERT_EQ(event.getPointerId(0), copy.getPointerId(0));
468 ASSERT_EQ(event.getPointerId(1), copy.getPointerId(1));
470 ASSERT_EQ(event.getEventTime(), copy.getEventTime())
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 682 public int copy(int n, ConstPool dest, Map classnames) { method in class:ConstPool
687 return info.copy(this, dest, classnames);
1134 public abstract int copy(ConstPool src, ConstPool dest, Map classnames); method in class:ConstInfo
1157 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:ConstInfoPadding
1214 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:ClassInfo
1274 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:NameAndTypeInfo
1310 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:MemberrefInfo
1410 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:StringInfo
1439 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:IntegerInfo
1468 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:FloatInfo
1497 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:LongInfo
1526 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:DoubleInfo
1558 public int copy(ConstPool src, ConstPool dest, Map map) { method in class:Utf8Info
    [all...]
AnnotationsAttribute.java 160 * Copies this attribute and returns a new copy.
162 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AnnotationsAttribute
501 writer.memberValuePair(copy(nameIndex)); method
506 writer.constValueIndex(tag, copy(index));
513 writer.enumConstValue(copyType(typeNameIndex), copy(constNameIndex)); method
541 int copy(int srcIndex) { method in class:AnnotationsAttribute.Copier
542 return srcPool.copy(srcIndex, destPool, classnames);
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 6 * You may obtain a copy of the License at
257 sp<ABuffer> copy = local
259 memcpy(copy->data(),
266 copy->meta()->setInt64("timeUs", timeUs);
271 copy->meta()->setInt32("isSync", true);
274 notify->setBuffer("buffer", copy);
928 size_t copy = accessUnit->size(); local
929 if (copy > sizeLeft) {
930 copy = sizeLeft;
933 memcpy(ptr, accessUnit->data(), copy);
974 size_t copy = accessUnit->size() - offset; local
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 6 * You may obtain a copy of the License at
113 public static long copy(InputSupplier<? extends InputStream> from,
120 long count = copy(in, out);
142 public static long copy(InputSupplier<? extends InputStream> from,
147 long count = copy(in, to);
166 public static long copy(InputStream from,
171 long count = copy(from, out);
188 public static long copy(InputStream from, OutputStream to)
212 public static long copy(ReadableByteChannel from,
236 copy(in, out)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduComposer.java 7 * You may obtain a copy of the License at
185 * Copy buf to mMessage.
347 mStack.copy();
460 temp = EncodedStringValue.copy(address);
557 mStack.copy();
638 mStack.copy();
866 mStack.copy();
895 mStack.copy();
957 mStack.copy();
1115 void copy() { method in class:PduComposer.BufferStack
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
screen_locker.cc 594 GdkEvent* copy = gdk_event_copy(event); local
595 copy->button.window = dest_;
596 g_object_ref(copy->button.window);
597 copy->button.x -= offset_.x();
598 copy->button.y -= offset_.y();
600 gdk_event_put(copy);
601 gdk_event_free(copy);
603 GdkEvent* copy = gdk_event_copy(event); local
604 copy->motion.window = dest_;
605 g_object_ref(copy->motion.window)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DepthFirstAdapter.java 54 List<PCommand> copy = new ArrayList<PCommand>(node.getCommand()); local
55 for(PCommand e : copy)
517 List<TWord> copy = new ArrayList<TWord>(node.getMacro()); local
518 for(TWord e : copy)
524 List<PVariable> copy = new ArrayList<PVariable>(node.getArguments()); local
525 for(PVariable e : copy)
556 List<TWord> copy = new ArrayList<TWord>(node.getMacro()); local
557 for(TWord e : copy)
563 List<PExpression> copy = new ArrayList<PExpression>(node.getArguments()); local
564 for(PExpression e : copy)
946 List<PExpression> copy = new ArrayList<PExpression>(node.getArgs()); local
970 List<PExpression> copy = new ArrayList<PExpression>(node.getArgs()); local
    [all...]
  /external/libvpx/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_extendframeborders_neon.asm 33 ; Border copy for Y plane
34 ; copy the left and right most columns out
73 ;Now copy the top and bottom source lines into each line of the respective borders
77 ; copy width is plane_stride
124 mov r7, lr, lsr #4 ; check to see if extra copy is needed
129 ;Border copy for U, V planes
138 ;copy the left and right most columns out
186 ;Now copy the top and bottom source lines into each line of the respective borders
226 mov r7, lr, lsr #3 ; check to see if extra copy is needed
  /external/flac/libFLAC/
metadata_object.c 51 /* copy bytes:
55 * to <- copy of from
78 /* like copy_bytes_(), but free()s the original '*to' if the copy succeeds and the original '*to' is non-NULL */
81 FLAC__byte *copy;
83 if(copy_bytes_(&copy, from, bytes)) {
86 *to = copy;
114 char *copy = strdup(from); local
116 if(copy) {
119 *to = copy;
249 static FLAC__bool vorbiscomment_set_entry_(FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry *dest, const FLAC__StreamMetadata_VorbisComment_Entry *src, FLAC__bool copy)
    [all...]
  /build/core/
cleanspec.mk 5 # You may obtain a copy of the License at
46 # If you need to re-do something that's already mentioned, just copy
49 # made today requires touching the same file, just copy the old
  /external/chromium/net/base/
dnsrr_resolver_unittest.cc 197 uint8 copy[sizeof(kExamplePacket)]; local
205 memcpy(copy, kExamplePacket, sizeof(copy));
206 copy[byte] ^= (1 << bit);
208 response.ParseFromResponse(copy, sizeof(copy), kDNS_TXT);
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 6 * You may obtain a copy of the License at
120 // Calls to the original memoized supplier shouldn't affect its copy.
123 Supplier<Integer> copy = reserialize(memoizedSupplier); local
127 ((Suppliers.MemoizingSupplier<Integer>) copy).delegate;
128 checkMemoize(countingCopy, copy);
186 // Calls to the original memoized supplier shouldn't affect its copy.
189 Supplier<Integer> copy = reserialize(memoizedSupplier); local
193 ((Suppliers.ExpiringMemoizingSupplier<Integer>) copy).delegate;
194 checkExpiration(countingCopy, copy);

Completed in 776 milliseconds

<<21222324252627282930>>