Home
last modified time | relevance | path

Searched refs:copy2 (Results 1 – 25 of 75) sorted by relevance

123

/external/libchrome/base/debug/
Dalias_unittest.cc23 DEBUG_ALIAS_FOR_CSTR(copy2, input->c_str(), 3 /* < input->size() */); in TEST()
24 static_assert(sizeof(copy2) == 3, in TEST()
26 EXPECT_STREQ("st", copy2); in TEST()
27 EXPECT_EQ('\0', copy2[2]); in TEST()
/external/tensorflow/tensorflow/contrib/copy_graph/python/util/
Dcopy_test.py50 copy2 = copy_elements.copy_variable_to_graph(some_var,
64 v3 = copy2.eval(session=sess2)
67 assert isinstance(copy2, variables.Variable)
/external/avb/test/
Dat_auth_unlock_unittest.py164 shutil.copy2(pik_cert, shortfile)
182 shutil.copy2(pik_cert, longfile)
426 shutil.copy2(correctCreds.name, tempdir)
427 shutil.copy2(wrongCreds.name, tempdir)
448 shutil.copy2(correctCreds.name, tempdir)
460 shutil.copy2(wrongCreds.name, tempdir)
/external/lz4/tests/
Dtest-lz4-versions.py67 shutil.copy2(base_dir + '/' + test_dat_src, tmp_dir + '/' + test_dat)
90 shutil.copy2('lz4c', dst_lz4c)
92 shutil.copy2('lz4c32', dst_lz4c32)
/external/autotest/client/site_tests/video_VideoSanity/
Dvideo_VideoSanity.py58 shutil.copy2(constants.VIDEO_HTML_FILEPATH, self.bindir)
61 shutil.copy2(video_path, self.bindir)
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DDynamicMessageTest.java256 DynamicMessage copy2 = in testDynamicMessageCopy() local
258 assertFalse(copy2.hasField(bytesField)); in testDynamicMessageCopy()
259 assertTrue(copy2.hasField(uint32Field)); in testDynamicMessageCopy()
260 assertEquals(123, copy2.getField(uint32Field)); in testDynamicMessageCopy()
/external/autotest/client/site_tests/video_ChromeHWDecodeUsed/
Dvideo_ChromeHWDecodeUsed.py82 shutil.copy2(constants.VIDEO_HTML_FILEPATH, self.bindir)
85 shutil.copy2(video_path, self.bindir)
/external/tensorflow/tensorflow/core/lib/gtl/
Dflatset_test.cc252 NumSet copy2; in TEST() local
253 copy2 = src; in TEST()
254 EXPECT_EQ(Contents(src), Contents(copy2)); in TEST()
255 copy2 = *&copy2; // Self-assignment, avoiding -Wself-assign. in TEST()
256 EXPECT_EQ(Contents(src), Contents(copy2)); in TEST()
Dflatmap_test.cc321 NumMap copy2; in TEST() local
322 copy2 = src; in TEST()
323 EXPECT_EQ(Contents(src), Contents(copy2)); in TEST()
324 copy2 = *&copy2; // Self-assignment, avoiding -Wself-assign. in TEST()
325 EXPECT_EQ(Contents(src), Contents(copy2)); in TEST()
/external/pcre/pcrecpp/
Dpcrecpp_unittest.cc785 RE copy2("not a match"); in TestConstructors() local
786 CHECK(!copy2.FullMatch(str)); in TestConstructors()
787 copy2 = copy1; in TestConstructors()
788 CHECK(copy2.FullMatch(str)); in TestConstructors()
789 copy2 = orig; in TestConstructors()
790 CHECK(copy2.FullMatch(str)); in TestConstructors()
795 copy2 = copy2; in TestConstructors()
798 CHECK(copy2.FullMatch(str)); in TestConstructors()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_domain_test.cc650 HloInstruction* copy2 = computation->AddInstruction( in TEST_F() local
653 computation->AddInstruction(HloInstruction::CreateTuple({gte0, copy2})); in TEST_F()
688 EXPECT_TRUE(copy2->has_sharding()); in TEST_F()
689 EXPECT_EQ(HloSharding::Tuple(copy2->shape(), {HloSharding::AssignDevice(1), in TEST_F()
691 copy2->sharding()); in TEST_F()
/external/python/cpython2/Lib/test/
Dtest_sort.py261 copy2 = data[:]
265 copy2.sort(key=lambda x: x[0], reverse=True)
266 self.assertEqual(data, copy2)
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/PowerPC/
Dppc64-localentry.s39 copy2 = callee2 define
84 # CHECK: Name: copy2
/external/llvm/test/MC/PowerPC/
Dppc64-localentry.s39 copy2 = callee2 define
84 # CHECK: Name: copy2
/external/python/cpython3/Doc/library/
Dshutil.rst26 :func:`shutil.copy2`) cannot copy all file metadata.
160 :func:`~shutil.copy2` instead.
166 .. function:: copy2(src, dst, *, follow_symlinks=True)
168 Identical to :func:`~shutil.copy` except that :func:`copy2`
172 link, :func:`copy2` attempts to copy all metadata from the
176 unavailable, :func:`copy2` will preserve all the metadata
177 it can; :func:`copy2` never returns failure.
179 :func:`copy2` uses :func:`copystat` to copy the file metadata.
196 copy_function=copy2, ignore_dangling_symlinks=False)
203 :func:`shutil.copy2`.
[all …]
/external/boringssl/src/crypto/stack/
Dstack_test.cc284 ShallowStack copy2(sk_TEST_INT_dup(sk.get())); in TEST() local
285 ASSERT_TRUE(copy2); in TEST()
286 EXPECT_TRUE(sk_TEST_INT_is_sorted(copy2.get())); in TEST()
287 ASSERT_TRUE(sk_TEST_INT_find(copy2.get(), &index, three.get())); in TEST()
/external/openssh/regress/
Dscp.sh15 COPY2=${OBJ}/copy2
95 cp -p ${DATA} ${DIR}/copy2
/external/tensorflow/tensorflow/tools/git/
Dgen_git_source.py130 shutil.copy2(src, os.path.join(gen_path, target))
132 shutil.copy2(src, os.path.join(gen_path, target))
/external/boringssl/src/crypto/pkcs7/
Dpkcs7_x509.c245 CBS copy = *cbs, copy2 = *cbs; in pkcs7_new() local
262 ret->ber_len = CBS_len(&copy2) - CBS_len(cbs); in pkcs7_new()
263 ret->ber_bytes = BUF_memdup(CBS_data(&copy2), ret->ber_len); in pkcs7_new()
/external/skqp/gn/
Dcp.py23 shutil.copy2(src, dst)
/external/skia/gn/
Dcp.py23 shutil.copy2(src, dst)
/external/python/cpython3/Lib/test/
Dtest_sort.py249 copy2 = data[:]
259 copy2.sort(key=lambda x: x[0], reverse=True)
260 self.assertEqual(data, copy2)
/external/clang/test/CodeGen/
Dtbaa-struct.cpp23 void copy2(struct B *a, struct B *b) { in copy2() function
/external/autotest/client/site_tests/video_VideoCorruption/
Dvideo_VideoCorruption.py28 shutil.copy2(constants.VIDEO_HTML_FILEPATH, self.bindir)
/external/autotest/client/site_tests/video_VideoReload/
Dvideo_VideoReload.py29 shutil.copy2(constants.VIDEO_HTML_FILEPATH, self.bindir)

123