Home
last modified time | relevance | path

Searched refs:value (Results 51 – 75 of 3912) sorted by relevance

12345678910>>...157

/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php33 * @param string|array $value
36 public function setValue($value) { argument
40 $value = (array)$value;
43 if (is_array($value)) {
60 $this->value = $newVal;
62 $this->value = self::stringToArray($value);
83 foreach($this->value as $key=>$value) {
84 $out[] = $key . '=' . (is_array($value)?implode(',', $value):$value);
112 return $this->value;
176 * @param string $value
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php33 * @param string|array $value
36 public function setValue($value) { argument
40 $value = (array)$value;
43 if (is_array($value)) {
60 $this->value = $newVal;
62 $this->value = self::stringToArray($value);
83 foreach($this->value as $key=>$value) {
84 $out[] = $key . '=' . (is_array($value)?implode(',', $value):$value);
112 return $this->value;
176 * @param string $value
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Comparison/
H A DHasher.php24 foreach ($values as $value) {
25 $elementHash = self::hashValue($value);
32 public static function hashValue($value) : int argument
34 if ($value === null) {
38 if (\is_int($value)) {
39 return $value;
42 if ($value instanceof Hashable) {
43 return $value->hashCode();
46 if (\is_object($value)) {
47 return \spl_object_id($value);
[all...]
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DDayOfMonthField.php13 * given day. As an example, if you were to specify "15W" as the value for the
18 * specify "1W" as the value for day-of-month, and the 1st is a Saturday, the
59 public function isSatisfiedBy(DateTime $date, $value) argument
61 // ? states that the field value is to be skipped
62 if ($value == '?') {
69 if ($value == 'L') {
73 // Check to see if this is the nearest weekday to a particular value
74 if (strpos($value, 'W')) {
76 $targetDay = substr($value, 0, strpos($value, '
109 validate($value) global() argument
[all...]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php170 $value = trim($h);
171 if ($value === '') {
175 $headers = [$value];
177 $headers[] = $value;
232 // [client][curl][body_as_string] request value is set.
296 foreach ($values as $value) {
297 $options[CURLOPT_HTTPHEADER][] = "$name: $value";
321 foreach ($config as $key => $value) {
323 $curlOptions[$key] = $value;
354 foreach ($request['client'] as $key => $value) {
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DRdn.php51 protected $value;
60 * @param string $value
62 public function __construct(string $name, string $value)
65 $this->value = $value;
81 return $this->value;
97 $rdn = $this->name . '=' . $this->value;
149 * Escape an RDN value.
151 * @param string $value
154 public static function escape(string $value)
42 protected $value; global() variable in FreeDSx\\Ldap\\Entry\\Rdn
53 __construct(string $name, string $value) global() argument
144 escape(string $value) global() argument
[all...]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js941 valIsReflexive = value === value,
1367 (value > -1 && value % 1 == 0 && value < length);
1660 isReflexive = value === value;
2416 return isArray(value) ? copyArray(value) : copyObject(value, nativeKeys(value));
2452 return value === other || (value !== value && other !== other);
2529 return value != null && isLength(value.length) && !isFunction(value);
2732 value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
2825 return isNumber(value) && value != +value;
2918 (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);
3358 return isFunction(value) ? value.call(object) : value;
[all …]
/plugin/odp/
H A Drenderer.php301 $value .= 'true';
385 $value .= '>';
402 $value = str_replace('<office:automatic-styles/>', $autostyles, $value);
474 $value = preg_replace($from, $to, $value);
476 $value = str_replace($from, $to, $value);
515 return $value;
524 return $value;
529 $value = '';
556 return $value;
561 $value = '';
[all …]
/plugin/fckg/fckeditor/editor/dialog/fck_image/
H A Dfck_image.js180 GetE('txtUrl').value = sUrl ;
325 e.src = GetE('txtUrl').value ;
476 if ( value.length == 0 || isNaN( value ) )
478 e.value = '' ;
483value = value == 0 ? 0 : Math.round( oImageOriginal.height * ( value / oImageOriginal.width ) ) ;
485value = value == 0 ? 0 : Math.round( oImageOriginal.width * ( value / oImageOriginal.height ) ) ;
487 if ( !isNaN( value ) )
488 e.value = value ;
542 GetE('txtLnkUrl').value = url ;
550 GetE('txtUrl').value = encodeURI(GetE('txtUrl').value);
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.utils.inc.php58 function is_percentage($value) { argument
59 return $value{strlen($value)-1} == "%";
114 function css_process_escapes($value) { argument
117 $value);
121 $value);
122 return $value;
133 function css_remove_value_quotes($value) { argument
134 if (strlen($value) == 0) { return $value; };
136 if ($value{0} === "'" || $value{0} === "\"") {
137 $value = substr($value, 1, strlen($value)-2);
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/json-js/
H A Djson2.js248 value = holder[key];
252 if (value && typeof value === 'object' &&
254 value = value.toJSON(key);
261 value = rep.call(holder, key, value);
266 switch (typeof value) {
268 return quote(value);
275 ? String(value)
285 return String(value);
295 if (!value) {
349 for (k in value) {
[all …]
/plugin/move/script/
H A Djson2.js238 value = holder[key];
242 if (value && typeof value === 'object' &&
244 value = value.toJSON(key);
251 value = rep.call(holder, key, value);
256 switch (typeof value) {
258 return quote(value);
264 return isFinite(value) ? String(value) : 'null';
273 return String(value);
283 if (!value) {
333 for (k in value) {
[all …]
/plugin/selfmeasurement/
H A Dscript.js2 document.getElementById('systAverage').value = '';
3 document.getElementById('diastAverage').value = '';
4 document.getElementById('systNb').value = '';
5 document.getElementById('diastNb').value = '';
10 document.getElementById('s'+(i+1)).value='';
11 document.getElementById('d'+(i+1)).value='';
13 document.getElementById('param').value='0';
20 if (document.getElementById('s'+(i+1)).value === '')
26 if (document.getElementById('d'+(i+1)).value === '')
61 document.getElementById('systNb').value = nbSyst;
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DBinary.php36 * @param string|array $value
40 function setValue($value) { argument
42 if (is_array($value)) {
44 if (count($value) === 1) {
45 $this->value = $value[0];
52 $this->value = $value;
70 $this->value = base64_decode($val);
117 * @param array $value
121 function setJsonValue(array $value) { argument
123 $value = array_map('base64_decode', $value);
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DBinary.php36 * @param string|array $value
38 public function setValue($value) argument
40 if (is_array($value)) {
41 if (1 === count($value)) {
42 $this->value = $value[0];
47 $this->value = $value;
61 $this->value = base64_decode($val);
71 return base64_encode($this->value);
104 * @param array $value
108 $value = array_map('base64_decode', $value);
[all …]
/plugin/gtime/gtlib/util/
H A DGTBigInteger.php51 if ($value === null || $value === '') {
82 $value = bcadd($value, 1);
85 $value = $sign . $value;
88 $value = $value->getValue();
91 $value = (string) $value;
103 $this->value = $value;
122 return bccomp($this->value, $integer->value, 0);
132 return new GTBigInteger(bcadd($this->value, $integer->value, 0));
142 return new GTBigInteger(bcsub($this->value, $integer->value, 0));
152 return new GTBigInteger(bcmul($this->value, $integer->value, 0));
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Property/
H A DBinary.php38 * @param string|array $value
41 public function setValue($value) { argument
43 if(is_array($value)) {
45 if(count($value) === 1) {
46 $this->value = $value[0];
53 $this->value = $value;
70 $this->value = base64_decode($val);
81 return base64_encode($this->value);
117 * @param array $value
122 $value = array_map('base64_decode', $value);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
H A DBinary.php38 * @param string|array $value
41 public function setValue($value) { argument
43 if(is_array($value)) {
45 if(count($value) === 1) {
46 $this->value = $value[0];
53 $this->value = $value;
70 $this->value = base64_decode($val);
81 return base64_encode($this->value);
117 * @param array $value
122 $value = array_map('base64_decode', $value);
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DBinary.php38 * @param string|array $value
41 public function setValue($value) { argument
43 if(is_array($value)) {
45 if(count($value) === 1) {
46 $this->value = $value[0];
53 $this->value = $value;
70 $this->value = base64_decode($val);
81 return base64_encode($this->value);
117 * @param array $value
122 $value = array_map('base64_decode', $value);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DMessageTrait.php71 $value = $this->normalizeHeaderValue($value);
79 $new->headers[$header] = $value;
87 $value = $this->normalizeHeaderValue($value);
148 $value = $this->normalizeHeaderValue($value);
161 * @param mixed $value
167 if (!is_array($value)) {
171 if (count($value) === 0) {
195 if (!is_scalar($value) && null !== $value) {
198 is_object($value) ? get_class($value) : gettype($value)
240 * @param string $value
[all …]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataMultiple.php15 * A list of value metadata
34 * @param null|array $value
38 public function setValue($value): Metadata argument
40 if ($value === null) {
41 $this->array = $value;
44 if (!is_array($value)) {
45 throw new ExceptionCompile("The value is not an array. Value: " . var_export($value, true));
47 $this->array = $value;
67 throw new ExceptionNotFound("No default multiples value");
119 setFromStoreValue($value) global() argument
140 toArrayOrNull($value) global() argument
168 setFromStoreValueWithoutException($value) global() argument
[all...]
H A DMetadataInteger.php18 protected $value; variable in ComboStrap\\Meta\\Api\\MetadataInteger
29 return $this->value;
34 return $this->value !== null;
41 public function setValue($value): Metadata argument
43 $this->value = DataType::toInteger($value);
50 public function setFromStoreValue($value): Metadata argument
52 return $this->setValue($value);
55 public function setFromStoreValueWithoutException($value): Metadata argument
57 if ($value
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DIsIdentical.php32 protected $value; variable in PHPUnit_Framework_Constraint_IsIdentical
35 * @param mixed $value
37 public function __construct($value) argument
40 $this->value = $value;
63 if (is_float($this->value) && is_float($other) &&
65 !is_nan($this->value) && !is_nan($other)) {
68 $success = $this->value === $other;
81 $this->value,
83 $this->value,
122 if (is_object($this->value)) {
[all …]
/plugin/odt/ODT/
H A DODTmeta.php43 $value = '<' . '?xml version="1.0" encoding="UTF-8"?' . ">\n";
44 $value .= '<office:document-meta ';
46 $value .= 'xmlns:xlink="http://www.w3.org/1999/xlink" ';
47 $value .= 'xmlns:dc="http://purl.org/dc/elements/1.1/" ';
49 $value .= 'xmlns:ooo="http://openoffice.org/2004/office" ';
50 $value .= 'xmlns:grddl="http://www.w3.org/2003/g/data-view#" ';
51 $value .= 'office:version="1.2">';
52 $value .= '<office:meta>';
57 $value .= '</office:meta>';
58 $value .= '</office:document-meta>';
[all …]
/plugin/darcs/
H A Dadmin.php110 '<input type="hidden" name="id" value="'.$ID.'" />'.
111 '<input type="hidden" name="do" value="'.$_REQUEST['do'].'"/>'.
113 '<input type="hidden" name="darcs_do" value="apply_all" />'.
127 '<input type="hidden" name="id" value="'.$ID.'" />'.
174 '<input type="hidden" name="id" value="'.$ID.'" />'.
177 '<input type="hidden" name="darcs_do" value="get_plugin" />'.
178 '<input name="plugin_url" value="http://" />'.
234 '<input type="hidden" name="id" value="'.$ID.'" />'.
237 '<input type="hidden" name="darcs_do" value="do_remove"/>'.
270 '<input type="hidden" name="id" value="'.$ID.'" />'.
[all …]

12345678910>>...157