/plugin/html2pdf/html2pdf/html2ps/unittest/ |
H A D | test.css.parse.php | 7 $this->assertTrue($collection->contains(CSS_VISIBILITY)); 53 $properties = $collection->getPropertiesRaw(); 55 $this->assertTrue($collection->contains(CSS_COLOR)); 64 $color = $collection->getPropertyValue(CSS_COLOR); 76 $properties = $collection->getPropertiesRaw(); 87 $color = $collection->getPropertyValue(CSS_COLOR); 99 $properties = $collection->getPropertiesRaw(); 110 $color = $collection->getPropertyValue(CSS_COLOR); 124 $properties = $collection->getPropertiesRaw(); 143 $collection =& parse_css_properties(' [all …]
|
H A D | test.css.content.php | 20 $this->assertTrue($collection->contains(CSS_CONTENT)); 23 $content =& $collection->getPropertyValue(CSS_CONTENT); 42 $this->assertTrue($collection->contains(CSS_CONTENT)); 54 $content =& $collection->getPropertyValue(CSS_CONTENT); 62 $this->assertTrue($collection->contains(CSS_CONTENT)); 74 $content =& $collection->getPropertyValue(CSS_CONTENT); 82 $this->assertTrue($collection->contains(CSS_CONTENT)); 85 $content =& $collection->getPropertyValue(CSS_CONTENT); 93 $this->assertTrue($collection->contains(CSS_CONTENT)); 96 $content =& $collection->getPropertyValue(CSS_CONTENT); [all …]
|
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/ |
H A D | collection.js | 127 collection.add([ 578 assert.equal(model.collection, collection); 880 assert.equal(this.collection, collection); 894 collection.remove(collection.models); 1452 collection.add(collection.models); // don't sort, nothing new 1468 collection.add(collection.models); // don't sort, nothing new 1663 assert.equal(this.collection, collection); 1709 assert.equal(collection.at(0), collection.get(1)); 1711 assert.equal(collection.at(1), collection.get(2)); 1725 assert.equal(collection.at(0), collection.get('a-1')); [all …]
|
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/ |
H A D | unindentedCollections.yml | 2 test: Unindented collection 4 Unindented collection 6 collection: 15 Nested unindented collection 17 collection: 27 Nested unindented collection 29 collection: 42 collection: 55 collection: 68 collection: [all …]
|
/plugin/tfslink/syntax/ |
H A D | workitemlink.php | 36 $collection = strlen($collectionName) == 0 // empty => use default collection 39 if (!isset($collection)){ 43 $data['projectCollection'] = $collection; 50 if (isset($collection['title']) 52 $data['title'] = $collection['title']; 56 …$data['version'] = isset($collection['version']) ? intval($collection['version']) : 2013; // fallb… 89 $collection = $this->getConf('defaultCollection'); 90 if(!isset($collection) || !is_array($collection)) { 96 return $collection;
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/ |
H A D | AccessorSetter.php | 26 protected $collection; variable in JMS\\Serializer\\Tests\\Fixtures\\AccessorSetter 50 return $this->collection; 54 * @param array $collection 56 public function setCollectionDifferent($collection) argument 58 $this->collection = array_combine($collection, $collection);
|
H A D | CircularReferenceParent.php | 15 protected $collection = []; variable in JMS\\Serializer\\Tests\\Fixtures\\CircularReferenceParent 22 $this->collection[] = new CircularReferenceChild('child1', $this); 23 $this->collection[] = new CircularReferenceChild('child2', $this); 33 if (!$this->collection) { 34 $this->collection = []; 36 foreach ($this->collection as $v) {
|
H A D | AuthorsInline.php | 15 private $collection; variable in JMS\\Serializer\\Tests\\Fixtures\\AuthorsInline 19 $this->collection = $authors;
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | MongoDBHandler.php | 37 private $collection; variable in Monolog\\Handler\\MongoDBHandler 48 * @param string $collection Collection name 50 …public function __construct($mongodb, string $database, string $collection, $level = Logger::DEBUG… argument 57 $this->collection = $mongodb->selectCollection($database, $collection); 60 $this->namespace = $database . '.' . $collection; 68 if (isset($this->collection)) { 69 $this->collection->insertOne($record['formatted']);
|
/plugin/datatables/assets/datatables.net-buttons-bs/css/ |
H A D | buttons.bootstrap.min.css |
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/ |
H A D | ArrayCollectionDepthTest.php | 27 * @param array|Collection $collection 31 public function testDepth($collection) argument 35 … $result = $this->serializer->serialize(new CollectionWrapper($collection), 'json', $context); 54 public $collection; variable in JMS\\Serializer\\Tests\\Handler\\CollectionWrapper 56 public function __construct($collection) argument 58 $this->collection = $collection;
|
H A D | ArrayCollectionHandlerTest.php | 31 $collection = new ArrayCollection(['foo']); 33 $handler->serializeCollection($visitor, $collection, $type, $context); 56 $collection = new ArrayCollection(['foo']); 58 $handler->serializeCollection($visitor, $collection, $type, $context);
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Sync/ |
H A D | PluginTest.php | 13 protected $collection; variable in Sabre\\DAV\\Sync\\PluginTest 33 $this->collection = 39 $this->collection, 51 $this->collection->addChange(['file1.txt'], [], []); 64 $this->collection->addChange(['file1.txt'], [], []); 70 $this->collection->addChange(['file1.txt'], [], []); 79 $this->collection->addChange(['file1.txt'], [], []); 195 $this->collection->addChange(['file1.txt'], [], []); 365 $this->collection->addChange(['file1.txt'], [], []); 394 $this->collection->addChange(['file1.txt'], [], []); [all …]
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | lodash.core.js | 157 eachFunc(collection, function(value, index, collection) { argument 471 baseEach(collection, function(value, index, collection) { argument 517 baseEach(collection, function(value, index, collection) { argument 785 result = isArrayLike(collection) ? Array(collection.length) : []; 787 baseEach(collection, function(value, key, collection) { argument 905 baseEach(collection, function(value, index, collection) { argument 1042 return collection; 1056 return collection; 1119 collection = keys(collection); 2127 collection = isArrayLike(collection) ? collection : nativeKeys(collection); [all …]
|
H A D | lodash.js | 777 eachFunc(collection, function(value, key, collection) { argument 911 eachFunc(collection, function(value, index, collection) { argument 2509 baseEach(collection, function(value, key, collection) { argument 2840 baseEach(collection, function(value, index, collection) { argument 2914 baseEach(collection, function(value, index, collection) { argument 3542 baseEach(collection, function(value, key, collection) { argument 3725 var result = baseMap(collection, function(value, key, collection) { argument 4078 baseEach(collection, function(value, index, collection) { argument 5056 collection = keys(collection); 9432 collection = isArrayLike(collection) ? collection : values(collection); [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | css.property.collection.php | 28 $collection =& new CSSPropertyCollection(); 32 $collection->_properties[] =& $property->copy(); 35 $collection->_positions = $this->_positions; 36 $collection->_priorities = $this->_priorities; 37 $collection->_max_priority = $this->_max_priority; 39 return $collection; 116 function merge($collection) { argument 117 $properties = $collection->getPropertiesSortedByPriority();
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/ |
H A D | benchmark.php | 32 $collection = []; 34 $collection[] = createObject(); 37 return $collection; 52 $collection = createCollection(); variable 54 $f = static function () use ($serializer, $collection, $format) { 55 $serializer->serialize($collection, $format);
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/ |
H A D | ArrayCollectionHandler.php | 66 …erializeCollection(SerializationVisitorInterface $visitor, Collection $collection, array $type, Se… argument 71 $context->stopVisiting($collection); 75 …kipClass($context->getMetadataFactory()->getMetadataForClass(\get_class($collection)), $context)) { 76 $context->startVisiting($collection); 81 $result = $visitor->visitArray($collection->toArray(), $type); 83 $context->startVisiting($collection);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Games/Resource/ |
H A D | Scores.php | 71 * @param string $collection The collection of scores you're requesting. 84 public function listScores($leaderboardId, $collection, $timeSpan, $optParams = []) argument 86 …$params = ['leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan… 95 * @param string $collection The collection of scores you're requesting. 114 public function listWindow($leaderboardId, $collection, $timeSpan, $optParams = []) argument 116 …$params = ['leaderboardId' => $leaderboardId, 'collection' => $collection, 'timeSpan' => $timeSpan…
|
H A D | Metagame.php | 52 * @param string $collection The collection of categories for which data will be 64 public function listCategoriesByPlayer($playerId, $collection, $optParams = []) argument 66 $params = ['playerId' => $playerId, 'collection' => $collection];
|
H A D | Players.php | 58 * @param string $collection Collection of players being retrieved 69 public function listPlayers($collection, $optParams = []) argument 71 $params = ['collection' => $collection];
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/ |
H A D | InvocationMocker.php | 26 protected $collection; variable in PHPUnit_Framework_MockObject_Builder_InvocationMocker 39 * @param PHPUnit_Framework_MockObject_Stub_MatcherCollection $collection 43 …public function __construct(PHPUnit_Framework_MockObject_Stub_MatcherCollection $collection, PHPUn… argument 45 $this->collection = $collection; 50 $this->collection->addMatcher($this->matcher); 70 $this->collection->registerId($id, $this);
|
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
H A D | functions.js | 707 var collection = ['foo', 'bar', 'bbiz']; 711 assert.equal(_.every(collection, /b/g), false); 713 assert.equal(_.find(collection, /b/g), 'bar'); 714 assert.equal(_.findIndex(collection, /b/g), 1); 715 assert.equal(_.findKey(collection, /b/g), 1); 716 assert.equal(_.findLastIndex(collection, /b/g), 2); 719 assert.deepEqual(_.map(collection, /b/g), [0, 1, 2]); 720 assert.equal(_.max(collection, /b/g), 'bbiz'); 721 assert.equal(_.min(collection, /b/g), 'foo'); 723 assert.deepEqual(_.reject(collection, /b/g), ['foo']); [all …]
|
/plugin/sequencediagram/bower_components/lodash/ |
H A D | lodash.js | 777 eachFunc(collection, function(value, key, collection) { argument 911 eachFunc(collection, function(value, index, collection) { argument 2509 baseEach(collection, function(value, key, collection) { argument 2840 baseEach(collection, function(value, index, collection) { argument 2914 baseEach(collection, function(value, index, collection) { argument 3542 baseEach(collection, function(value, key, collection) { argument 3725 var result = baseMap(collection, function(value, key, collection) { argument 4078 baseEach(collection, function(value, index, collection) { argument 5056 collection = keys(collection); 9432 collection = isArrayLike(collection) ? collection : values(collection); [all …]
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/ |
H A D | CalendarHomeSubscriptionsTest.php | 53 $rt = ['{DAV:}collection', '{http://calendarserver.org/ns/}subscribed']; 77 $rt = ['{DAV:}collection', '{http://calendarserver.org/ns/}subscribed'];
|