Home
last modified time | relevance | path

Searched refs:shallow (Results 1 – 25 of 109) sorted by relevance

12345

/external/python/cpython2/Doc/library/
Dcopy.rst10 changing the other. This module provides generic shallow and deep copy
18 Return a shallow copy of *x*.
31 The difference between shallow and deep copying is only relevant for compound
34 * A *shallow copy* constructs a new compound object and then (to the extent
40 Two problems often exist with deep copy operations that don't exist with shallow
59 classes (shallow and deeply), by returning the original object unchanged; this
82 to implement the shallow copy operation; no additional arguments are passed.
Dfilecmp.rst19 .. function:: cmp(f1, f2[, shallow])
24 Unless *shallow* is given and is false, files with identical :func:`os.stat`
34 .. function:: cmpfiles(dir1, dir2, common[, shallow])
46 The *shallow* parameter has the same meaning and default value as for
78 The :class:`dircmp` class compares files by doing *shallow* comparisons
/external/python/cpython3/Doc/library/
Dcopy.rst14 changing the other. This module provides generic shallow and deep copy
22 Return a shallow copy of *x*.
35 The difference between shallow and deep copying is only relevant for compound
38 * A *shallow copy* constructs a new compound object and then (to the extent
44 Two problems often exist with deep copy operations that don't exist with shallow
63 classes (shallow and deeply), by returning the original object unchanged; this
83 to implement the shallow copy operation; no additional arguments are passed.
Dfilecmp.rst20 .. function:: cmp(f1, f2, shallow=True)
25 If *shallow* is true, files with identical :func:`os.stat` signatures are
36 .. function:: cmpfiles(dir1, dir2, common, shallow=True)
48 The *shallow* parameter has the same meaning and default value as for
77 The :class:`dircmp` class compares files by doing *shallow* comparisons
/external/python/cpython3/Lib/test/
Dtest_filecmp.py32 self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False),
36 self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False),
46 first_compare = filecmp.cmp(self.name, self.name_same, shallow=False)
47 second_compare = filecmp.cmp(self.name, self.name_diff, shallow=False)
95 shallow=False) ==
99 shallow=False),
/external/python/cpython2/Lib/test/
Dtest_filecmp.py30 self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False),
32 self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False),
81 shallow=False) ==
85 shallow=False),
/external/python/cpython3/Lib/
Dfilecmp.py29 def cmp(f1, f2, shallow=True): argument
55 if shallow and s1 == s2:
250 def cmpfiles(a, b, common, shallow=True): argument
267 res[_cmp(ax, bx, shallow)].append(x)
/external/python/cpython2/Lib/
Dfilecmp.py21 def cmp(f1, f2, shallow=1): argument
46 if shallow and s1 == s2:
241 def cmpfiles(a, b, common, shallow=1): argument
258 res[_cmp(ax, bx, shallow)].append(x)
/external/boringssl/src/crypto/stack/
Dstack_test.cc173 ShallowStack shallow(sk_TEST_INT_dup(sk.get())); in TEST() local
174 ASSERT_TRUE(shallow); in TEST()
175 ASSERT_EQ(sk_TEST_INT_num(sk.get()), sk_TEST_INT_num(shallow.get())); in TEST()
178 sk_TEST_INT_value(shallow.get(), i)); in TEST()
/external/python/cpython3/Tools/freeze/
Dbkfile.py21 if filecmp.cmp(backup, file, shallow=False):
/external/e2fsprogs/tests/f_extent_too_deep/
Dexpect.112 Inode 12 extent tree could be more shallow (7; could be <= 4)
/external/clang/test/Analysis/
Dshallow-mode.m1 …g_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config mode=shallow -verify %s
/external/autotest/server/site_tests/brillo_ADBFileTransfer/
Dbrillo_ADBFileTransfer.py49 return_temp_file.name, shallow=False):
/external/python/cpython3/Doc/c-api/
Dcontextvars.rst85 Create a shallow copy of the passed *ctx* context object.
90 Create a shallow copy of the current thread context.
/external/autotest/server/site_tests/brillo_ADBDirectoryTransfer/
Dbrillo_ADBDirectoryTransfer.py62 if not filecmp.cmp(original, returned, shallow=False):
/external/autotest/cli/
Dskylab_utils.py131 self.git_repo.clone(shallow=True)
/external/python/cpython2/Tools/freeze/
Dbkfile.py39 if filecmp.cmp(self.__backup, self.__filename, shallow = 0):
/external/autotest/client/common_lib/
Drevision_control.py161 def clone(self, remote_branch=None, shallow=False): argument
179 if shallow:
/external/skqp/infra/bots/
Dtest_utils.py59 test.assertTrue(filecmp.cmp(pathA, pathB, shallow=False))
/external/skia/infra/bots/
Dtest_utils.py59 test.assertTrue(filecmp.cmp(pathA, pathB, shallow=False))
/external/webrtc/webrtc/api/objc/
DRTCVideoFrame.mm72 // Keep a shallow copy of the video frame. The underlying frame buffer is
/external/v8/src/runtime/
Druntime-literals.cc75 bool shallow = hints_ == kObjectIsShallow; in StructureWalk() local
77 if (!shallow) { in StructureWalk()
106 if (shallow) return copy; in StructureWalk()
/external/brotli/c/enc/
Dhash.h198 HasherSearchResult* out, BROTLI_BOOL shallow) { in SearchInStaticDictionary() argument
206 for (i = 0; i < (shallow ? 1u : 2u); ++i, ++key) { in SearchInStaticDictionary()
/external/owasp/sanitizer/tools/
Dupdate_tree_in_svn.py77 if not filecmp.cmp(src, dst, shallow=0): copy(src, dst)
/external/brotli/python/tests/
D_test_utils.py111 filecmp.cmp(first, second, shallow=False),

12345