Home
last modified time | relevance | path

Searched refs:child (Results 1 – 13 of 13) sorted by relevance

/dokuwiki/inc/TreeBuilder/Node/
H A DAbstractNode.php105 foreach ($this->children as $child) {
106 $descendants[] = $child;
107 $descendants = array_merge($descendants, $child->getDescendants());
151 * @param AbstractNode $child
154 public function addChild(AbstractNode $child): void argument
156 $child->setParent($this);
157 $this->children[] = $child;
197 foreach ($this->children as $child) {
198 $child->sort($comparator);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php584 $child = $mapping['children'];
586 if (($map[] = self::asn1map($content, $child, $special)) === null) {
597 foreach ($mapping['children'] as $key => $child) {
602 if ($child['type'] != self::TYPE_CHOICE) {
609 if (isset($child['class'])) {
610 $childClass = $child['class'];
611 $constant = $child['cast'];
612 } elseif (isset($child['constant'])) {
614 $constant = $child['constant'];
622 …$maymatch = !isset($child['constant']) && array_search($child['type'], [$temp['type'], self::TYPE_…
[all …]
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DFormatterClassic.php52 foreach ($block->children as $child) {
53 if (!$this->isEmpty($child)) return false;
98 foreach ($block->children as $child) {
99 $this->block($child);
H A DLessc.php402 foreach ($root->children as $childName => $child) {
406 $child
409 $parentBlock->children[$childName] = $child;
712 foreach ($childQueries as $child) {
713 $out[] = array_merge($parent, $child);
766 foreach ($selectors as $child) {
767 $count = $this->expandParentSelectors($child, $parent);
771 $out[] = trim($child);
773 $out[] = trim($parent . ' ' . $child);
1029 [, $child] = $prop;
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DItem.php1052 if (isset($category['child'][\SimplePie\SimplePie::NAMESPACE_ITUNES]['category'])) {
1053 …foreach ((array) $category['child'][\SimplePie\SimplePie::NAMESPACE_ITUNES]['category'] as $subcat…
1420 …if (isset($group['child']) && isset($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['con…
1422 …foreach ((array) $group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['content'] as $content)…
1498 … if (isset($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1499 … foreach ($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] as $caption) {
1525 … } elseif (isset($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1526 … foreach ($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] as $caption) {
1557 … if (isset($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['category'])) {
1558 …foreach ((array) $content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['category'] as $categ…
[all …]
H A DSanitize.php571 $child = $element->childNodes->item(0);
572 $fragment->appendChild($child);
594 $child = $element->childNodes->item(0);
595 $fragment->appendChild($child);
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php61 * @param string $child The child group name
64 public function addGroup($parent,$child){ argument
74 $childGroup = $this->info($child, array("cn"));
212 * @param string $child The child group name
215 public function removeGroup($parent , $child) argument
226 $childGroup = $this->info($child, array("cn"));
/dokuwiki/lib/tpl/dokuwiki/css/
H A Ddesign.less183 div:only-child {
188 div:first-child {
192 div:last-child {
H A Dcontent.less225 button.toolbutton:first-child {
231 button.toolbutton:last-child {
238 button.toolbutton:last-child {
246 button.toolbutton:first-child {
H A Dbasic.less334 padding: .7rem 1rem; /* for those browsers understanding :last-child */
337 fieldset > :last-child {
H A D_media_fullscreen.css315 #mediamanager__page .filelist .rows li:nth-child(2n+1) {
/dokuwiki/lib/scripts/
H A Dfileuploader.js152 child = element.firstChild;
154 while (child){
155 if (child.nodeType == 1){
156 children.push(child);
158 child = child.nextSibling;
/dokuwiki/_test/core/
H A DphpQuery-onefile.php731 foreach($node->childNodes as $child)
732 $loop[] = $child;