Home
last modified time | relevance | path

Searched refs:children (Results 1 – 25 of 631) sorted by relevance

12345678910>>...26

/plugin/filelist/_test/
H A Dfilelist.test.php
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DCalendarObjectTest.php40 $children = $this->calendar->getChildren();
85 $children[0]->put($newData);
102 $children[0]->put($stream);
116 $obj = $children[0];
132 $obj = $children[0];
147 $obj = $children[0];
159 $obj = $children[0];
169 $obj = $children[0];
207 $obj = $children[0];
256 $obj = $children[0];
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/
H A DRule.php57 $children = ['bar']
76 $children = ['bar'],
96 $children = ['bar'],
110 $children = ['bar'],
125 $children = ['bar'],
139 $children = ['baz'],
169 $children = ['bar'],
184 $children = ['bar'],
199 $children = ['bar'],
214 $children = ['bar'],
[all …]
H A DRepetition.php69 $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/
H A DSchedulingObjectTest.php58 $children = $this->inbox->getChildren();
100 $children = $this->inbox->getChildren();
103 $children[0]->put('');
115 $obj = $children[0];
131 $obj = $children[0];
146 $obj = $children[0];
158 $obj = $children[0];
168 $obj = $children[0];
206 $obj = $children[0];
255 $obj = $children[0];
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParserRuleContext.php18 * in the RuleContext. It handles parse tree children list, any ATN state
48 public $children; variable in Antlr\\Antlr4\\Runtime\\ParserRuleContext
66 * confusion with creating node with parent. Does not copy children
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[]
[all...]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DDirectory.php23 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/davcard/vendor/sabre/vobject/lib/
H A DComponent.php31 public $children = array(); variable in Sabre\\VObject\\Component
46 * @param array $children
114 $this->children[] = $a1;
122 $this->children[] = $item;
153 unset($this->children[$k]);
175 function children() { function in Sabre\\VObject\\Component
177 return $this->children;
190 foreach($this->children as $child) {
301 $tmp = $this->children;
303 $this->children,
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DComponent.php31 public $children = array(); variable in Sabre\\VObject\\Component
46 * @param array $children
114 $this->children[] = $a1;
122 $this->children[] = $item;
153 unset($this->children[$k]);
175 function children() { function in Sabre\\VObject\\Component
177 return $this->children;
190 foreach($this->children as $child) {
301 $tmp = $this->children;
303 $this->children,
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DComponent.php31 public $children = array(); variable in Sabre\\VObject\\Component
46 * @param array $children
114 $this->children[] = $a1;
122 $this->children[] = $item;
153 unset($this->children[$k]);
175 function children() { function in Sabre\\VObject\\Component
177 return $this->children;
190 foreach($this->children as $child) {
301 $tmp = $this->children;
303 $this->children,
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DCollection.php25 protected $children; variable in Sabre\\DAV\\Mock\\Collection
32 * @param array $children
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;
131 foreach($this->children as $key=>$value) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DComponent.php33 protected $children = []; variable in Sabre\\VObject\\Component
48 * @param array $children
82 foreach ($children as $k => $child) {
131 if (isset($this->children[$name])) {
132 $this->children[$name][] = $newNode;
187 function children() { function in Sabre\\VObject\\Component
242 $result = isset($this->children[$name]) ? $this->children[$name] : [];
333 $children = $this->children();
334 $tmp = $children;
336 $children,
[all …]
/plugin/amazon_heavy/
H A Dclass.xmlreader.php60 $children = array();
63 array_push($children, $vals[$i]['value']);
76 if ( isset ( $children[$tagname] ) )
78 $size = sizeof($children[$tagname]);
91 array_push($children, $vals[$i]['value']);
95 if( isset ($children[$tagname]) )
97 $size = sizeof($children[$tagname]);
105 $children[$tagname][$size]["#"] = $vals[$i]['value'];
109 $children[$tagname][$size]["#"] = '';
117 return $children;
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DComponent.php33 protected $children = []; variable in Sabre\\VObject\\Component
48 * @param array $children
80 foreach ($children as $k => $child) {
122 if (isset($this->children[$name])) {
176 public function children() function in Sabre\\VObject\\Component
233 $result = isset($this->children[$name]) ? $this->children[$name] : [];
318 $children = $this->children();
319 $tmp = $children;
321 $children,
330 foreach ($children as $child) {
[all …]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DSetTrait.php36 $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]
H A DSetType.php32 $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/webdav/vendor/sabre/dav/lib/DAV/
H A DSimpleCollection.php22 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/
H A DSimpleCollection.php22 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/
H A DTreeNode.php14 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[
[all...]
/plugin/slider/
H A Djquery.bxslider.js126 slider.children = el.children(slider.settings.slideSelector);
218 slider.children.css({
230 slider.children.css({
353 var children = $();
356 children = slider.children;
360 children = slider.children.eq(slider.active.index);
366 children = slider.children.eq(currentIndex);
371 children = children.add(slider.children.eq(i - 1));
373 children = children.add(slider.children.eq(currentIndex + i));
822 position = slider.children.eq(slider.children.length - 1).position();
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/Visitor/
H A DArithmetic.php110 $children = $element->getChildren();
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);
181 $children[0]->accept($this, $a, $eldnah);
[all …]
/plugin/diagramsnet/lib/plugins/
H A Drandom.js86 var childrenA = parentA.children;
87 var childrenB = parentB.children;
201 childrenA = parentA.children;
202 childrenB = parentB.children;
212 childrenA = parentA.children;
237 childrenA = parentA.children;
238 childrenB = parentB.children;
279 childrenA = parentA.children;
280 childrenB = parentB.children;
408 var children = parent.children;
[all …]
/plugin/swiftmail/Swift/Message/
H A DMime.php80 protected $children = array(); variable in Swift_Message_Mime
149 $this->children[$id]->setLE($le);
176 $this->children[$id]->uncacheAll();
289 foreach ($this->children as $part)
403 if ($after == -1) $this->children = array_merge(array($id => $mime), $this->children);
404 else $this->children[$id] = $mime;
427 return $this->children[$id];
450 $this->children[$id] = null;
451 unset($this->children[$id]);
460 return array_keys($this->children);
[all …]
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNode.php160 public function children(): iterable
162 $children = [];
164 $children[] = $current;
167 return $children;
200 foreach ($this->children() as $children) {
201 $children->setParent(null);
208 * Replace all children of given node with collection of another
210 * @param iterable<Node> $children
212 public function replaceChildren(iterable $children)
175 public function children(): iterable global() function in League\\CommonMark\\Node\\Node
239 replaceChildren(iterable $children) global() argument
[all...]
/plugin/nspages/printers/
H A DprinterTree.php31 // We only need to sort "children". We don't need to sort "pages" because with the current
42 $this->_sorter->sort($tree->children);
44 foreach($tree->children as $subTree){
73 if (is_null($tree->children)) {
78 $firstAndOnlyChild = reset($tree->children);
148 if (!array_key_exists($key, $tree->children)){
150 $tree->children[$key] = $node;
153 $this->_fillTree($tree->children[$key], $keys, $item, $currentId);
160 foreach($tree->children as $subTree){
179 $hasInnerData = !empty($tree->children) || !empt
208 public $children = array(); global() variable in NspagesTreeNsNode
[all...]

12345678910>>...26