Home
last modified time | relevance | path

Searched refs:objects (Results 26 – 50 of 248) sorted by relevance

12345678910

/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php37 protected $objects = array(); variable in Sabre\\VObject\\Splitter\\ICalendar
75 if (!array_key_exists($uid, $this->objects)) {
76 $this->objects[$uid] = new VCalendar();
79 $this->objects[$uid]->add(clone $component);
94 if($object=array_shift($this->objects)) {
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php37 protected $objects = array(); variable in Sabre\\VObject\\Splitter\\ICalendar
75 if (!array_key_exists($uid, $this->objects)) {
76 $this->objects[$uid] = new VCalendar();
79 $this->objects[$uid]->add(clone $component);
94 if($object=array_shift($this->objects)) {
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php37 protected $objects = array(); variable in Sabre\\VObject\\Splitter\\ICalendar
75 if (!array_key_exists($uid, $this->objects)) {
76 $this->objects[$uid] = new VCalendar();
79 $this->objects[$uid]->add(clone $component);
94 if($object=array_shift($this->objects)) {
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DContextTest.php27 …$objects = [$object, $object->children[0], $object->children[1], $object->children[1]->children[0]…
34 …anything(), $this->callback(static function (SerializationContext $context) use ($self, $objects) {
37 if ($context->getObject() === $objects[0]) {
40 } elseif ($context->getObject() === $objects[1]) {
43 } elseif ($context->getObject() === $objects[2]) {
46 } elseif ($context->getObject() === $objects[3]) {
60 …anything(), $this->callback(static function (SerializationContext $context) use ($self, $objects) {
63 if ($context->getObject() === $objects[0]) {
66 } elseif ($context->getObject() === $objects[1]) {
69 } elseif ($context->getObject() === $objects[2]) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/
H A DREADME.md1 …ckagist/v/phpunit/phpunit-mock-objects.svg?style=flat-square)](https://packagist.org/packages/phpu…
3 …stianbergmann/phpunit-mock-objects/master.svg?style=flat-square)](https://travis-ci.org/sebastianb…
17 composer require phpunit/phpunit-mock-objects
21 composer require --dev phpunit/phpunit-mock-objects
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dstdclass.rst4 The serializer offers support for serializing ``stdClass`` objects, however the use of
5 ``stdClass`` objects is discouraged.
10 There are many known limitations when dealing with ``stdClass`` objects.
16 - deserialize data into ``stdClass`` objects
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php261 // Build a standard set of objects to test against
266 $objects = [];
273 $objects[] = $object;
344 'data' => ['data' => $objects],
351 'data' => ['data' => $objects],
358 'data' => ['data' => $objects],
366 'data' => ['data' => $objects],
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest-fp.js586 assert.deepEqual(fp.filter({ 'a': 3 })(objects), [objects[1]]);
592 assert.deepEqual(fp.filter(['a', 3])(objects), [objects[1]]);
1016 assert.strictEqual(fp.findFrom(resolve(1))(1)(objects), objects[2]);
1017 assert.strictEqual(fp.findFrom(resolve(2))(-2)(objects), objects[3]);
1315 expected = [1, 2, 'a', objects[0], objects[1], stack];
1321 })(objects[0])(objects[1]);
1341 expected = [2, 1, 'a', objects[1], objects[0], stack];
1345 })(objects[0])(objects[1]);
1466 actual = fp.mergeWith(_.noop, objects[0], objects[1]);
1488 })(objects);
[all …]
H A Dtest.js12798 assert.deepEqual(_.unionBy(objects.slice(0, 1), [objects[2]]), [objects[0], objects[2]]);
16027 assert.deepEqual(actual, [objects[1], objects[3], objects[0], objects[2]]);
16034 assert.deepEqual(actual, [objects[3], objects[1], objects[2], objects[0]]);
16040 var expected = [objects[2], objects[0], objects[3], objects[1]],
16058 assert.deepEqual(actual, [objects[1], objects[3], objects[0], objects[2]]);
20771 assert.deepEqual(actual, [objects[0], objects[2], objects[1], objects[3]]);
20821 assert.deepEqual(actual, [objects[2], objects[0], objects[3], objects[1]]);
20828 assert.deepEqual(actual, [objects[2], objects[0], objects[3], objects[1]]);
20847 assert.deepEqual(actual, [objects[2], objects[0], objects[3], objects[1], null, undefined]);
20865 ? [objects[2], objects[3], objects[0], objects[1]]
[all …]
/plugin/combo/ComboStrap/
H A DClassUtility.php54 $objects = [];
58 $objects[] = new $class();
61 return $objects;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Darrays.js131 var objects = [{x: 10}, {x: 20}, {x: 30}, {x: 40}];
450 var objects = [
457 assert.equal(_.findIndex(objects, function(obj) {
461 assert.equal(_.findIndex(objects, function(obj) {
467 assert.equal(_.findIndex(objects, function(obj) {
472 assert.strictEqual(_.findIndex(objects, function(a) {
479 }, objects);
493 var objects = [
500 assert.equal(_.findLastIndex(objects, function(obj) {
504 assert.equal(_.findLastIndex(objects, function(obj) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dlength.rst11 For objects that implement the ``Countable`` interface, ``length`` will use the
14 For objects that implement the ``__toString()`` magic method (and not ``Countable``),
17 For objects that implement the ``IteratorAggregate`` interface, ``length`` will use the return valu…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMock.php126 $objects = $this->calendarData[$calendarId];
128 foreach($objects as $uri => &$object) {
133 return $objects;
/plugin/sectionedit/
H A Dscript.js44 var objects = { class in saveSection
55 objects[this.name] = $element.val();
71 request(objects, function(){
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
H A Dempty.rst11 For objects that implement the ``Countable`` interface, ``empty`` will check the
14 For objects that implement the ``__toString()`` magic method (and not ``Countable``),
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dusage.rst6 Most common usage is probably to serialize objects. This can be achieved
27 You can also deserialize objects from their XML, or JSON representation. For
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php111 $objects = $this->getCalendarObjects($calendarId);
113 foreach ($objects as $object) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DAbstractBackend.php111 $objects = $this->getCalendarObjects($calendarId);
113 foreach ($objects as $object) {
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DInbox.php189 $objects = $this->caldavBackend->getSchedulingObjects($this->principalUri);
190 foreach ($objects as $object) {
/plugin/s5reloaded/ui/thesis/
H A Dslides.js1287 if(objects[i].src != '') {
1289 temp.src = objects[i].src;
1422 images[j] = objects[i];
1429 canvas[objects[i].id] = objects[i];
1451 tmp = objects[i].id;
1467 tmp = objects[i].id;
1483 tmp = objects[i].id;
1504 …if(objects[i].getAttributeNode("classid")) objects[i].removeAttributeNode(objects[i].getAttributeN…
1505 …if(objects[i].getAttributeNode("codebase")) objects[i].removeAttributeNode(objects[i].getAttribute…
2751 if(objects[i].type.toLowerCase() == 'audio/mp3' && objects[i].data != '') {
[all …]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DPdfParser.php64 * All read objects.
68 protected $objects = []; variable in setasign\\Fpdi\\PdfParser\\PdfParser
223 if (isset($this->objects[$objectNumber])) {
224 return $this->objects[$objectNumber];
231 $this->objects[$objectNumber] = $object;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DInbox.php257 $objects = $this->caldavBackend->getSchedulingObjects($this->principalUri);
258 foreach ($objects as $object) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DICSExportPlugin.php289 $objects = [];
301 $objects[] = $child;
320 foreach ($objects as $obj) $calendar->add($obj);
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DICSExportPlugin.php303 $objects = [];
315 $objects[] = clone $child;
337 foreach ($objects as $obj) $calendar->add($obj);
/plugin/facebookwall/
H A Dsyntax.php220 $objects = json_decode($json, true);
223 $post_count = count($objects['data']);
227 $post = $objects['data'][$post_index];

12345678910