Home
last modified time | relevance | path

Searched refs:deep (Results 1 – 25 of 212) sorted by relevance

123456789

/external/proguard/src/proguard/classfile/attribute/visitor/
DAllAttributeVisitor.java41 private final boolean deep; field in AllAttributeVisitor
64 public AllAttributeVisitor(boolean deep, in AllAttributeVisitor() argument
67 this.deep = deep; in AllAttributeVisitor()
79 if (deep) in visitProgramClass()
98 if (deep) in visitProgramMember()
/external/python/cpython2/Doc/library/
Dcopy.rst1 :mod:`copy` --- Shallow and deep copy operations
5 :synopsis: Shallow and deep copy operations.
10 changing the other. This module provides generic shallow and deep copy
23 Return a deep copy of *x*.
31 The difference between shallow and deep copying is only relevant for compound
37 * A *deep copy* constructs a new compound object and then, recursively, inserts
40 Two problems often exist with deep copy operations that don't exist with shallow
46 * Because deep copy copies everything it may copy too much, such as data
83 The latter is called to implement the deep copy operation; it is passed one
85 to make a deep copy of a component, it should call the :func:`deepcopy` function
/external/python/cpython3/Doc/library/
Dcopy.rst1 :mod:`copy` --- Shallow and deep copy operations
5 :synopsis: Shallow and deep copy operations.
14 changing the other. This module provides generic shallow and deep copy
27 Return a deep copy of *x*.
35 The difference between shallow and deep copying is only relevant for compound
41 * A *deep copy* constructs a new compound object and then, recursively, inserts
44 Two problems often exist with deep copy operations that don't exist with shallow
50 * Because deep copy copies everything it may copy too much, such as data
84 The latter is called to implement the deep copy operation; it is passed one
86 to make a deep copy of a component, it should call the :func:`deepcopy` function
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
DAllElementValueVisitor.java42 private final boolean deep; field in AllElementValueVisitor
65 public AllElementValueVisitor(boolean deep, in AllElementValueVisitor() argument
68 this.deep = deep; in AllElementValueVisitor()
190 if (deep) in visitAnnotationElementValue()
201 if (deep) in visitArrayElementValue()
/external/python/cpython2/Lib/test/
Dtest_mhlib.py130 def deep(folder, n): function
134 deep('deep/f1', 1)
135 deep('deep/f1', 2)
136 deep('deep/f1', 3)
137 deep('deep/f2', 4)
138 deep('deep/f2', 6)
139 deep('deep', 3)
140 deep('deep/f2/f3', 1)
141 deep('deep/f2/f3', 2)
/external/llvm/test/Transforms/SafeStack/
Dconstant-geps.ll4 %struct.deep = type { %union.anon }
19 %x = alloca %struct.deep, align 1
20 %b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SafeStack/X86/
Dconstant-geps.ll4 %struct.deep = type { %union.anon }
19 %x = alloca %struct.deep, align 1
20 %b = getelementptr inbounds %struct.deep, %struct.deep* %x, i32 0, i32 0
/external/libxml2/test/URI/
Duri.data16 http://elsewhere.com/#deep
17 http://elsewhere.com/?deep
18 http://elsewhere.com/?deep#deep2
/external/python/cpython3/Lib/
Dcopy.py271 deep = memo is not None
272 if deep and args:
275 if deep:
279 if deep:
295 if deep:
303 if deep:
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
D_sklearn.py40 def get_params(self, deep=True): argument
62 if deep and hasattr(value, 'get_params'):
88 valid_params = self.get_params(deep=True)
114 _pprint(self.get_params(deep=False)),)
/external/autotest/server/site_tests/firmware_Cr50DeepSleepStress/
Dcontrol9 PURPOSE = "Verify deep sleep"
16 Cr50 should enter deep sleep every time the system goes into S3. Run
17 power_SuspendStress and verify the deep sleep count matches the number of
Dcontrol.reboot9 PURPOSE = "Verify deep sleep"
16 Cr50 should enter deep sleep every time the system goes into S5. Run
17 power_SuspendStress and verify the deep sleep count matches the number of
/external/libxml2/result/URI/
Duri.data16 http://elsewhere.com/#deep
17 http://elsewhere.com/?deep
18 http://elsewhere.com/?deep#deep2
/external/autotest/client/site_tests/graphics_WebGLManyPlanetsDeep/
Dcontrol7 PURPOSE = "Execute the WebGL many planets deep test suite."
19 This test runs the WebGL many planets deep tests.
/external/python/cpython2/Lib/
Dcopy.py306 def _reconstruct(x, info, deep, memo=None): argument
327 if deep:
333 if deep:
350 if deep:
355 if deep:
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_LRN.pbtxt44 For details, see [Krizhevsky et al., ImageNet classification with deep
45 …NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neura…
/external/mesa3d/src/hgl/
DGLView.cpp283 BGLView::Archive(BMessage* data, bool deep) const in Archive()
285 return BView::Archive(data, deep); in Archive()
550 BGLScreen::Archive(BMessage* data, bool deep) const
552 return BWindowScreen::Archive(data, deep);
/external/tensorflow/tensorflow/core/ops/
Ddebug_ops.cc69 Performs CPU-to-CPU deep-copying of tensor.
72 deep-copying. See the documentation of Debug* ops for more details.
77 output: Output tensor, deep-copied from input.
/external/clang/test/SemaCXX/
Dcstyle-cast.cpp189 ppint *deep = (ppint*)(p3); in pointer_conversion() local
190 (void)(fnptr*)(deep); in pointer_conversion()
Dreinterpret-cast.cpp52 ppint *deep = reinterpret_cast<ppint*>(p3); in pointer_conversion() local
53 (void)reinterpret_cast<fnptr*>(deep); in pointer_conversion()
Dfunctional-cast.cpp256 ppint *deep = pppint(p3); in pointer_conversion() local
258 (void)fnptrp(deep); in pointer_conversion()
/external/python/cpython3/Lib/xml/dom/
Dminidom.py205 def cloneNode(self, deep): argument
206 return _clone_node(self, deep, self.ownerDocument or self)
1300 def cloneNode(self, deep): argument
1307 if deep:
1625 def cloneNode(self, deep): argument
1626 if not deep:
1633 childclone = _clone_node(n, deep, clone)
1782 def importNode(self, node, deep): argument
1787 return _clone_node(node, deep, self)
1857 def _clone_node(node, deep, newOwnerDocument): argument
[all …]
/external/python/cpython2/Lib/xml/dom/
Dminidom.py204 def cloneNode(self, deep): argument
205 return _clone_node(self, deep, self.ownerDocument or self)
1255 def cloneNode(self, deep): argument
1262 if deep:
1578 def cloneNode(self, deep): argument
1579 if not deep:
1586 childclone = _clone_node(n, deep, clone)
1735 def importNode(self, node, deep): argument
1740 return _clone_node(node, deep, self)
1812 def _clone_node(node, deep, newOwnerDocument): argument
[all …]
/external/mesa3d/include/HaikuGL/
DGLView.h72 virtual status_t Archive(BMessage *data, bool deep = true) const;
154 virtual status_t Archive(BMessage *data, bool deep = true) const;
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-rc/
Dinclude-paths.test13 ; RUN: llvm-rc /FO %t.nested-include.res /I %p/Inputs/nested %p/Inputs/deep-include.rc
18 ; RUN: not llvm-rc /FO %t.nested-include.res %p/Inputs/deep-include.rc 2>&1 \

123456789