Home
last modified time | relevance | path

Searched refs:child (Results 51 – 75 of 591) sorted by relevance

12345678910>>...24

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/FS/
H A DHomeCollectionTest.php48 $child = $this->sut->getChild('user1');
49 $this->assertInstanceOf('Sabre\\DAVACL\\FS\\Collection', $child);
50 $this->assertEquals('user1', $child->getName());
66 $this->assertEquals($acl, $child->getACL());
67 $this->assertEquals($owner, $child->getOwner());
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DUniform.php121 foreach ($children as $c => $child) {
122 $stat[$c] = $this->_data[$child][$n]['n'];
138 foreach ($children as $i => $child) {
139 $out .= $this->uniform($this->_rules[$child], $γ[$i]);
146 $child = $this->_rules[$rule->getChildren()];
160 $out .= $this->uniform($child, $γ[$j]);
195 foreach ($rule->getChildren() as $child) {
196 $out += $this->count($this->_rules[$child], $n);
223 $child = $this->_rules[$rule->getChildren()];
245 $oout *= $this->count($child, $_γ);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DFormErrorHandler.php72 foreach ($form->all() as $child) {
73 if ($child instanceof Form) {
74 if (null !== $node = $this->serializeFormToXml($visitor, $child, [])) {
133 foreach ($data->all() as $child) {
134 if ($child instanceof Form) {
135 $children[$child->getName()] = $this->convertFormToArray($visitor, $child);
/plugin/datatables/assets/datatables.net-responsive-bs/css/
H A Dresponsive.bootstrap.min.css
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.inline.php109 $child = $root->first_child();
110 while ($child) {
111 $child_box =& create_pdf_box($child, $pipeline);
113 $child = $child->next_sibling();
368 $child =& $this->content[$i];
371 $child->reflow($parent, $context);
401 $child =& $this->content[$i];
402 $child->reflow_inline();
404 if (!$child->is_null()) {
405 if (is_a($child,'InlineBox')) {
[all …]
H A Dlayout.page.breaks.php152 foreach ($box->content as $child) {
541 $child = $content[$i];
542 if (!$child->is_null()) {
543 return $child;
553 $child =& $content[$i];
554 if (!$child->is_null()) {
555 return $child;
573 $child =& $box->content[$i];
578 if (is_a($child, 'BRBox')) {
580 } elseif ($child->isBlockLevel()) {
[all …]
H A Ddom.activelink.inc.php54 $child =& $this->first_child();
56 if ($child) {
57 $sibling =& $child->next_sibling();
59 $child =& $sibling;
60 $sibling =& $child->next_sibling();
64 return $child;
H A Ddom.php4.inc.php17 $child =& PHP4DOMTree::from_DOMDocument($this->_element->first_child());
18 return $child;
44 $child =& PHP4DOMTree::from_DOMDocument($this->_element->last_child());
45 return $child;
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckxml.js94 var child = childNodes[i] ;
96 if ( child.nodeType == 1 )
98 var childName = '$' + child.nodeName ;
103 childList.push( this.TransformToObject( child ) ) ;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DControl.php256 foreach ($type->getChildren() as $i => $child) {
257 if ($child->getTagClass() !== AbstractType::TAG_CLASS_UNIVERSAL) {
262 $oid = $child->getValue();
263 } elseif ($child instanceof BooleanType) {
264 $criticality = $child->getValue();
265 } elseif ($child instanceof OctetStringType) {
266 $value = $child->getValue();
H A DPwdPolicyResponseControl.php148 foreach ($response->getChildren() as $child) {
149 if (!$child instanceof IncompleteType) {
152 if ($child->getTagNumber() === 0) {
153 $warnings = $encoder->complete($child, AbstractType::TAG_TYPE_SEQUENCE, [
169 } elseif ($child->getTagNumber() === 1) {
170 $error = $encoder->complete($child, AbstractType::TAG_TYPE_ENUMERATED)->getValue();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DIssue203Test.php121 foreach ($vevent->children as $child) {
124 if (isset($expectedEvent[$child->name])) {
125 if ($expectedEvent[$child->name] != $child->getValue()) {
H A DCalendarHomeSharedCalendarsTest.php62 foreach($children as $child) {
64 if ($child instanceof IShareableCalendar) {
67 if ($child instanceof ISharedCalendar) {
70 if ($child instanceof Notifications\ICollection) {
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DTwigFormulaLoader.php94 foreach ($node as $child) {
95 if ($child instanceof \Twig_Node) {
96 $formulae += $this->loadNode($child);
101 foreach ($node->getAttribute('embedded_templates') as $child) {
102 $formulae += $this->loadNode($child);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessage.php158 $child = $type->getChild($i);
159 if ($child !== null && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $child->getTagNumber() === 0) {
160 if (!$child instanceof IncompleteType) {
163 /** @var SequenceOfType $child */
164 $child = (new LdapEncoder())->complete($child, AbstractType::TAG_TYPE_SEQUENCE);
166 foreach ($child->getChildren() as $control) {
/plugin/s5/ui/default/
H A Dslides.js468 var child = children[i];
469 if (hasClass(child, 'incremental')) {
470 if (child.nodeName == 'OL' || child.nodeName == 'UL') {
471 removeClass(child, 'incremental');
473 if (child.childNodes[j].nodeType == 1) {
478 incrementals[incrementals.length] = child;
479 removeClass(child,'incremental');
482 if (hasClass(child, 'show-first')) {
483 if (child.nodeName == 'OL' || child.nodeName == 'UL') {
484 removeClass(child, 'show-first');
[all …]
/plugin/s5/ui/dokuwiki/
H A Dslides.js467 var child = children[i];
468 if (hasClass(child, 'incremental')) {
469 if (child.nodeName == 'OL' || child.nodeName == 'UL') {
470 removeClass(child, 'incremental');
472 if (child.childNodes[j].nodeType == 1) {
477 incrementals[incrementals.length] = child;
478 removeClass(child,'incremental');
481 if (hasClass(child, 'show-first')) {
482 if (child.nodeName == 'OL' || child.nodeName == 'UL') {
483 removeClass(child, 'show-first');
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DBindResponse.php86 foreach ($type->getChildren() as $child) {
87 if ($child->getTagNumber() === 7 && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
88 $saslCreds = $child->getValue();
H A DExtendedResponse.php136 foreach ($type->getChildren() as $child) {
137 if ($child->getTagNumber() === 10) {
138 $info[0] = $child->getValue();
139 } elseif ($child->getTagNumber() === 11) {
140 $info[1] = $child->getValue();
/plugin/html2pdf/html2pdf/html2ps/unittest/
H A Dtest.white-space.php95 foreach ($box->content as $child) {
96 if (is_a($child, 'InlineBox')) {
97 $line_box_count += $child->get_line_box_count();
99 $last_box =& $child->get_last();
101 } elseif (is_a($child, 'BRBox')) {
/plugin/ckgdoku/ckeditor/plugins/scayt/dialogs/
H A Ddialog.css5 .cke_scaytItemList-child {
13 .cke_scaytItemList-child:hover {
17 .cke_scaytItemList-child .cke_scaytItemList_remove {
/plugin/ckgedit/ckeditor/plugins/scayt/dialogs/
H A Ddialog.css5 .cke_scaytItemList-child {
13 .cke_scaytItemList-child:hover {
17 .cke_scaytItemList-child .cke_scaytItemList_remove {
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCollection.php33 foreach ($this->getChildren() as $child) {
35 if ($child->getName() === $name) return $child;
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCollection.php33 foreach ($this->getChildren() as $child) {
35 if ($child->getName() === $name) return $child;
/plugin/diagramsnet/lib/plugins/webcola/
H A DmxWebColaLayout.js153 var child = cellsToVisit.shift();
154 if (child.isVertex())
156 if (this.layout.isLeafOrCollapsed(child))
158 var geometry = model.getGeometry(child);
181 cellsToVisit = cellsToVisit.concat(child.children);
222 var child = cellsToVisit.shift();
224 if (child.isVertex())
226 if (this.layout.isLeafOrCollapsed(child))
228 var geometry = model.getGeometry(child);
240 cellsToVisit = cellsToVisit.concat(child.children);

12345678910>>...24