/external/proguard/src/proguard/classfile/attribute/visitor/ |
D | AllAttributeVisitor.java | 41 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/ |
D | copy.rst | 1 :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/ |
D | copy.rst | 1 :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/ |
D | AllElementValueVisitor.java | 42 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/ |
D | test_mhlib.py | 130 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/ |
D | constant-geps.ll | 4 %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/ |
D | constant-geps.ll | 4 %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/ |
D | uri.data | 16 http://elsewhere.com/#deep 17 http://elsewhere.com/?deep 18 http://elsewhere.com/?deep#deep2
|
/external/python/cpython3/Lib/ |
D | copy.py | 271 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.py | 40 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/ |
D | control | 9 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
|
D | control.reboot | 9 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/ |
D | uri.data | 16 http://elsewhere.com/#deep 17 http://elsewhere.com/?deep 18 http://elsewhere.com/?deep#deep2
|
/external/autotest/client/site_tests/graphics_WebGLManyPlanetsDeep/ |
D | control | 7 PURPOSE = "Execute the WebGL many planets deep test suite." 19 This test runs the WebGL many planets deep tests.
|
/external/python/cpython2/Lib/ |
D | copy.py | 306 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/ |
D | api_def_LRN.pbtxt | 44 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/ |
D | GLView.cpp | 283 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/ |
D | debug_ops.cc | 69 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/ |
D | cstyle-cast.cpp | 189 ppint *deep = (ppint*)(p3); in pointer_conversion() local 190 (void)(fnptr*)(deep); in pointer_conversion()
|
D | reinterpret-cast.cpp | 52 ppint *deep = reinterpret_cast<ppint*>(p3); in pointer_conversion() local 53 (void)reinterpret_cast<fnptr*>(deep); in pointer_conversion()
|
D | functional-cast.cpp | 256 ppint *deep = pppint(p3); in pointer_conversion() local 258 (void)fnptrp(deep); in pointer_conversion()
|
/external/python/cpython3/Lib/xml/dom/ |
D | minidom.py | 205 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/ |
D | minidom.py | 204 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/ |
D | GLView.h | 72 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/ |
D | include-paths.test | 13 ; 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 \
|