/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/ |
D | phpcs-svn-pre-commit | 69 $this->values['svnArgs'][] = escapeshellarg($arg); 77 * @param array $values An array of values determined from CLI args. 82 public function process($values=array()) 84 if (empty($values) === true) { 85 $values = $this->getCommandLineValues(); 87 $values = array_merge($this->getDefaults(), $values); 88 $this->values = $values; 92 $command = PHP_CODESNIFFER_SVNLOOK.' changed '.implode(' ', $values['svnArgs']); 109 $values['standard'] = $this->validateStandard($values['standard']); 110 foreach ($values['standard'] as $standard) { [all …]
|
/plugin/odt/helper/ |
D | cssimport.php | 153 $values = preg_split ('/\s+/', $this->value); 155 if ($index < count($values)) { 157 $value = $values [$index]; 172 if ($index < count($values)) { 173 $decls [] = new css_declaration ('background-image', $values [$index]); 176 if ($index < count($values)) { 177 $decls [] = new css_declaration ('background-repeat', $values [$index]); 180 if ($index < count($values)) { 181 $decls [] = new css_declaration ('background-attachment', $values [$index]); 184 if ($index < count($values)) { [all …]
|
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/ |
D | break-up.js | 10 function _anyIsInherit(values) { argument 13 for (i = 0, l = values.length; i < l; i++) { 14 if (values[i][1] == 'inherit') { 77 var values = property.value; 95 if (values.length > 1 && _anyIsInherit(values)) { 96 …throw new InvalidPropertyError('Invalid animation values at ' + formatPosition(values[0][2][0]) + … 99 for (i = 0, l = values.length; i < l; i++) { 100 value = values[i]; 144 var values = property.value; 163 for (var i = values.length - 1; i >= 0; i--) { [all …]
|
/plugin/upgrade/HTTP/ |
D | Headers.php | 19 foreach ($policy as $key => $values) { 21 if (!is_array($values)) $values = explode("\n", $values); 22 $values = array_map('trim', $values); 23 $values = array_unique($values); 24 $values = array_filter($values); 25 $policy[$key] = $values; 29 foreach ($policy as $key => $values) { 30 if ($values) { 31 $cspheader .= " $key " . join(' ', $values) . ';';
|
/plugin/diagrams/ |
D | renderer.php | 43 foreach ($policy as $key => $values) { 45 if (!is_array($values)) $values = explode("\n", $values); 46 $values = array_map('trim', $values); 47 $values = array_unique($values); 48 $values = array_filter($values); 49 $policy[$key] = $values; 53 foreach ($policy as $key => $values) { 54 if ($values) { 55 $cspheader .= " $key " . join(' ', $values) . ';';
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/ |
D | CLI.php | 60 protected $values = array(); variable in PHP_CodeSniffer_CLI 396 if (empty($this->values) === false) { 397 return $this->values; 417 $this->values['stdin'] = $fileContents; 421 return $this->values; 436 $this->values = array( 440 } else if (empty($this->values) === true) { 441 $this->values = $this->getDefaults(); 498 if ($this->values['quiet'] === true) { 503 if (isset($this->values['verbosity']) === false) { [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
D | Attribute.php | 59 protected $values = []; variable in FreeDSx\\Ldap\\Entry\\Attribute 70 public function __construct(string $attribute, ...$values) argument 73 $this->values = $values; 82 public function add(...$values): self argument 84 foreach ($values as $value) { 85 $this->values[] = $value; 99 return array_search($value, $this->values, true) !== false; 108 public function remove(...$values): self argument 110 foreach ($values as $value) { 111 if (($i = array_search($value, $this->values, true)) !== false) { [all …]
|
/plugin/odt/ODT/css/ |
D | cssborder.php | 23 $values = preg_split ('/\s+/', $value); 24 switch (count($values)) { 26 $top = $values [0]; 27 $bottom = $values [0]; 28 $right = $values [0]; 29 $left = $values [0]; 32 $top = $values [0]; 33 $bottom = $values [0]; 34 $right = $values [1]; 35 $left = $values [1]; [all …]
|
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/ |
D | Target.php | 72 * @param array $values 76 public function __construct(array $values) argument 78 if (!isset($values['value'])){ 79 $values['value'] = null; 81 if (is_string($values['value'])){ 82 $values['value'] = array($values['value']); 84 if (!is_array($values['value'])){ 87 … is_object($values['value']) ? get_class($values['value']) : gettype($values['value']) 93 foreach ($values['value'] as $literal) { 104 $this->value = $values['value'];
|
D | Enum.php | 53 * @param array $values 57 public function __construct(array $values) argument 59 if ( ! isset($values['literal'])) { 60 $values['literal'] = array(); 63 foreach ($values['value'] as $var) { 72 foreach ($values['literal'] as $key => $var) { 73 if( ! in_array($key, $values['value'])) { 81 $this->value = $values['value']; 82 $this->literal = $values['literal'];
|
D | IgnoreAnnotation.php | 39 * @param array $values 43 public function __construct(array $values) argument 45 if (is_string($values['value'])) { 46 $values['value'] = array($values['value']); 48 if (!is_array($values['value'])) { 49 …xpects either a string name, or an array of strings, but got %s.', json_encode($values['value']))); 52 $this->names = $values['value'];
|
/plugin/adfs/phpsaml/lib/Saml/ |
D | Settings.php | 59 $values = array(); 61 $values['sp'] = array(); 62 $values['sp']['entityId'] = $this->spIssuer; 63 $values['sp']['assertionConsumerService'] = array( 66 $values['sp']['NameIDFormat'] = $this->requestedNameIdFormat; 68 $values['idp'] = array(); 69 $values['idp']['entityId'] = $this->idpSingleSignOnUrl; 70 $values['idp']['singleSignOnService'] = array( 73 $values['idp']['singleLogoutService'] = array( 76 $values['idp']['x509cert'] = $this->idpPublicCertificate; [all …]
|
/plugin/saml/phpsaml/lib/Saml/ |
D | Settings.php | 59 $values = array(); 61 $values['sp'] = array(); 62 $values['sp']['entityId'] = $this->spIssuer; 63 $values['sp']['assertionConsumerService'] = array( 66 $values['sp']['NameIDFormat'] = $this->requestedNameIdFormat; 68 $values['idp'] = array(); 69 $values['idp']['entityId'] = $this->idpSingleSignOnUrl; 70 $values['idp']['singleSignOnService'] = array( 73 $values['idp']['singleLogoutService'] = array( 76 $values['idp']['x509cert'] = $this->idpPublicCertificate; [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
D | css.border.style.inc.php | 75 $values = explode(" ",$value); 77 switch (count($values)) { 79 $v1 = $this->parse_style($values[0]); 82 $v1 = $this->parse_style($values[0]); 83 $v2 = $this->parse_style($values[1]); 86 $v1 = $this->parse_style($values[0]); 87 $v2 = $this->parse_style($values[1]); 88 $v3 = $this->parse_style($values[2]); 91 $v1 = $this->parse_style($values[0]); 92 $v2 = $this->parse_style($values[1]); [all …]
|
D | css.padding.inc.php | 16 $values = preg_split('/\s+/', trim($value)); 17 switch (count($values)) { 19 $v1 = $values[0]; 22 $v1 = $values[0]; 23 $v2 = $values[1]; 26 $v1 = $values[0]; 27 $v2 = $values[1]; 28 $v3 = $values[2]; 31 $v1 = $values[0]; 32 $v2 = $values[1]; [all …]
|
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/ |
D | Recur.php | 169 $values = []; 173 $values[strtolower($k)] = $date->getJsonValue()[0]; 175 $values[strtolower($k)] = intval($v); 177 $values[strtolower($k)] = $v; 180 return [$values]; 259 $values = $this->getParts(); 261 foreach ($values as $key => $value) { 270 unset($values[$key]); 283 unset($values[$key][$i]); 285 unset($values[$key]); [all …]
|
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/ |
D | Recur.php | 157 $values = []; 161 $values[strtolower($k)] = $date->getJsonValue()[0]; 163 $values[strtolower($k)] = intval($v); 165 $values[strtolower($k)] = $v; 169 return [$values]; 242 $values = $this->getParts(); 244 foreach ($values as $key => $value) { 252 unset($values[$key]); 265 unset($values[$key][$i]); 267 unset($values[$key]); [all …]
|
/plugin/gtime/gtlib/asn1/cms/ |
D | CMSAttribute.php | 47 private $values; variable in CMSAttribute 82 $this->values = array(); 84 $values = $object->getObjectAt(1); 86 if (!$values instanceof ASN1Set) { 90 $size = $values->getObjectCount(); 97 array_push($this->values, $values->getObjectAt(0)); 109 $values = new ASN1Set(); 111 foreach ($this->values as $value) { 112 $values->add($value); 117 $sequence->add($values); [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/ |
D | ShorthandSizeSniff.php | 100 $values = array(); 104 $values, 115 foreach ($values as $value) { 124 $expected = trim($content.' '.$values[1][1].$values[1][2]); 148 if ($values[0][0] !== $values[1][0]) { 152 } else if ($values[0][0] !== $values[2][0] || $values[1][0] !== $values[3][0]) { 157 if ($values[0][0] === $values[1][0]) { 159 $expected = $values[0][0]; 161 $expected = $values[0][0].' '.$values[1][0];
|
/plugin/cspheader/ |
D | action.php | 77 $values = $this->getConf($option); 78 $values = explode("\n", $values); 79 $values = array_map('trim', $values); 80 $values = array_unique($values); 81 $values = array_filter($values); 82 if (!count($values)) continue; 84 $policies[$directive] = join(' ', $values);
|
/plugin/authgoogle/google/contrib/ |
D | Google_FreebaseService.php | 169 public $values; variable in Google_TopicPropertyvalue 183 public function setValues(/* array(Google_TopicValue) */ $values) { argument 184 $this->assertIsArray($values, 'Google_TopicValue', __METHOD__); 185 $this->values = $values; 188 return $this->values; 202 public $values; variable in Google_TopicStatslinkcount 209 public function setValues(/* array(Google_TopicStatslinkcountValues) */ $values) { argument 210 $this->assertIsArray($values, 'Google_TopicStatslinkcountValues', __METHOD__); 211 $this->values = $values; 214 return $this->values; [all …]
|
/plugin/freechat/phpfreechat/lib/csstidy-1.2/ |
D | class.csstidy_optimise.php | 226 $values = csstidy::gvw_important($value); 229 else $values = $value; 231 $values = explode(' ',$values); 232 switch(count($values)) 235 if($values[0] == $values[1] && $values[0] == $values[2] && $values[0] == $values[3]) 237 return $values[0].$important; 239 elseif($values[1] == $values[3] && $values[0] == $values[2]) 241 return $values[0].' '.$values[1].$important; 243 elseif($values[1] == $values[3]) 245 return $values[0].' '.$values[1].' '.$values[2].$important; [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-text-template/src/ |
D | Template.php | 36 protected $values = array(); variable in Text_Template 79 * @param array $values 82 public function setVar(array $values, $merge = TRUE) argument 84 if (!$merge || empty($this->values)) { 85 $this->values = $values; 87 $this->values = array_merge($this->values, $values); 100 foreach ($this->values as $key => $value) { 104 return str_replace($keys, $this->values, $this->template);
|
/plugin/struct/_test/ |
D | AggregationFilterTest.php | 32 $values = $filter->getAllColumnValues($result); 34 $this->assertCount(4, $values); 46 $this->trimKeys($values[0]['values']) 51 $values[0]['label'] 59 $this->trimKeys($values[1]['values']) 64 $values[1]['label'] 71 * @param array $values 74 protected function trimKeys($values) argument 76 return array_flip(array_map(static fn($val) => trim($val), array_flip($values)));
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/ |
D | SetTest.php | 26 $values = new Node([new ConstantExpression('foo', 1)], [], 1); 27 $node = new SetNode(false, $names, $values, 1); 30 $this->assertEquals($values, $node->getNode('values')); 39 $values = new Node([new ConstantExpression('foo', 1)], [], 1); 40 $node = new SetNode(false, $names, $values, 1); 48 $values = new Node([new PrintNode(new ConstantExpression('foo', 1), 1)], [], 1); 49 $node = new SetNode(true, $names, $values, 1); 59 $values = new TextNode('foo', 1); 60 $node = new SetNode(true, $names, $values, 1); 68 $values = new Node([new ConstantExpression('foo', 1), new NameExpression('bar', 1)], [], 1); [all …]
|