Home
last modified time | relevance | path

Searched refs:value (Results 151 – 175 of 3912) sorted by relevance

12345678910>>...157

/plugin/gtime/gtlib/asn1/
H A DASN1OctetString.php31 protected $value; variable in ASN1OctetString
37 * @param array $value byte array
39 public function __construct($value = null) { argument
41 if (!is_null($value)) {
43 if (!is_array($value)) {
47 $this->value = $value;
57 return $this->value;
70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
71 $this->append($bytes, $this->value);
83 $this->value = $bytes;
H A DASN1BitString.php31 protected $value; variable in ASN1BitString
37 * @param string $value bit string consisting only of 0-s and 1-s
40 public function __construct($value = null) { argument
42 if (!is_null($value)) {
44 $value = trim($value);
46 foreach (GTUtil::toArray($value) as $c) {
52 $this->value = $value;
62 return $this->value;
75 foreach (str_split($this->value, 8) as $byte) {
101 $this->value = '';
[all …]
H A DASN1String.php31 protected $value; variable in ASN1String
36 * @param string $value
38 public function __construct($value = null) { argument
40 if (!is_null($value)) {
41 $this->setValue($value);
53 $bytes = GTUtil::toByteArray($this->value);
74 * @param string $value
77 protected function setValue($value) { argument
78 $this->value = $value;
87 return $this->value;
/plugin/davcal/vendor/sabre/xml/lib/
H A DWriter.php96 * @param mixed $value
99 function write($value) { argument
101 if (is_scalar($value)) {
102 $this->text($value);
105 } elseif (is_null($value)) {
107 } elseif (is_array($value)) {
109 reset($value);
143 } elseif (is_object($value)) {
245 * @param string $value
261 $value
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DParser.php28 public const REFERENCE_PATTERN = '#^&(?P<ref>[^ ]++) *+(?P<value>.*)#u';
43 * Parses a YAML file into a PHP value.
72 * Parses a YAML string to a PHP value.
74 * @param string $value A YAML string
81 public function parse(string $value, int $flags = 0) argument
83 if (false === preg_match('//u', $value)) {
84 throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->filename);
97 $data = $this->doParse($value, $flags);
116 private function doParse(string $value, int $flags) argument
120 $value
721 parseValue(string $value, int $flags, string $context) global() argument
1001 cleanup(string $value) global() argument
1117 trimTag(string $value) global() argument
1126 getLineTag(string $value, int $flags, bool $nextLineCheck = true) global() argument
[all...]
/plugin/davcal/vendor/sabre/http/lib/
H A DSapi.php61 foreach ($value as $k => $v) {
109 foreach ($serverArray as $key => $value) {
114 if ($value === 'HTTP/1.0') {
119 $method = $value;
122 $url = $value;
127 $headers['Content-Type'] = $value;
149 $headers['Authorization'] = $value;
153 $hostName = $value;
154 $headers['Host'] = $value;
158 if (!empty($value) && $value !== 'off') {
[all …]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DRealType.php23 * @param float $value
25 public function __construct(float $value) argument
27 parent::__construct($value);
31 * @param float $value
34 public function setValue(float $value) argument
36 $this->value = $value;
46 return $this->value;
52 * @param float $value
55 public static function withTag($tagNumber, int $class, float $value) argument
[all...]
H A DAbstractStringType.php25 public function __construct($value = '') argument
27 parent::__construct($value);
35 return $this->value;
39 * @param string $value
42 public function setValue($value) argument
44 $this->value = $value;
54 return (string) $this->value;
69 * @param string $value
72 public static function withTag($tagNumber, int $class, bool $isConstructed, $value argument
[all...]
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DUtcOffset.php42 * @param array $value
44 public function setJsonValue(array $value) argument
46 $value = array_map(
47 function ($value) {
48 return str_replace(':', '', $value);
50 $value
52 parent::setJsonValue($value);
65 function ($value) {
66 return substr($value, 0, -2).':'.
67 substr($value, -2);
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DUtcOffset.php43 * @param array $value
47 function setJsonValue(array $value) { argument
49 $value = array_map(
50 function($value) {
51 return str_replace(':', '', $value);
53 $value
55 parent::setJsonValue($value);
69 function($value) {
70 return substr($value, 0, -2) . ':' .
71 substr($value, -2);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php35 protected $value; variable in phpseclib3\\Math\\PrimeField\\Integer
149 return $this->value->equals($x->value);
161 return $this->value->compare($x->value);
174 $temp->value = $this->value->add($x->value);
176 $temp->value = $temp->value->subtract(static::$modulo[$this->instanceID]);
192 $temp->value = $this->value->subtract($x->value);
194 $temp->value = $temp->value->add(static::$modulo[$this->instanceID]);
209 return new static($this->instanceID, $this->value->multiply($x->value));
233 $temp->value = $this->value->powMod($x, static::$modulo[$this->instanceID]);
296 return $this->value->isOdd();
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_flash/
H A Dfck_flash.js94 GetE('txtAttId').value = oEmbed.id ;
100 GetE('txtAttTitle').value = oEmbed.title ;
119 if ( GetE('txtUrl').value.length == 0 )
154 SetAttribute( e, 'src', GetE('txtUrl').value ) ;
172 e.style.cssText = GetE('txtAttStyle').value ;
187 if ( GetE('txtUrl').value.length > 0 )
199 if ( GetE('txtUrl').value.length == 0 )
224 GetE('txtUrl').value = url ;
227 GetE('txtWidth').value = width ;
230 GetE('txtHeight').value = height ;
[all …]
/plugin/bureaucracy-au/helper/
H A Dfieldnumber.php52 $value = $this->getParam('value');
53 if (!is_null($value) && !is_numeric($value)){
71 public function handle_post($value, &$fields, $index, $formid) { argument
72 $value = $this->addLeadingzeros($value);
74 return parent::handle_post($value, $fields, $index, $formid);
106 * @param int|string $value number
109 protected function addLeadingzeros(&$value) { argument
111 $length = strlen($value);
113 $value = '0' . $value;
115 return $value;
[all …]
/plugin/bureaucracyau/helper/
H A Dfieldnumber.php52 $value = $this->getParam('value');
53 if (!is_null($value) && !is_numeric($value)){
71 public function handle_post($value, &$fields, $index, $formid) { argument
72 $value = $this->addLeadingzeros($value);
74 return parent::handle_post($value, $fields, $index, $formid);
106 * @param int|string $value number
109 protected function addLeadingzeros(&$value) { argument
111 $length = strlen($value);
113 $value = '0' . $value;
115 return $value;
[all …]
/plugin/bureaucracy/helper/
H A Dfieldnumber.php52 $value = $this->getParam('value');
53 if (!is_null($value) && !is_numeric($value)){
71 public function handle_post($value, &$fields, $index, $formid) { argument
72 $value = $this->addLeadingzeros($value);
74 return parent::handle_post($value, $fields, $index, $formid);
106 * @param int|string $value number
109 protected function addLeadingzeros(&$value) { argument
111 $length = strlen($value);
113 $value = '0' . $value;
115 return $value;
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js34 oTxtText.value = oListText.value ;
35 oTxtValue.value = oListValue.value ;
43 AddComboOption( oListText, oTxtText.value, oTxtText.value ) ;
44 AddComboOption( oListValue, oTxtValue.value, oTxtValue.value ) ;
49 oTxtText.value = '' ;
50 oTxtValue.value = '' ;
65 oListText.options[ iIndex ].value = oTxtText.value ;
68 oListValue.options[ iIndex ].value = oTxtValue.value ;
70 oTxtText.value = '' ;
71 oTxtValue.value = '' ;
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_select/
H A Dfck_select.js34 oTxtText.value = oListText.value ;
35 oTxtValue.value = oListValue.value ;
43 AddComboOption( oListText, oTxtText.value, oTxtText.value ) ;
44 AddComboOption( oListValue, oTxtValue.value, oTxtValue.value ) ;
49 oTxtText.value = '' ;
50 oTxtValue.value = '' ;
65 oListText.options[ iIndex ].value = oTxtText.value ;
68 oListValue.options[ iIndex ].value = oTxtValue.value ;
70 oTxtText.value = '' ;
71 oTxtValue.value = '' ;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dvalue.line-height.class.php8 function apply($value) { argument
16 function LineHeight_Absolute($value) { argument
17 $this->length = $value;
25 $value =& new LineHeight_Absolute($this->length);
26 return $value;
33 function apply($value) { argument
34 return $this->fraction * $value;
41 function LineHeight_Relative($value) { argument
42 $this->fraction = $value;
48 $value =& new LineHeight_Relative($this->fraction);
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/Helpers/
H A DUsergroupAwareSimpleValue.php31 public function setValue($value, $usergroup = '') argument
33 $this->values[$usergroup] = $this->validate($value);
48 protected function validate($value) argument
50 $value = trim($value);
52 if ($value === '') {
56 return $value;
67 foreach ($this->values as $usergroup => $value) {
68 $itemElem = XMLHelper::createElementWithText($document, $this->itemName, $value);
85 $value = $this->values[''];
87 $value = '';
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEscapeTrait.php28 * Escape all characters in a value.
30 * @param string $value
33 public static function escapeAll(string $value): string
35 if (self::shouldNotEscape($value)) {
36 return $value;
39 return '\\' . implode('\\', str_split(bin2hex($value), 2));
45 protected static function escapeNonPrintable(string $value): string argument
49 }, $value);
52 protected static function shouldNotEscape(string $value): bool
54 return (preg_match('/^(\\\\[0-9A-Fa-f]{2})+$/', $value)
26 escapeAll(string $value) global() argument
38 escapeNonPrintable(string $value) global() argument
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php410 if (!is_array($value)) {
418 $value['no']
429 if ($value > 0) {
436 if ($value === true) {
447 } elseif ($value === false) {
462 if (is_array($value)) {
464 $value = $value[0];
467 if (!file_exists($value)) {
488 if ($value === false) {
507 $value = \GuzzleHttp\debug_resource($value);
[all …]
/plugin/webdav/vendor/sabre/http/lib/
H A DSapi.php61 foreach ($value as $k => $v) {
117 foreach ($serverArray as $key => $value) {
122 if ($value === 'HTTP/1.0') {
127 $method = $value;
130 $url = $value;
135 $headers['Content-Type'] = $value;
157 $headers['Authorization'] = $value;
161 $hostName = $value;
162 $headers['Host'] = $value;
166 if (!empty($value) && $value !== 'off') {
[all …]
/plugin/davcal/vendor/sabre/event/tests/
H A DPromiseTest.php14 $finalValue = $value + 2;
28 $finalValue = $value + 2;
42 $finalValue = $value + 2;
45 $finalValue = $value + 4;
63 $finalValue = $value + 4;
79 $finalValue = $value + 2;
93 $finalValue = $value + 2;
192 $finalValue = $value;
210 function($value) use (&$finalValue) {
214 function($value) use (&$finalValue) {
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php72 foreach (explode(',', $expression) as $value) {
73 $value = trim($value);
75 if ($colonPos = strpos($value, ':')) {
79 } elseif (substr($value, -1) === '*') {
81 $varspec['value'] = substr($value, 0, -1);
83 $varspec['value'] = (string) $value;
109 foreach ($parsed['values'] as $value) {
138 if ($value['modifier'] === '*') {
160 } elseif ($value['modifier'] === '*') {
180 if ($value['modifier'] === ':') {
[all …]
/plugin/iphelper/
H A Dscript.js28 document.getElementById("iphelperinput").value = iphelperaddress;
31 document.getElementById("iphelpersubnetcalcsubnetinput").value = "";
32 document.getElementById("iphelpersubnetcalcinput").value = iphelperaddress;
35 } else {document.getElementById("iphelpersubnetcalcsubnetinput").value = iphelperaddressright;
36 document.getElementById("iphelpersubnetcalcinput").value = iphelperaddress.split("/")[0];
50 var iphelperaddress = document.getElementById("iphelperinput").value;
53 document.getElementById("iphelpersubnetcalcsubnetinput").value = "";
54 document.getElementById("iphelpersubnetcalcinput").value = iphelperaddress;
58 document.getElementById("iphelpersubnetcalcsubnetinput").value = iphelperaddressright;
59 document.getElementById("iphelpersubnetcalcinput").value
[all...]

12345678910>>...157