/external/ltp/testcases/kernel/fs/fs_bind/rbind/ |
D | 00_Descriptions.txt | 26 test01 - shared child to shared parent. 27 test02 - shared child to private parent. 28 test03 - shared child to slave parent. 29 test04 - shared child to unclonable parent. 30 test05 - private child to shared parent. 31 test06 - private child to private parent. 32 test07 - private child to slave parent. 33 test08 - private child to uncloneable parent. 34 test09 - slave child to shared parent. 35 test10 - slave child to private parent. [all …]
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_hierarchy_test/ |
D | cpuset_hierarchy_test.sh | 49 cpuset_log "child cpus $(cat "$CPUSET/father/child/cpus")" 52 test -z "$(cat "$CPUSET/father/child/cpus")" || return 1 61 cpuset_log "child cpus $(cat "$CPUSET/father/child/cpus")" 64 test -z "$(cat "$CPUSET/father/child/cpus")" || return 1 73 cpuset_log "child cpus $(cat "$CPUSET/father/child/cpus")" 76 test -z "$(cat "$CPUSET/father/child/cpus")" || return 1 85 cpuset_log "child cpus $(cat "$CPUSET/father/child/cpus")" 88 test 0 = "$(cat "$CPUSET/father/child/cpus")" || return 1 97 cpuset_log "child cpus $(cat "$CPUSET/father/child/cpus")" 100 test -z "$(cat "$CPUSET/father/child/cpus")" || return 1 [all …]
|
/external/ltp/testcases/kernel/fs/fs_bind/bind/ |
D | 00_Descriptions.txt | 25 test01 - shared child to shared parent. 26 test02 - shared child to private parent. 27 test03 - shared child to slave parent. 28 test04 - shared child to unclonable parent. 29 test05 - private child to shared parent. 30 test06 - private child to private parent. 31 test07 - private child to slave parent. 33 test08 - private child to uncloneable parent. 34 test09 - slave child to shared parent. 35 test10 - slave child to private parent. [all …]
|
/external/boringssl/src/crypto/dsa/ |
D | dsa_asn1.c | 90 CBS child; in DSA_SIG_parse() local 91 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in DSA_SIG_parse() 92 !parse_integer(&child, &ret->r) || in DSA_SIG_parse() 93 !parse_integer(&child, &ret->s) || in DSA_SIG_parse() 94 CBS_len(&child) != 0) { in DSA_SIG_parse() 103 CBB child; in DSA_SIG_marshal() local 104 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in DSA_SIG_marshal() 105 !marshal_integer(&child, sig->r) || in DSA_SIG_marshal() 106 !marshal_integer(&child, sig->s) || in DSA_SIG_marshal() 119 CBS child; in DSA_parse_public_key() local [all …]
|
/external/libxml2/test/XPath/tests/ |
D | simplebase | 1 /child::* 2 /child::EXAMPLE 3 /child::EXAMPLE/child::head 4 /child::EXAMPLE/child::* 5 /child::EXAMPLE/child::head/child::title 6 /child::EXAMPLE/child::head/child::title/child::text() 7 /child::EXAMPLE/child::head/node() 8 /child::EXAMPLE/attribute::prop1/self::node() 9 /child::EXAMPLE/attribute::prop1/self::* 10 /child::EXAMPLE/attribute::prop1/descendant-or-self::node() [all …]
|
D | chaptersbase | 1 /child::EXAMPLE 2 /child::* 3 /child::EXAMPLE/child::head 4 /child::EXAMPLE/child::* 5 /child::EXAMPLE/child::head/child::title 6 /child::EXAMPLE/child::head/child::title/child::text() 7 /child::EXAMPLE/child::head/node()
|
/external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace.h | 64 int start_trace(pid_t child) in start_trace() argument 68 ret = ptrace(PTRACE_ATTACH, child, NULL, NULL); in start_trace() 73 ret = waitpid(child, NULL, 0); in start_trace() 74 if (ret != child) { in start_trace() 81 int stop_trace(pid_t child) in stop_trace() argument 85 ret = ptrace(PTRACE_DETACH, child, NULL, NULL); in stop_trace() 93 int cont_trace(pid_t child) in cont_trace() argument 97 ret = ptrace(PTRACE_CONT, child, NULL, NULL); in cont_trace() 106 int show_tar_registers(pid_t child, unsigned long *out) in show_tar_registers() argument 120 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TAR, &iov); in show_tar_registers() [all …]
|
/external/valgrind/coregrind/ |
D | m_wordfm.c | 68 struct _AvlNode* child[2]; /* [0] is left subtree, [1] is right */ member 100 AvlNode* b = a->child[1]; in avl_swl() 102 a->child[1] = b->child[0]; in avl_swl() 103 b->child[0] = a; in avl_swl() 110 AvlNode* b = a->child[0]; in avl_swr() 112 a->child[0] = b->child[1]; in avl_swr() 113 b->child[1] = a; in avl_swr() 121 root->child[0]->balance = 0; in avl_nasty() 122 root->child[1]->balance = 1; in avl_nasty() 125 root->child[0]->balance = -1; in avl_nasty() [all …]
|
/external/doclava/src/com/google/doclava/ |
D | InfoBuilder.java | 395 ParseTree child = (ParseTree) tree.getChild(i); in buildPackage() local 397 if (child.payload != null && "qualifiedName".equals(child.payload.toString())) { in buildPackage() 398 String packageName = buildQualifiedName(child); in buildPackage() 458 ParseTree child = it.next(); in buildClass() local 461 modifiers.parseModifiers(child); in buildClass() 464 child = it.next(); in buildClass() 467 cls = buildClassName(child, containingClass, modifiers, in buildClass() 472 child = it.next(); in buildClass() 475 if ("typeParameters".equals(child.toString())) { in buildClass() 476 cls.type().setTypeArguments(buildTypeVariables(child)); in buildClass() [all …]
|
/external/skia/tools/bookmaker/ |
D | includeWriter.cpp | 10 void IncludeWriter::constOut(const Definition* memberStart, const Definition& child, in constOut() argument 203 const Definition& child) { in enumHeaderOut() argument 206 child.fContentStart; in enumHeaderOut() 214 fStart = child.fContentStart; in enumHeaderOut() 215 const auto& nameDef = child.fTokens.front(); in enumHeaderOut() 229 child.fChildren[0]->fName = enumName; in enumHeaderOut() 319 Definition* braceHolder = child.fChildren[0]; in enumHeaderOut() 334 void IncludeWriter::enumMembersOut(const RootDefinition* root, Definition& child) { in enumMembersOut() argument 349 iterStack.emplace_back(child.fTokens.begin(), child.fTokens.end()); in enumMembersOut() 427 this->writeString(child.fToBeDeprecated ? "to be deprecated soon" in enumMembersOut() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowViewGroup.java | 32 for (View child : children) { in findViewById() 33 View found = child.findViewById(id); in findViewById() 48 for (View child : children) { in findViewWithTag() 49 View found = child.findViewWithTag(obj); in findViewWithTag() 59 public void addView(View child) { in addView() argument 60 ((ViewGroup) realView).addView(child, -1); in addView() 64 public void addView(View child, int index) { in addView() argument 66 children.add(child); in addView() 68 children.add(index, child); in addView() 70 shadowOf(child).parent = this; in addView() [all …]
|
/external/skqp/tools/bookmaker/ |
D | includeWriter.cpp | 169 const Definition& child) { in enumHeaderOut() argument 172 child.fContentStart; in enumHeaderOut() 180 fStart = child.fContentStart; in enumHeaderOut() 181 const auto& nameDef = child.fTokens.front(); in enumHeaderOut() 195 child.fChildren[0]->fName = enumName; in enumHeaderOut() 285 Definition* braceHolder = child.fChildren[0]; in enumHeaderOut() 300 void IncludeWriter::enumMembersOut(const RootDefinition* root, Definition& child) { in enumMembersOut() argument 315 iterStack.emplace_back(child.fTokens.begin(), child.fTokens.end()); in enumMembersOut() 419 if (KeyWord::kClass == child.fParent->fKeyWord) { in enumMembersOut() 420 itemName += child.fParent->fName + "::"; in enumMembersOut() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | ChainedData.java | 96 Data child = d.getChild(path); in getChild() local 97 if (child != null) { in getChild() 102 return child; in getChild() 106 first = child; in getChild() 111 children.add(child); in getChild() 114 children.add(child); in getChild() 131 Data child = getChild(path); in createChild() local 132 if (child != null) { in createChild() 133 return child; in createChild() 142 Data child = getChild(path); in getValue() local [all …]
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/ |
D | Node.java | 48 public void addChild(int index, int type, Object child) { in addChild() argument 50 if (child == null) in addChild() 59 if (!(child instanceof Element)) in addChild() 62 ((Element) child).setParent(this); in addChild() 64 else if (!(child instanceof String)) in addChild() 67 children.insertElementAt(child, index); in addChild() 73 public void addChild(int type, Object child) { in addChild() argument 74 addChild(getChildCount(), type, child); in addChild() local 111 Object child = getChild(index); in getElement() local 112 return (child instanceof Element) ? (Element) child : null; in getElement() [all …]
|
/external/protobuf/gtest/test/ |
D | gtest_xml_test_utils.py | 99 for child_id, child in expected_children.iteritems(): 103 self.AssertEquivalentNodes(child, actual_children[child_id]) 126 for child in element.childNodes: 127 if child.nodeType == Node.ELEMENT_NODE: 128 self.assert_(child.tagName in self.identifying_attribute, 129 "Encountered unknown element <%s>" % child.tagName) 130 childID = child.getAttribute(self.identifying_attribute[child.tagName]) 132 children[childID] = child 133 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: 135 if (child.nodeType == Node.CDATA_SECTION_NODE or [all …]
|
/external/boringssl/src/crypto/rsa_extra/ |
D | rsa_asn1.c | 95 CBS child; in RSA_parse_public_key() local 96 if (!CBS_get_asn1(cbs, &child, CBS_ASN1_SEQUENCE) || in RSA_parse_public_key() 97 !parse_integer(&child, &ret->n) || in RSA_parse_public_key() 98 !parse_integer(&child, &ret->e) || in RSA_parse_public_key() 99 CBS_len(&child) != 0) { in RSA_parse_public_key() 128 CBB child; in RSA_marshal_public_key() local 129 if (!CBB_add_asn1(cbb, &child, CBS_ASN1_SEQUENCE) || in RSA_marshal_public_key() 130 !marshal_integer(&child, rsa->n) || in RSA_marshal_public_key() 131 !marshal_integer(&child, rsa->e) || in RSA_marshal_public_key() 163 CBS child; in RSA_parse_private_key() local [all …]
|
/external/v8/testing/gtest/test/ |
D | gtest_xml_test_utils.py | 104 for child_id, child in expected_children.iteritems(): 108 self.AssertEquivalentNodes(child, actual_children[child_id]) 131 for child in element.childNodes: 132 if child.nodeType == Node.ELEMENT_NODE: 133 self.assert_(child.tagName in self.identifying_attribute, 134 'Encountered unknown element <%s>' % child.tagName) 135 childID = child.getAttribute(self.identifying_attribute[child.tagName]) 137 children[childID] = child 138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: 140 if (child.nodeType == Node.CDATA_SECTION_NODE or [all …]
|
/external/googletest/googletest/test/ |
D | gtest_xml_test_utils.py | 104 for child_id, child in expected_children.items(): 108 self.AssertEquivalentNodes(child, actual_children[child_id]) 131 for child in element.childNodes: 132 if child.nodeType == Node.ELEMENT_NODE: 133 self.assert_(child.tagName in self.identifying_attribute, 134 'Encountered unknown element <%s>' % child.tagName) 135 childID = child.getAttribute(self.identifying_attribute[child.tagName]) 137 children[childID] = child 138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: 140 if (child.nodeType == Node.CDATA_SECTION_NODE or [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest_xml_test_utils.py | 104 for child_id, child in expected_children.iteritems(): 108 self.AssertEquivalentNodes(child, actual_children[child_id]) 131 for child in element.childNodes: 132 if child.nodeType == Node.ELEMENT_NODE: 133 self.assert_(child.tagName in self.identifying_attribute, 134 'Encountered unknown element <%s>' % child.tagName) 135 childID = child.getAttribute(self.identifying_attribute[child.tagName]) 137 children[childID] = child 138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: 140 if (child.nodeType == Node.CDATA_SECTION_NODE or [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest_xml_test_utils.py | 100 for child_id, child in expected_children.iteritems(): 104 self.AssertEquivalentNodes(child, actual_children[child_id]) 127 for child in element.childNodes: 128 if child.nodeType == Node.ELEMENT_NODE: 129 self.assert_(child.tagName in self.identifying_attribute, 130 'Encountered unknown element <%s>' % child.tagName) 131 childID = child.getAttribute(self.identifying_attribute[child.tagName]) 133 children[childID] = child 134 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]: 136 if (child.nodeType == Node.CDATA_SECTION_NODE or [all …]
|
/external/libusb/libusb/os/ |
D | haiku_pollfs.cpp | 73 WatchedEntry *child = new(std::nothrow) WatchedEntry(fMessenger, ref); in WatchedEntry() local 74 if (child == NULL) in WatchedEntry() 76 if (child->InitCheck() == false) { in WatchedEntry() 77 delete child; in WatchedEntry() 81 child->fLink = fEntries; in WatchedEntry() 82 fEntries = child; in WatchedEntry() 155 WatchedEntry *child = fEntries; in ~WatchedEntry() local 156 while (child) { in ~WatchedEntry() 157 WatchedEntry *next = child->fLink; in ~WatchedEntry() 158 delete child; in ~WatchedEntry() [all …]
|
/external/toolchain-utils/automation/common/ |
D | command_executer.py | 64 child = self._SpawnProcess(cmd, command_terminator, command_timeout) 66 self._logger.debug('{PID: %d} Finished with %d code.', child.pid, 67 child.returncode) 69 return child.returncode 71 def _Terminate(self, child, command_timeout, wait_timeout=10): argument 76 'process started.', child.pid, command_timeout) 78 self._logger.warning('{PID: %d} Terminating child.', child.pid) 81 child.terminate() 87 while not child.poll(): 92 return child.poll() [all …]
|
/external/libcxxabi/test/ |
D | inherited_exception.pass.cpp | 52 Child child; in f1() local 53 child.b1 = 10; in f1() 54 child.b2 = 11; in f1() 55 child.c = 12; in f1() 56 throw child; in f1() 60 Child child; in f2() local 61 child.b1 = 10; in f2() 62 child.b2 = 11; in f2() 63 child.c = 12; in f2() 64 throw static_cast<Base2&>(child); in f2() [all …]
|
/external/ltp/testcases/misc/math/float/trigo/ |
D | gentrigo.c | 70 pid_t child; in main() local 81 child = create_file(funct, 0); in main() 82 waitpid(child, NULL, 0); in main() 85 child = create_file(funct, 0); in main() 86 waitpid(child, NULL, 0); in main() 89 child = create_file(funct, 0); in main() 90 waitpid(child, NULL, 0); in main() 93 child = create_file(funct, 0); in main() 94 waitpid(child, NULL, 0); in main() 97 child = create_file(funct, 0); in main() [all …]
|
/external/ltp/testcases/misc/math/float/exp_log/ |
D | genexp_log.c | 69 pid_t child; in main() local 80 child = create_file(funct, 0); in main() 81 waitpid(child, NULL, 0); in main() 84 child = create_file(funct, 0); in main() 85 waitpid(child, NULL, 0); in main() 88 child = create_file(funct, 0); in main() 89 waitpid(child, NULL, 0); in main() 92 child = create_file(funct, 0); in main() 93 waitpid(child, NULL, 0); in main() 96 child = create_file(funct, 0); in main() [all …]
|