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.php583 $child = $mapping['children'];
585 if (($map[] = self::asn1map($content, $child, $special)) === null) {
596 foreach ($mapping['children'] as $key => $child) {
601 if ($child['type'] != self::TYPE_CHOICE) {
608 if (isset($child['class'])) {
609 $childClass = $child['class'];
610 $constant = $child['cast'];
611 } elseif (isset($child['constant'])) {
613 $constant = $child['constant'];
621 …$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.php1043 if (isset($category['child'][\SimplePie\SimplePie::NAMESPACE_ITUNES]['category'])) {
1044 …foreach ((array) $category['child'][\SimplePie\SimplePie::NAMESPACE_ITUNES]['category'] as $subcat…
1410 …if (isset($group['child']) && isset($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['con…
1412 …foreach ((array) $group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['content'] as $content)…
1488 … if (isset($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1489 … foreach ($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] as $caption) {
1515 … } elseif (isset($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'])) {
1516 … foreach ($group['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['text'] as $caption) {
1547 … if (isset($content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['category'])) {
1548 …foreach ((array) $content['child'][\SimplePie\SimplePie::NAMESPACE_MEDIARSS]['category'] as $categ…
[all …]
H A DSanitize.php690 if (($child = $element->childNodes->item(0)) !== null) {
691 $fragment->appendChild($child);
718 if (($child = $element->childNodes->item(0)) !== null) {
719 $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.less240 button.toolbutton:first-child {
246 button.toolbutton:last-child {
253 button.toolbutton:last-child {
261 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;