HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 26 - 50 of 3098) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/elfutils/libelf/
elf32_getshdr.c 107 /* Now copy the data and at the same time convert the byte order. */
117 bool copy = ! (ALLOW_UNALIGNED local
121 if (! copy)
167 if (copy)
  /external/javassist/src/main/javassist/bytecode/
DeprecatedAttribute.java 47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
SyntheticAttribute.java 47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
  /external/libcxx/test/std/utilities/tuple/tuple.general/
ignore.pass.cpp 28 { // Test that std::ignore provides constexpr copy/move constructors
29 auto copy = std::ignore; local
30 auto moved = std::move(copy);
33 { // Test that std::ignore provides constexpr copy/move assignment
34 auto copy = std::ignore; local
35 copy = std::ignore;
37 moved = std::move(copy);
  /external/skia/src/gpu/
GrSurfaceContext.cpp 83 bool GrSurfaceContext::copy(GrSurfaceProxy* src, const SkIRect& srcRect, const SkIPoint& dstPoint) { function in class:GrSurfaceContext
  /external/skqp/src/gpu/
GrSurfaceContext.cpp 87 bool GrSurfaceContext::copy(GrSurfaceProxy* src, const SkIRect& srcRect, const SkIPoint& dstPoint) { function in class:GrSurfaceContext
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 100 def copy(self): member in class:Grammar
102 Copy the grammar.
107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
grammar.py 100 def copy(self): member in class:Grammar
102 Copy the grammar.
107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.general/
ignore.pass.cpp 28 { // Test that std::ignore provides constexpr copy/move constructors
29 auto copy = std::ignore; local
30 auto moved = std::move(copy);
33 { // Test that std::ignore provides constexpr copy/move assignment
34 auto copy = std::ignore; local
35 copy = std::ignore;
37 moved = std::move(copy);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 100 def copy(self): member in class:Grammar
102 Copy the grammar.
107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 100 def copy(self): member in class:Grammar
102 Copy the grammar.
107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
  /system/connectivity/wifilogd/tests/
byte_buffer_unittest.cpp 6 * You may obtain a copy of the License at
65 ByteBuffer<kBufferSizeBytes> copy; local
66 ASSERT_NE(buffer_.size(), copy.size());
68 copy = buffer_;
69 ASSERT_EQ(buffer_.size(), copy.size());
70 EXPECT_EQ(0, std::memcmp(copy.data(), buffer_.data(), buffer_.size()));
87 const ByteBuffer<kBufferSizeBytes> copy{buffer_};
88 ASSERT_EQ(buffer_.size(), copy.size());
89 EXPECT_EQ(0, std::memcmp(copy.data(), buffer_.data(), buffer_.size()));
  /tools/tradefederation/core/tests/src/com/android/tradefed/build/
KernelBuildInfoTest.java 6 * You may obtain a copy of the License at
51 IKernelBuildInfo copy = (KernelBuildInfo) mBuildInfo.clone(); local
54 assertEquals(mBuildInfo.getBuildBranch(), copy.getBuildBranch());
55 assertEquals(mBuildInfo.getBuildFlavor(), copy.getBuildFlavor());
56 assertEquals(mBuildInfo.getBuildId(), copy.getBuildId());
57 assertEquals(mBuildInfo.getBuildTargetName(), copy.getBuildTargetName());
58 assertEquals(mBuildInfo.getCommitTime(), copy.getCommitTime());
59 assertEquals(mBuildInfo.getShortSha1(), copy.getShortSha1());
60 assertEquals(mBuildInfo.getTestTag(), copy.getTestTag());
62 assertFalse(mKernelFile.getAbsolutePath().equals(copy.getKernelFile()))
    [all...]
KernelDeviceBuildInfoTest.java 6 * You may obtain a copy of the License at
64 KernelDeviceBuildInfo copy = (KernelDeviceBuildInfo) mBuildInfo.clone(); local
67 assertEquals(mBuildInfo.getBuildBranch(), copy.getBuildBranch());
68 assertEquals(mBuildInfo.getBuildFlavor(), copy.getBuildFlavor());
69 assertEquals(mBuildInfo.getBuildId(), copy.getBuildId());
70 assertEquals(mBuildInfo.getBuildTargetName(), copy.getBuildTargetName());
71 assertEquals(mBuildInfo.getCommitTime(), copy.getCommitTime());
72 assertEquals(mBuildInfo.getShortSha1(), copy.getShortSha1());
73 assertEquals(mBuildInfo.getTestTag(), copy.getTestTag());
75 assertFalse(mDeviceFile.getAbsolutePath().equals(copy.getDeviceImageFile()))
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 6 * You may obtain a copy of the License at
95 T copy = reserialize(object); local
97 .addEqualityGroup(object, copy)
99 Assert.assertEquals(object.getClass(), copy.getClass());
100 return copy;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageNodeImplTest.java 114 ICoverageNode copy = node.getPlainCopy(); local
115 assertEquals(ElementType.CLASS, copy.getElementType());
116 assertEquals("Sample", copy.getName());
117 assertEquals(CounterImpl.getInstance(1, 1), copy.getClassCounter());
118 assertEquals(CounterImpl.getInstance(2, 2), copy.getMethodCounter());
119 assertEquals(CounterImpl.getInstance(3, 3), copy.getBranchCounter());
121 copy.getInstructionCounter());
122 assertEquals(CounterImpl.getInstance(5, 5), copy.getLineCounter());
123 assertEquals(CounterImpl.getInstance(6, 6), copy.getComplexityCounter());
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
TeeOpTest.java 12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
58 List<Integer> copy = new ArrayList<>(); local
60 assertCountSum(countTo(0).stream().peek(copy::add), 0, 0);
61 assertCountSum(copy.iterator(), 0, 0);
63 copy.clear();
64 assertCountSum(countTo(10).stream().peek(copy::add), 10, 55);
65 assertCountSum(copy.iterator(), 10, 55);
67 copy.clear();
68 assertCountSum(countTo(10).stream().map(mDoubler).peek(copy::add), 10, 110)
    [all...]
  /tools/tradefederation/contrib/src/com/android/tradefed/build/
TestzipBuildInfo.java 6 * You may obtain a copy of the License at
76 AppBuildInfo copy = new AppBuildInfo(getBuildId(), getBuildTargetName()); local
77 copy.addAllBuildAttributes(this);
79 copy.addAllFiles(this);
83 copy.setBuildBranch(getBuildBranch());
84 copy.setBuildFlavor(getBuildFlavor());
86 return copy;
  /build/make/core/
distdir.mk 6 # You may obtain a copy of the License at
17 # When specifying "dist", the user has asked that we copy the important
24 # $(3): goals that should copy the file
26 define copy-one-dist-file
30 $$(copy-file-to-new-target-with-cp)
36 # copy-one-dist-file to avoid multiple rules for the same target.
46 # at copy time if necessary.
55 $(eval $(call copy-one-dist-file,\
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Copying.c 85 characters, null characters are appended to the copy in the array pointed
112 strncpyX exists because normal strncpy does not indicate if the copy was
115 @return The strncpyX function returns 0 if the copy operation was
136 /** NetBSD Compatibility Function strdup creates a duplicate copy of a string. **/
141 char *copy; local
144 if ((copy = malloc(len)) == NULL)
146 memcpy(copy, str, len);
147 return (copy);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
UnivariateStatistic.java 7 * the License. You may obtain a copy of the License at
47 * Returns a copy of the statistic with the same internal state.
49 * @return a copy of the statistic
51 UnivariateStatistic copy(); method in interface:UnivariateStatistic
  /external/autotest/site_utils/lxc/
zygote.py 145 def copy(self, host_path, container_path): member in class:Zygote
152 return super(Zygote, self).copy(host_path, container_path)
154 logging.debug('copy %s to %s', host_path, container_path)
156 # First copy the files into the host mount, then move them from within
  /external/dtc/tests/
check_path.c 16 * You should have received a copy of the GNU Lesser General Public
39 void *dt, *copy; local
42 copy = xmalloc(FDT_COPY_SIZE);
47 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE));
49 return copy;
overlay_bad_fixup.c 17 * You should have received a copy of the GNU Lesser General Public
40 void *dt, *copy; local
44 copy = xmalloc(FDT_COPY_SIZE);
49 CHECK(fdt_open_into(dt, copy, FDT_COPY_SIZE), 0);
51 return copy;
  /external/elfutils/libdwfl/
dwfl_module_build_id.c 42 void *copy = malloc (len); local
43 if (unlikely (copy == NULL))
49 mod->build_id_bits = memcpy (copy, bits, len);

Completed in 1212 milliseconds

12 3 4 5 6 7 8 91011>>