Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 3144) sorted by relevance

12345678910>>...126

/plugin/odt/ODT/
H A DODTUnits.php175 $value = self::getDigits ($value);
191 $value = $this->pixelToPointsX ($value);
193 $value = $this->pixelToPointsY ($value);
222 $value = self::toPoints ($value, $axis);
223 $value = substr($value, 0, -2);
224 $value = round (($value * self::$point_in_cm), 2).'cm';
247 $value = self::toPoints ($value, $axis);
248 $value = substr($value, 0, -2);
260 $value = self::getDigits ($value);
263 $value = ($value * $base)/100;
[all …]
H A DODTExport.php82 $value .= $autostyles;
83 $value .= '<office:body>';
93 $value .= $params->content;
95 $value .= '</office:body>';
109 … $value = str_replace('</office:master-styles>', $page.'</office:master-styles>', $value);
114 $value = str_replace($original, $commonstyles, $value);
117 $value = str_replace('<office:automatic-styles/>', $autostyles, $value);
269 $value = io_readFile($file);
271 $value = preg_replace($from, $to, $value);
273 $value = str_replace($from, $to, $value);
[all …]
/plugin/findologicxmlexport/vendor/webmozart/assert/src/
H A DAssert.php217 if (!is_numeric($value) || $value != (int) $value) {
247 if (!is_int($value) || $value < 0) {
333 if (!is_array($value) && !($value instanceof Traversable)) {
343 if (!is_array($value) && !($value instanceof ArrayAccess)) {
353 if (!is_array($value) && !($value instanceof Countable)) {
363 if (!is_array($value) && !($value instanceof Traversable)) {
410 if (!empty($value)) {
420 if (empty($value)) {
585 if ($value < $min || $value > $max) {
1052 $value = str_replace(array('urn:', 'uuid:', '{', '}'), '', $value);
[all …]
/plugin/ryubin/syntax/
H A Dryubin.php91 …case 'fov': $value = intval($value); if ($value > 19 && $value < 131) $data['fov'] =…
92 …case 'yaw': $value = intval($value); if ($value > -181 && $value < 181) $data['yaw']…
93 …case 'pitch': $value = intval($value); if ($value > -181 && $value < 181) $data['pitch…
94 …case 'view_mode': $value = intval($value); if ($value > 0 && $value < 4) $data['view_mode'…
100 …case 'top_limit': $value = intval($value); if ($value > 9 && $value < 91) $data['top_limit…
101 …case 'bottom_limit': $value = intval($value); if ($value > 9 && $value < 91) $data['bottom_li…
103 …case 'right_limit': $value = intval($value); if ($value > 9 && $value < 91) $data['right_lim…
104 …case 'left_limit': $value = intval($value); if ($value > 9 && $value < 91) $data['left_limi…
106 …case 'elevation': $value = intval($value); if ($value > 0 && $value < 91) $data['elevation…
107 …case 'depression': $value = intval($value); if ($value > 0 && $value < 91) $data['depressio…
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DParameter.php43 protected $value; variable in Sabre\\VObject\\Parameter
51 * @param string $value
80 * @param string $value
182 $this->value = $value;
205 * @param array $value
209 $this->value = $value;
243 $this->value = array_merge((array) $this->value, (array) $part);
254 * @param string $value
284 $value,
334 return $this->value;
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DParameter.php43 protected $value; variable in Sabre\\VObject\\Parameter
51 * @param string $value
81 * @param string $value
185 $this->value = $value;
210 * @param array $value
216 $this->value = $value;
254 $this->value = array_merge((array)$this->value, (array)$part);
266 * @param string $value
270 function has($value) { argument
299 $value,
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DBinaryWriter.php53 * @param int $value
56 public function writeSInt8($value) argument
58 return pack('c', $value);
63 * @param int $value
66 public function writeUInt8($value) argument
68 return pack('C', $value);
73 * @param int $value
76 public function writeUInt32($value) argument
78 return pack($this->isLittleEndian() ? 'V' : 'N', $value);
83 * @param float $value
86 writeDouble($value) global() argument
99 writeUVarInt($value) global() argument
123 writeSVarInt($value) global() argument
134 zigZagEncode($value) global() argument
[all...]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DParameter.php43 protected $value; variable in Sabre\\VObject\\Parameter
51 * @param string $value
81 * @param string $value
183 $this->value = $value;
208 * @param array $value
213 $this->value = $value;
250 $this->value = array_merge((array)$this->value, (array)$part);
262 * @param string $value
268 strtolower($value),
294 $value,
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DParameter.php43 protected $value; variable in Sabre\\VObject\\Parameter
51 * @param string $value
81 * @param string $value
183 $this->value = $value;
208 * @param array $value
213 $this->value = $value;
250 $this->value = array_merge((array)$this->value, (array)$part);
262 * @param string $value
268 strtolower($value),
294 $value,
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DParameter.php43 protected $value; variable in Sabre\\VObject\\Parameter
51 * @param string $value
81 * @param string $value
183 $this->value = $value;
208 * @param array $value
213 $this->value = $value;
250 $this->value = array_merge((array)$this->value, (array)$part);
262 * @param string $value
268 strtolower($value),
294 $value,
[all …]
/plugin/findologicxmlexport/vendor/sebastian/exporter/src/
H A DExporter.php41 * @param mixed $value
98 * @param mixed $value
104 if (is_string($value)) {
128 if (is_array($value)) {
142 * @param mixed $value
208 if ($value === null) {
212 if ($value === true) {
220 if (is_float($value) && floatval(intval($value)) === $value) {
221 return "$value.0";
227 $value,
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DExportUtil.php36 * @param mixed $value
49 * @param mixed $value
54 if (!is_object($value)) {
115 if ($value === null) {
119 if ($value === true) {
123 if ($value === false) {
127 if (is_float($value) && floatval(intval($value)) === $value) {
128 return "$value.0";
134 $value,
156 if (is_array($value)) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dutils_units.php4 function round_units($value) { argument
5 return round($value,2);
21 function units_mul($value, $koeff) { argument
23 $units = substr($value, strlen($value)-2,2);
34 $value = trim($value);
37 if (substr($value, strlen($value)-1, 1) === "%") {
44 function em2pt($value, $font_size) { argument
48 function ex2pt($value, $font_size) { argument
57 return pt2pt((double)$value);
59 return px2pt((double)$value);
[all …]
H A Dcss.background.position.inc.php29 if ($value === "left" ||
30 $value === "top") {
34 if ($value === "right" ||
35 $value === "bottom") {
39 if ($value === "center") {
43 if (substr($value, strlen($value)-1,1) === "%") {
63 function parse_in($value) { argument
98 function parse($value) { argument
103 $value = CSSBackgroundPosition::parse_in($value);
104 return new BackgroundPosition($value[0][0], $value[0][1],
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php119 $this->value = $this->value === '-' ? '0' : (string)$this->value;
176 $temp->value = bcadd($this->value, $y->value);
190 $temp->value = bcsub($this->value, $y->value);
204 $temp->value = bcmul($this->value, $x->value);
225 $quotient->value = bcdiv($this->value, $y->value, 0);
226 $remainder->value = bcmod($this->value, $y->value);
229 …$remainder->value = bcadd($remainder->value, $y->value[0] == '-' ? substr($y->value, 1) : $y->valu…
319 $temp->value = strlen($this->value) && $this->value[0] == '-' ?
484 $result->value = bcmod($result->value, $result->bitmask->value);
553 $value = $this->value;
[all …]
H A DGMP.php175 $temp->value = $this->value + $y->value;
189 $temp->value = $this->value - $y->value;
203 $temp->value = $this->value * $x->value;
224 list($quotient->value, $remainder->value) = gmp_div_qr($this->value, $y->value);
227 $remainder->value = $remainder->value + gmp_abs($y->value);
288 $temp->value = gmp_invert($this->value, $n->value);
352 $temp->value = $this->value & $x->value;
366 $temp->value = $this->value | $x->value;
380 $temp->value = $this->value ^ $x->value;
477 $result->value = $result->value & $result->bitmask->value;
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/
H A DArgument.php26 * @param mixed $value
30 public static function exact($value) argument
51 * @param mixed $value
111 public static function size($value) argument
132 * @param mixed $value
144 * @param mixed $value
172 public static function not($value) argument
178 * @param string $value
190 * @param mixed $value
194 public static function is($value) argument
[all …]
/plugin/twcheckliste/theme_twCheckliste/
H A Dtw_checklist.php197 $value = str_replace("UNCHECKED", "", $value);
199 $value = "<h1>" . str_replace("h1_", "", strip_tags($value)) . "</h1>";
200 return $value;
207 $value = str_replace("UNCHECKED", "", $value);
210 $value = "<h2>" . str_replace("h2_", "", strip_tags($value)) . "</h2>";
215 return $value;
231 return $value;
239 $value = str_replace("EINGABEFELD", $this -> eingabefeld, $value);
240 return $value;
256 $value = str_replace("EINGABEFELD", $this -> eingabefeld, $value);
[all …]
/plugin/sketchcanvas/phplib/
H A Dspyc.php64 * Setting this to true will force YAMLDump to enclose any string value in
237 foreach ($array as $key => $value) {
239 $string .= $this->_yamlize($key,$value,0,$previous_key, $first_key, $array);
247 * Attempts to convert a key / value array item to YAML
251 * @param $value The value of the item
254 private function _yamlize($key,$value,$indent, $previous_key = -1, $first_key = 0, $source_array = null) { argument
255 if (is_array($value)) {
256 if (empty ($value))
264 $string .= $this->_yamlizeArray($value,
302 _dumpNode($key, $value, $indent, $previous_key = 1, $first_key = 0, $source_array = null) global() argument
350 _doLiteralBlock($value, $indent) global() argument
374 _doFolding($value, $indent) global() argument
521 _toType($value) global() argument
933 unquote($value) global() argument
[all...]
/plugin/jdraw/src/com/mxgraph/examples/swing/resources/
H A Dbasic-style.xml.bak3 <add as="shape" value="label"/>
5 <add as="fontSize" value="11"/>
6 <add as="align" value="center"/>
9 <add as="fillColor" value="white"/>
15 <add as="fontSize" value="10"/>
16 <add as="align" value="center"/>
32 <add as="shape" value="arrow"/>
37 <add as="fontSize" value="12"/>
38 <add as="fontStyle" value="1"/>
43 <add as="dashed" value="1"/>
[all …]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataWikiPath.php15 * A wiki path value where the separator is a {@link WikiPath::NAMESPACE_SEPARATOR_DOUBLE_POINT}
46 protected WikiPath $value; variable in ComboStrap\\Meta\\Api\\MetadataWikiPath
49 * @param WikiPath|string|null $value
52 public function setValue($value): Metadata argument
54 if ($value === null) {
58 if ($value instanceof WikiPath) {
59 $this->value = $value;
63 if ($value === "" || $value
106 setFromStoreValueWithoutException($value) global() argument
[all...]
/plugin/combo/ComboStrap/
H A DDataType.php11 * The property name when the type value is persisted
56 * The constant value
96 throw new ExceptionBadArgument("The value passed is not a numeric/nor a string. We can not translate it to an integer. Value: $varExport");
111 throw new ExceptionBadArgument("The value ($targetValue) can not be cast to an integer.");
126 public static function toBoolean($value, $ifNull = null) argument
128 if ($value === null) return $ifNull;
129 return filter_var($value, FILTER_VALIDATE_BOOLEAN);
133 * @throws ExceptionBadArgument - if the value is not a numeric
135 public static function toFloat($value): float argument
137 if (is_float($value)) {
148 toBooleanString(bool $value) global() argument
164 isBoolean($value) global() argument
169 toString($value) global() argument
186 getType($value) global() argument
210 isObject($value) global() argument
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php257 return new static($this->value->add($y->value));
309 list($q, $r) = $this->value->divide($y->value);
339 extract($this->value->extendedGCD($n->value));
362 return new static($this->value->gcd($n->value));
434 $this->value = $temp->value;
465 return new static($this->value->powMod($e->value, $n->value));
477 return new static($this->value->modPow($e->value, $n->value));
501 return $this->value->compare($y->value);
514 return $this->value->equals($x->value);
797 return $this->value->between($min->value, $max->value);
[all …]
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php231 $value = $this->valueFromDB ( $column, $value, $def );
370 if ((trim ( $value ) === '') || ($value == '0000-00-00'))
382 $value = substr ( $value, 0, 19 );
383 …if ((trim ( $value ) === '') || ($value == '0000-00-00T00:00:00') || ($value == '0000-00-00 00:00:…
389 $value = trim ( $value );
404 $value = trim ( $value );
409 $value = intval ( $value );
415 $value = intval ( $value );
534 if ($value && (substr ( $value, - 3 ) == ':00') && (strlen ( $value ) > 5))
535 $value = substr ( $value, 0, - 3 );
[all …]
/plugin/crossdbsqlclient/syntax/
H A Ddbwrapper.php207 $value = $this->valueFromDB ( $column, $value, $def );
346 if ((trim ( $value ) === '') || ($value == '0000-00-00'))
358 $value = substr ( $value, 0, 19 );
359 …if ((trim ( $value ) === '') || ($value == '0000-00-00T00:00:00') || ($value == '0000-00-00 00:00:…
365 $value = trim ( $value );
380 $value = trim ( $value );
385 $value = intval ( $value );
391 $value = intval ( $value );
479 if ($value && (substr ( $value, - 3 ) == ':00') && (strlen ( $value ) > 5))
480 $value = substr ( $value, 0, - 3 );
[all …]

12345678910>>...126