/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/ |
D | CalendarObjectTest.php | 40 $children = $this->calendar->getChildren(); 41 $this->assertTrue($children[0] instanceof CalendarObject); 43 $this->assertInternalType('string',$children[0]->getName()); 44 $this->assertInternalType('string',$children[0]->get()); 45 $this->assertInternalType('string',$children[0]->getETag()); 46 …$this->assertEquals('text/calendar; charset=utf-8; component=vevent', $children[0]->getContentType… 81 $children = $this->calendar->getChildren(); 82 $this->assertTrue($children[0] instanceof CalendarObject); 85 $children[0]->put($newData); 86 $this->assertEquals($newData, $children[0]->get()); [all …]
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/ |
D | Rule.php | 57 $children = ['bar'] 59 ->when($result = new SUT($name, $children)) 64 ->isEqualTo($children) 76 $children = ['bar'], 79 ->when($result = new SUT($name, $children, $nodeId)) 84 ->isEqualTo($children) 96 $children = ['bar'], 97 $rule = new SUT($name, $children) 110 $children = ['bar'], 111 $rule = new SUT('foo', $children), [all …]
|
D | Repetition.php | 69 $children = [], 72 ->when($result = new SUT($name, $min, $max, $children, $id)) 81 ->isEqualTo($children) 95 $children = [], 98 ->when($result = new SUT($name, $min, $max, $children, $id)) 115 $children = [], 118 ->exception(function () use ($name, $min, $max, $children, $id) { 119 new SUT($name, $min, $max, $children, $id); 132 $children = [], 135 ->when($result = new SUT($name, $min, $max, $children, $id))
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/ |
D | SchedulingObjectTest.php | 58 $children = $this->inbox->getChildren(); 59 $this->assertTrue($children[0] instanceof SchedulingObject); 61 $this->assertInternalType('string',$children[0]->getName()); 62 $this->assertInternalType('string',$children[0]->get()); 63 $this->assertInternalType('string',$children[0]->getETag()); 64 $this->assertEquals('text/calendar; charset=utf-8', $children[0]->getContentType()); 100 $children = $this->inbox->getChildren(); 101 $this->assertTrue($children[0] instanceof SchedulingObject); 103 $children[0]->put(''); 112 $children = $this->inbox->getChildren(); [all …]
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/ |
D | ParserRuleContext.php | 48 public $children; variable in Antlr\\Antlr4\\Runtime\\ParserRuleContext 82 $this->children = null; 87 if ($ctx->children) { 88 $this->children = []; 91 foreach ($ctx->children as $child) { 133 if ($this->children === null) { 134 $this->children = []; 137 $this->children[] = $child; 149 if ($this->children !== null) { 150 \array_pop($this->children); [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
D | Directory.php | 23 private $children = []; variable in SebastianBergmann\\CodeCoverage\\Node\\Directory 120 foreach ($this->children as $child) { 152 $this->children[] = $directory; 153 $this->directories[] = &$this->children[count($this->children) - 1]; 180 $this->children[] = $file; 181 $this->files[] = &$this->children[count($this->children) - 1]; 216 return $this->children; 229 foreach ($this->children as $child) { 250 foreach ($this->children as $child) { 271 foreach ($this->children as $child) { [all …]
|
/plugin/webdavclient/vendor/sabre/vobject/lib/ |
D | Component.php | 31 public $children = array(); variable in Sabre\\VObject\\Component 46 * @param array $children 50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument 62 foreach($children as $key=>$value) { 79 foreach($children as $k=>$child) { 114 $this->children[] = $a1; 122 $this->children[] = $item; 151 $children = $this->select($item); 152 foreach($children as $k=>$child) { 153 unset($this->children[$k]); [all …]
|
/plugin/davcard/vendor/sabre/vobject/lib/ |
D | Component.php | 31 public $children = array(); variable in Sabre\\VObject\\Component 46 * @param array $children 50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument 62 foreach($children as $key=>$value) { 79 foreach($children as $k=>$child) { 114 $this->children[] = $a1; 122 $this->children[] = $item; 151 $children = $this->select($item); 152 foreach($children as $k=>$child) { 153 unset($this->children[$k]); [all …]
|
/plugin/davcal/vendor/sabre/vobject/lib/ |
D | Component.php | 31 public $children = array(); variable in Sabre\\VObject\\Component 46 * @param array $children 50 function __construct(Document $root, $name, array $children = array(), $defaults = true) { argument 62 foreach($children as $key=>$value) { 79 foreach($children as $k=>$child) { 114 $this->children[] = $a1; 122 $this->children[] = $item; 151 $children = $this->select($item); 152 foreach($children as $k=>$child) { 153 unset($this->children[$k]); [all …]
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mock/ |
D | Collection.php | 25 protected $children; variable in Sabre\\DAV\\Mock\\Collection 32 * @param array $children 35 function __construct($name, array $children = array(), Collection $parent = null) { argument 38 foreach($children as $key=>$value) { 40 $this->children[] = new File($key, $value, $this); 42 $this->children[] = new Collection($key, $value, $this); 44 $this->children[] = $value; 95 $this->children[] = new File($name, $data, $this); 108 $this->children[] = new Collection($name); 119 return $this->children; [all …]
|
/plugin/icalevents/vendor/sabre/vobject/lib/ |
D | Component.php | 33 protected $children = []; variable in Sabre\\VObject\\Component 48 * @param array $children 53 function __construct(Document $root, $name, array $children = [], $defaults = true) { argument 65 foreach ($children as $key => $value) { 82 foreach ($children as $k => $child) { 131 if (isset($this->children[$name])) { 132 $this->children[$name][] = $newNode; 134 $this->children[$name] = [$newNode]; 158 unset($this->children[strtoupper($item)]); 171 unset($this->children[$item->name][$k]); [all …]
|
/plugin/webdav/vendor/sabre/vobject/lib/ |
D | Component.php | 33 protected $children = []; variable in Sabre\\VObject\\Component 48 * @param array $children 51 public function __construct(Document $root, $name, array $children = [], $defaults = true) argument 63 foreach ($children as $key => $value) { 80 foreach ($children as $k => $child) { 122 if (isset($this->children[$name])) { 123 $this->children[$name][] = $newNode; 125 $this->children[$name] = [$newNode]; 148 unset($this->children[strtoupper($item)]); 160 unset($this->children[$item->name][$k]); [all …]
|
/plugin/amazon_heavy/ |
D | class.xmlreader.php | 60 $children = array(); 63 array_push($children, $vals[$i]['value']); 76 if ( isset ( $children[$tagname] ) ) 78 $size = sizeof($children[$tagname]); 86 $children[$tagname][$size]['@'] = $vals[$i]["attributes"]; 88 $children[$tagname][$size]['#'] = $this->xml_depth($vals, $i); 91 array_push($children, $vals[$i]['value']); 95 if( isset ($children[$tagname]) ) 97 $size = sizeof($children[$tagname]); 105 $children[$tagname][$size]["#"] = $vals[$i]['value']; [all …]
|
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/ |
D | SetTrait.php | 36 $children = [ 45 $children[$child->getTagClass()][] = $child; 49 foreach ($children as $class => $type) { 50 usort($children[$class], function ($a, $b) { 58 $children[AbstractType::TAG_CLASS_UNIVERSAL], 59 $children[AbstractType::TAG_CLASS_APPLICATION], 60 $children[AbstractType::TAG_CLASS_CONTEXT_SPECIFIC], 61 $children[AbstractType::TAG_CLASS_PRIVATE]
|
D | SetType.php | 32 $this->children = $types; 42 return $this->children === $this->canonicalize(...$this->children); 48 * @param array $children 51 public static function withTag($tagNumber, int $class, array $children = []) argument 54 $type->children = $children;
|
/plugin/nspages/printers/ |
D | printerTree.php | 42 $this->_sorter->sort($tree->children); 44 foreach($tree->children as $subTree){ 75 if (is_null($tree->children)) { 80 $firstAndOnlyChild = reset($tree->children); 148 if (!isset($tree->children[$item['id']])) { 150 $tree->children[$item['id']] = new NspagesTreeNsNode($item['id']); 151 $tree->children[$item['id']]->self = $item; 153 $tree->children[$item['id']] = $item; 156 $tree->children[$item['id']]->self = $item; 164 if (!array_key_exists($nsKey, $tree->children)){ [all …]
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/ |
D | SimpleCollection.php | 22 protected $children = []; variable in Sabre\\DAV\\SimpleCollection 38 * @param INode[] $children 40 function __construct($name, array $children = []) { argument 43 foreach ($children as $child) { 60 $this->children[$child->getName()] = $child; 90 if (isset($this->children[$name])) return $this->children[$name]; 102 return array_values($this->children);
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/ |
D | SimpleCollection.php | 22 protected $children = []; variable in Sabre\\DAV\\SimpleCollection 38 * @param INode[] $children 40 function __construct($name, array $children = []) { argument 43 foreach ($children as $child) { 60 $this->children[$child->getName()] = $child; 90 if (isset($this->children[$name])) return $this->children[$name]; 102 return array_values($this->children);
|
/plugin/combo/ComboStrap/ |
D | TreeNode.php | 14 private array $children = []; variable in ComboStrap\\TreeNode 34 $childCount = count($this->children); 38 $this->children[$levelChildIdentifier] = $treeNode; 41 $actualTreeNode = $this->children[$levelChildIdentifier]; 64 return sizeof($this->children); 72 return $this->children; 78 return sizeof($this->children) > 0; 92 $childrenKeys = array_keys($this->children); 96 return $this->children[$childrenKeys[0]]; 151 unset($this->parentNode->children[$this->levelChildIdentifier]);
|
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ |
D | FixNesting.php | 116 while (isset($node->children[$ix])) { 117 $child = $node->children[$ix++]; 141 $children = array(); 142 foreach ($node->children as $child) { 143 if (!$child->dead) $children[] = $child; 145 $result = $def->child->validateChildren($children, $config, $context); 148 $node->children = $children; 153 $node->children = $result; 156 if (empty($result) && !empty($children)) { 158 } else if ($result != $children) {
|
/plugin/struct/meta/ |
D | NestedValue.php | 18 protected $children = []; variable in dokuwiki\\plugin\\struct\\meta\\NestedValue 57 foreach ($this->children as $child) { 82 $this->children[(string)$child] = $child; // ensures uniqueness 93 $children = $this->children; 96 usort($children, [$this, 'sortChildren']); 97 } elseif (isset($children[''])) { 99 $naKids = $children['']; 100 unset($children['']); 101 $children[''] = $naKids; 103 return array_values($children);
|
/plugin/slider/ |
D | jquery.bxslider.js | 126 slider.children = el.children(slider.settings.slideSelector); 128 …if(slider.children.length < slider.settings.minSlides) slider.settings.minSlides = slider.children… 129 …if(slider.children.length < slider.settings.maxSlides) slider.settings.maxSlides = slider.children… 131 …tings.randomStart) slider.settings.startSlide = Math.floor(Math.random() * slider.children.length); 170 el.children(slider.settings.slideSelector).each(function() { 191 … width: slider.settings.mode == 'horizontal' ? (slider.children.length * 100 + 215) + '%' : 'auto', 218 slider.children.css({ 224 slider.children.css('width', getSlideWidth()); 226 …if(slider.settings.mode == 'horizontal' && slider.settings.slideMargin > 0) slider.children.css('m… 227 …if(slider.settings.mode == 'vertical' && slider.settings.slideMargin > 0) slider.children.css('mar… [all …]
|
/plugin/findologicxmlexport/vendor/hoa/math/Visitor/ |
D | Arithmetic.php | 110 $children = $element->getChildren(); 122 $name = array_shift($children)->accept($this, $_, $eldnah); 126 foreach ($children as $child) { 139 $children[0]->accept($this, $a, $eldnah); 148 $children[0]->accept($this, $a, $eldnah); 154 $children[1]->accept($this, $acc, $eldnah); 159 $children[0]->accept($this, $a, $eldnah); 165 $children[1]->accept($this, $acc, $eldnah); 170 $children[0]->accept($this, $a, $eldnah); 176 $children[1]->accept($this, $acc, $eldnah); [all …]
|
/plugin/diagramsnet/lib/plugins/ |
D | random.js | 86 var childrenA = parentA.children; 87 var childrenB = parentB.children; 187 var childrenA = parentA.children; 188 var childrenB = parentB.children; 201 childrenA = parentA.children; 202 childrenB = parentB.children; 212 childrenA = parentA.children; 227 childrenB = parentB.children; 237 childrenA = parentA.children; 238 childrenB = parentB.children; [all …]
|
/plugin/swiftmail/Swift/Message/ |
D | Mime.php | 80 protected $children = array(); variable in Swift_Message_Mime 147 foreach ($this->children as $id => $child) 149 $this->children[$id]->setLE($le); 174 foreach ($this->children as $id => $child) 176 $this->children[$id]->uncacheAll(); 235 foreach ($this->children as $id => $child) 237 … if (!$child->getEncoding()) $this->children[$id]->setEncoding($encoding, $recursive, $non_ascii); 283 …if (!empty($this->children)) //If we've got some mime parts we need to stick them onto the end of … 289 foreach ($this->children as $part) 400 } while (array_key_exists($id, $this->children)); [all …]
|