Home
last modified time | relevance | path

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

123456

/external/javassist/src/main/javassist/bytecode/analysis/
DType.java392 CtClass shallow = two; in findCommonSuperClass() local
393 CtClass backupShallow = shallow; in findCommonSuperClass()
399 if (eq(deep, shallow) && deep.getSuperclass() != null) in findCommonSuperClass()
403 CtClass shallowSuper = shallow.getSuperclass(); in findCommonSuperClass()
407 shallow = backupShallow; in findCommonSuperClass()
417 deep = shallow; in findCommonSuperClass()
418 shallow = backupShallow; in findCommonSuperClass()
423 shallow = shallowSuper; in findCommonSuperClass()
439 while (!eq(deep, shallow)) { in findCommonSuperClass()
441 shallow = shallow.getSuperclass(); in findCommonSuperClass()
/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*.
36 The difference between shallow and deep copying is only relevant for compound
39 * A *shallow copy* constructs a new compound object and then (to the extent
45 Two problems often exist with deep copy operations that don't exist with shallow
64 classes (shallow and deeply), by returning the original object unchanged; this
84 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/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java528 CtClass shallow = two; in commonSuperClass() local
529 CtClass backupShallow = shallow; in commonSuperClass()
535 if (eq(deep, shallow) && deep.getSuperclass() != null) in commonSuperClass()
539 CtClass shallowSuper = shallow.getSuperclass(); in commonSuperClass()
543 shallow = backupShallow; in commonSuperClass()
553 deep = shallow; in commonSuperClass()
554 shallow = backupShallow; in commonSuperClass()
559 shallow = shallowSuper; in commonSuperClass()
575 while (!eq(deep, shallow)) { in commonSuperClass()
577 shallow = shallow.getSuperclass(); in commonSuperClass()
/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/virglrenderer/ci/
Dbuild-container.sh95 git clone --shallow-since="$GIT_DATE" https://gitlab.freedesktop.org/mesa/drm.git . && \
112 git clone --shallow-since="$GIT_DATE" ${MESA_REPO} . && \
126 git clone --shallow-since="$GIT_DATE" https://github.com/anholt/libepoxy.git . && \
169 git clone --shallow-since="$GIT_DATE" https://github.com/KhronosGroup/VK-GL-CTS.git . && \
185 git clone --shallow-since="$GIT_DATE" https://gitlab.freedesktop.org/mesa/piglit.git . && \
/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/python/cpython3/Lib/
Dfilecmp.py30 def cmp(f1, f2, shallow=True): argument
56 if shallow and s1 == s2:
254 def cmpfiles(a, b, common, shallow=True): argument
271 res[_cmp(ax, bx, shallow)].append(x)
/external/vulkan-validation-layers/scripts/
Dgenerate_source.py108 shallow=False):
124 not filecmp.cmp(temp_filename, repo_filename, shallow=False):
/external/tensorflow/tensorflow/lite/tools/cmake/modules/
Dgemmlowp.cmake26 # It's not currently (cmake 3.17) possible to shallow clone with a GIT TAG
28 # which doesn't work as it's a shallow clone hence a different commit hash.
Dfarmhash.cmake27 # It's not currently possible to shallow clone with a GIT TAG
29 # which doesn't work as it's a shallow clone hence a different commit hash.
/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/rust/crates/quiche/deps/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/llvm-project/clang/test/Analysis/
Dshallow-mode.m1 …ng_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -analyzer-config mode=shallow -verify %s
/external/clang/test/Analysis/
Dshallow-mode.m1 …g_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config mode=shallow -verify %s
/external/autotest/metadata/
Dgenerate_proto_descriptors.sh29 git clone -q --depth=1 --shallow-submodules "${CROS_CONFIG_REPO}" \
/external/skia/docker/skia-build-tools/
DDockerfile14 # TODO(kjlubick): Try a shallow clone of depot_tools
/external/oss-fuzz/projects/htslib/
DDockerfile19 RUN git clone --depth 1 --shallow-submodules --recurse-submodules https://github.com/samtools/htsli…
/external/python/cpython2/Tools/freeze/
Dbkfile.py39 if filecmp.cmp(self.__backup, self.__filename, shallow = 0):
/external/autotest/cli/
Dskylab_utils.py131 self.git_repo.clone(shallow=True)

123456