HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 826 - 850 of 1328) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.cpp 402 SkApply* copy = (SkApply*) deepCopy(&maker); // work on copy of animator state local
404 copy->mode = (Mode) -1;
405 SkDrawable* copyScope = copy->scope = (SkDrawable*) scope->deepCopy(&maker);
413 if (copy->resolveIDs(maker, this, this)) { // fix up all fields, including target
417 copy->activate(maker);
418 copy->interpolate(maker, step * SK_MSec1);
419 maker.removeActive(copy->fActive);
421 delete copy;
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
ninja.py 5 import copy namespace
407 # any of its action/rule/copy steps.
722 for copy in copies:
723 for path in copy['files']:
728 dst = self.GypPathToNinja(os.path.join(copy['destination'], basename),
730 outputs += self.ninja.build(dst, 'copy', src, order_only=prebuild)
732 # gyp has mac_bundle_resources to copy things into a bundle's
733 # Resources folder, but there's no built-in way to copy files to other
736 # the bundle depends so that dependent targets get rebuilt if the copy
750 variables=[('mactool_cmd', 'copy-bundle-resource')]
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 13 import copy namespace
184 kp = list(keypath) # Make a copy of the list for descending this node.
192 kp = list(keypath) # Copy list.
323 new_target = copy.deepcopy(target)
406 # a deep copy of the defaults for each target, merge the target dict
407 # as found in the input file into that copy, and then hook up the
408 # copy with the target-specific data merged into it as the replacement
411 new_target_dict = copy.deepcopy(build_file_data['target_defaults'])
770 processed_variables = copy.deepcopy(variables)
    [all...]
xcode_emulation.py 10 import copy namespace
    [all...]
  /external/chromium_org/v8/src/arm/
builtins-arm.cc 295 // Push a copy of the function onto the stack.
586 // Copy arguments and receiver to the expression stack.
715 // Copy arguments to the stack in a loop.
1414 Label copy; local
1441 Label copy; local
    [all...]
  /external/chromium_org/v8/src/ia32/
builtins-ia32.cc 80 // Push a copy of the function.
357 // Copy arguments and receiver to the expression stack.
464 // Copy arguments to the stack in a loop.
803 __ j(not_sign, &loop); // While non-negative (to copy return address).
804 __ pop(ebx); // Discard copy of return address.
1258 Label copy; local
1281 Label copy; local
    [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc 303 // Push a copy of the function onto the stack.
606 // Copy arguments and receiver to the expression stack.
733 // Copy arguments to the stack in a loop.
1444 Label copy; local
1476 Label copy; local
    [all...]
  /external/chromium_org/v8/src/x64/
builtins-x64.cc 79 // Push a copy of the function onto the stack.
362 // Copy arguments and receiver to the expression stack.
527 // Copy arguments to the stack in a loop.
866 __ j(not_sign, &loop); // While non-negative (to copy return address).
867 __ pop(rbx); // Discard copy of return address.
1332 Label copy; local
1351 Label copy; local
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 37 /** init copy
39 @param src The number to copy from
59 /** copy
60 @param src The number to copy from
64 int (*copy)(void *src, void *dst); member in struct:__anon17392
451 #define mp_copy(a, b) ltc_mp.copy(a, b)
  /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...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 6 * You may obtain a copy of the License at
424 final Object[] copy = new Object[size]; local
425 Platform.unsafeArrayCopy(source, 0, copy, 0, size);
426 return Arrays.asList(copy);
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableBiMapTest.java 6 * You may obtain a copy of the License at
415 ImmutableBiMap<String, Integer> copy local
417 assertEquals(Collections.<String, Integer>emptyMap(), copy); local
418 assertSame(copy, ImmutableBiMap.copyOf(copy));
419 assertSame(ImmutableBiMap.of(), copy); local
423 ImmutableBiMap<String, Integer> copy local
425 assertMapEquals(copy, "one", 1);
426 assertSame(copy, ImmutableBiMap.copyOf(copy));
435 ImmutableBiMap<String, Integer> copy = ImmutableBiMap.copyOf(original); local
532 ImmutableBiMap<String, Integer> copy = local
543 ImmutableBiMap<String, Integer> copy = local
    [all...]
ImmutableMapTest.java 6 * You may obtain a copy of the License at
495 ImmutableMap<String, Integer> copy local
497 assertEquals(Collections.<String, Integer>emptyMap(), copy); local
498 assertSame(copy, ImmutableMap.copyOf(copy));
502 ImmutableMap<String, Integer> copy local
504 assertMapEquals(copy, "one", 1);
505 assertSame(copy, ImmutableMap.copyOf(copy));
514 ImmutableMap<String, Integer> copy = ImmutableMap.copyOf(original) local
    [all...]
ImmutableMultisetTest.java 6 * You may obtain a copy of the License at
415 Collection<String> copy = SerializableTester.reserializeAndAssert(c); local
416 ASSERT.that(copy).hasContentsInOrder("a", "a", "b");
422 Collection<String> copy = local
424 ASSERT.that(copy).hasContentsInOrder("a", "b");
ImmutableSetMultimapTest.java 6 * You may obtain a copy of the License at
300 ImmutableSetMultimap<Object, Object> copy local
302 assertEquals(3, copy.size());
ImmutableSortedMultisetTest.java 5 * in compliance with the License. You may obtain a copy of the License at
411 Collection<String> copy = SerializableTester.reserializeAndAssert(c); local
412 ASSERT.that(copy).hasContentsInOrder("a", "a", "b");
417 Collection<String> copy = SerializableTester.reserializeAndAssert(c.elementSet()); local
418 ASSERT.that(copy).hasContentsInOrder("a", "b");
449 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); local
450 assertTrue(copy instanceof ImmutableAsList);
  /external/icu4c/i18n/
dtitvinf.cpp 660 UnicodeString* copy = new UnicodeString[kIPI_MAX_INDEX]; local
663 copy[i] = value[i];
665 target->put(UnicodeString(*key), copy, status);
  /external/icu4c/test/intltest/
srchtest.cpp 755 StringSearch *copy = new StringSearch(*result); local
756 if (*(copy->getCollator()) != *(result->getCollator()) ||
757 copy->getBreakIterator() != result->getBreakIterator() ||
758 copy->getMatchedLength() != result->getMatchedLength() ||
759 copy->getMatchedStart() != result->getMatchedStart() ||
760 copy->getOffset() != result->getOffset() ||
761 copy->getPattern() != result->getPattern() ||
762 copy->getText() != result->getText() ||
763 *(copy) != *(result))
767 delete copy;
    [all...]
  /external/javassist/src/main/javassist/bytecode/
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);
StackMapTable.java 56 * Makes a copy.
64 public AttributeInfo copy(ConstPool newCp, Map classnames) method in class:StackMapTable
77 * An exception that may be thrown by <code>copy()</code>
411 return srcPool.copy(data, destPool, null);
420 newData[i] = srcPool.copy(data[i], destPool, null);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
BufferUtils.java 357 * the buffer to copy from/to
359 * the index of the vector to copy
361 * the index to copy the vector to
562 * the buffer to copy from/to
564 * the index of the vector to copy
566 * the index to copy the vector to
755 * the DoubleBuffer to copy
756 * @return the copy
764 DoubleBuffer copy; local
766 copy = createDoubleBuffer(buf.limit())
826 FloatBuffer copy; local
889 IntBuffer copy; local
967 ByteBuffer copy; local
1041 ShortBuffer copy; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 6 * You may obtain a copy of the License at
101 // Copy in existing children.
415 // ************************ Copy *************************
417 public void copy(String toPath, Data from) { method in class:NestedMapData
419 throw new NullPointerException("Invalid copy destination path");
426 to.copy(from);
429 public void copy(Data from) { method in class:NestedMapData
437 // Clear any existing attributes and copy the ones from the source.
445 // If the source node was a symlink, just copy the link over and we're done.
451 // Copy over the node's value
    [all...]
  /external/openssh/
misc.c 205 struct passwd *copy = xcalloc(1, sizeof(*copy)); local
207 copy->pw_name = xstrdup(pw->pw_name);
208 copy->pw_passwd = pw->pw_passwd ? xstrdup(pw->pw_passwd) : NULL;
210 copy->pw_gecos = xstrdup(pw->pw_gecos);
212 copy->pw_uid = pw->pw_uid;
213 copy->pw_gid = pw->pw_gid;
215 copy->pw_expire = pw->pw_expire;
218 copy->pw_change = pw->pw_change;
221 copy->pw_class = xstrdup(pw->pw_class)
    [all...]
  /external/openssh/openbsd-compat/
glob.c 252 /* copy part up to the brace */
359 /* Copy up to the end of the string or / */
396 /* Copy the home directory */
621 /* Find end of next segment, copy tentatively to pathend. */
755 char *copy = NULL; local
828 if ((copy = malloc(len)) != NULL) {
829 if (g_Ctoc(path, copy, len)) {
830 free(copy);
833 pathv[pglob->gl_offs + pglob->gl_pathc++] = copy;
844 return(copy == NULL ? GLOB_NOSPACE : 0)
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
GeneratedMessageTest.java 471 TestAllExtensions copy = TestAllExtensions.newBuilder(original).build(); local
472 TestUtil.assertAllExtensionsSet(copy);
530 TestAllExtensionsLite copy = local
532 TestUtil.assertAllExtensionsSet(copy);

Completed in 788 milliseconds

<<31323334353637383940>>