Home
last modified time | relevance | path

Searched refs:value (Results 26 – 50 of 3912) sorted by relevance

12345678910>>...157

/plugin/html2pdf/html2pdf/html2ps/
H A Dvalue.padding.class.php6 var $value; variable in PaddingSideValue
20 $value =& new PaddingSideValue;
21 $value->value = $this->value;
25 return $value;
29 return $this->value;
34 $this->value == 0 &&
48 $value->value = $data;
51 return $value;
95 return $value;
107 $value = new PaddingValue;
[all …]
H A Dvalue.margin.class.php6 var $value; variable in MarginSideValue
28 $value =& new MarginSideValue;
29 $value->value = $this->value;
33 return $value;
38 $this->value == 0 &&
52 $value->value = $data;
56 return $value;
95 $value =& new MarginValue;
100 return $value;
104 $value = new MarginValue;
[all …]
H A Dheight.php88 if ($value[1]) {
132 return $value[0];
140 if ($value->isAuto($value)) {
142 } elseif ($value->isPercentage()) {
150 if ($value->isAuto($value)) {
152 } elseif ($value->isPercentage()) {
160 if ($value->isAuto($value)) {
186 return $value;
188 return max($this->_fix_value($this->min, $box, $value, $no_table_recursion), $value);
194 return $value;
[all …]
H A Dcss.list-style-type.inc.php20 function parse($value) { argument
21 if (preg_match('/\bnone\b/',$value)) { return LST_NONE; };
22 if (preg_match('/\bdisc\b/',$value)) { return LST_DISC; };
23 if (preg_match('/\bcircle\b/',$value)) { return LST_CIRCLE; };
24 if (preg_match('/\bsquare\b/',$value)) { return LST_SQUARE; };
26 if (preg_match('/\bdecimal\b/',$value)) { return LST_DECIMAL; };
36 if (preg_match('/\bhebrew\b/',$value)) { return LST_DECIMAL; };
37 if (preg_match('/\bgeorgian\b/',$value)) { return LST_DECIMAL; };
38 if (preg_match('/\barmenian\b/',$value)) { return LST_DECIMAL; };
40 if (preg_match('/\bhiragana\b/',$value)) { return LST_DECIMAL; };
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DInline.php51 * Converts a YAML string to a PHP value.
53 * @param string|null $value A YAML string
61 public static function parse(string $value = null, int $flags = 0, array &$references = []) argument
65 $value = trim($value);
67 if ('' === $value) {
78 $tag = self::parseTag($value, $i, $flags);
79 switch ($value[$i]) {
81 $result = self::parseSequence($value, $flags, $i, $references);
85 $result = self::parseMapping($value,
117 dump($value, int $flags = 0) global() argument
208 isHash($value) global() argument
231 dumpArray(array $value, int $flags) global() argument
721 parseTag(string $value, int& $i, int $flags) global() argument
776 isBinaryString(string $value) global() argument
[all...]
H A DDumper.php42 * Dumps a PHP value to YAML.
44 * @param mixed $input The PHP value
66 foreach ($input as $key => $value) {
71 if (Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && \is_string($value) && false !== strpos($value, "\n") && false === strpos($value, "\r")) {
74 $blockIndentationIndicator = (' ' === substr($value, 0, 1)) ? (string) $this->indentation : '';
76 if (isset($value[-2]) && "\n" === $value[-2] && "\n" === $value[
143 dumpTaggedValue(TaggedValue $value, int $inline, int $indent, int $flags, string $prefix) global() argument
[all...]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataText.php23 protected $value; variable in ComboStrap\\Meta\\Api\\MetadataText
34 if ($this->value === null) {
35 throw new ExceptionNotFound("The value was not found for the metadata ($this)");
37 return $this->value;
42 return $this->value !== null;
47 * @param null|string $value
51 public function setValue($value): Metadata argument
53 if ($value !== null && !is_string($value)) {
54 throw new ExceptionBadArgument("The value o
79 setFromStoreValue($value) global() argument
84 setFromStoreValueWithoutException($value) global() argument
[all...]
H A DMetadataBoolean.php25 protected $value; variable in ComboStrap\\Meta\\Api\\MetadataBoolean
39 if ($this->value === null) {
42 return $this->value;
47 * @param null|boolean $value
50 public function setValue($value): Metadata argument
52 if ($value === null) {
53 $this->value = null;
56 if (!is_bool($value)) {
57 throw new ExceptionRuntime("The value is not a boolean: " . var_export($value, tru
119 setFromStoreValue($value) global() argument
133 setFromStoreValueWithoutException($value) global() argument
140 toBoolean($value) global() argument
[all...]
/plugin/bibtex/OSBib/create/
H A DFORM.php61 if(!$value)
64 $value = $messages->text("submit", $value);
82 function hidden($name, $value) argument
128 foreach($array as $value)
148 foreach($array as $value)
150 if($value == $select)
157 $value = $formMisc->reduceLongText($value, $override);
182 $value = $formMisc->reduceLongText($value, $override);
208 $value = $formMisc->reduceLongText($value, $override);
236 $value = $formMisc->reduceLongText($value, $override);
[all …]
/plugin/strata/types/
H A Dlink.php13 function render($mode, &$renderer, &$triples, $value, $hint) { argument
14 if(preg_match('/^[a-zA-Z0-9\.]+>{1}.*$/u',$value)) {
16 $interwiki = explode('>',$value,2);
17 $renderer->interwikilink($value,$hint, strtolower($interwiki[0]), $interwiki[1]);
19 } elseif(preg_match('/^\\\\\\\\[^\\\\]+?\\\\/u',$value)) {
20 $renderer->windowssharelink($value,$hint);
22 } elseif(preg_match('#^([a-z0-9\-\.+]+?)://#i',$value)) {
23 $renderer->externallink($value,$hint);
25 } elseif(preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$value)) {
26 $renderer->emaillink($value,
35 normalize($value, $hint) global() argument
[all...]
H A Dimage.php13 function isExternalMedia($value) { argument
14 return preg_match('#^(https?|ftp)#i', $value);
17 function normalize($value, $hint) { argument
21 $value = preg_replace(array('/^\{\{/','/\}\}$/u'), '', $value);
24 $value = explode('|', $value, 2);
25 $value = trim($value[0]);
27 if($this->isExternalMedia($value)) {
46 render($mode, & $R, & $T, $value, $hint) global() argument
[all...]
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php70 $value = trim($value);
72 if ('' === $value) {
137 return '!'.$value->getTag().' '.self::dump($value->getValue(), $flags);
168 return \is_string($value) ? "'$value'" : (int) $value;
178 } elseif (floor($value) == $value && $repr == $value) {
183 $repr = \is_string($value) ? "'$value'" : (string) $value;
190 case '' == $value:
202 return $value;
215 if ($value instanceof \stdClass || $value instanceof \ArrayObject) {
388 $value = new TaggedValue($tag, $value);
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_image/
H A Dfck_image.js128 GetE('txtUrl').value = sUrl ;
270 e.src = GetE('txtUrl').value ;
361 if ( value.length == 0 || isNaN( value ) )
363 e.value = '' ;
368value = value == 0 ? 0 : Math.round( oImageOriginal.height * ( value / oImageOriginal.width ) ) ;
370value = value == 0 ? 0 : Math.round( oImageOriginal.width * ( value / oImageOriginal.height ) ) ;
372 if ( !isNaN( value ) )
373 e.value = value ;
420 GetE('txtLnkUrl').value = url ;
425 GetE('txtUrl').value = url ;
[all …]
/plugin/togglewrap/
H A Dscript.js2 if (checkbox.value.substr(0,4) == 'not_') {
3 value = checkbox.value.substr(4);
6 value = checkbox.value;
10 jQuery('.wrap_'+value).show(duration);
13 if (this.value == value) {
15 } else if (this.value == 'not_'+value) {
23 if (this.value == value) {
25 } else if (this.value == 'not_'+value) {
36 value = this.value.substr(4);
39 value = this.value;
[all …]
/plugin/webdav/vendor/sabre/xml/lib/Serializer/
H A Dfunctions.php43 foreach ($values as $value) {
166 if (is_scalar($value)) {
169 $writer->text($value);
176 } elseif (is_object($value) && isset($writer->classMap[get_class($value)])) {
179 $writer->classMap[get_class($value)]($writer, $value);
184 $value($writer);
190 } elseif (is_array($value) && array_key_exists('name', $value)) {
195 $name = $value['name'];
196 $attributes = isset($value['attributes']) ? $value['attributes'] : [];
197 $value = isset($value['value']) ? $value['value'] : null;
[all …]
/plugin/icalevents/vendor/sabre/xml/lib/Serializer/
H A Dfunctions.php43 foreach ($values as $value) {
166 if (is_scalar($value)) {
169 $writer->text($value);
176 } elseif (is_object($value) && isset($writer->classMap[get_class($value)])) {
179 $writer->classMap[get_class($value)]($writer, $value);
184 $value($writer);
190 } elseif (is_array($value) && array_key_exists('name', $value)) {
195 $name = $value['name'];
196 $attributes = isset($value['attributes']) ? $value['attributes'] : [];
197 $value = isset($value['value']) ? $value['value'] : null;
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DCreate.php10 * @param mixed $value Promise or value.
14 public static function promiseFor($value) argument
17 return $value;
21 if (is_object($value) && method_exists($value, 'then')) {
22 $wfn = method_exists($value, 'wait') ? [$value, 'wait'] : null;
23 $cfn = method_exists($value, 'cancel') ? [$value, 'cancel'] : null;
29 return new FulfilledPromise($value);
68 * @param mixed $value
72 public static function iterFor($value) argument
75 return $value;
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DStringUtil.php36 * @param mixed $value
43 if (is_array($value)) {
44 if (range(0, count($value) - 1) === array_keys($value)) {
53 }, $value, array_keys($value))).']';
56 return get_resource_type($value).':'.$value;
58 if (is_object($value)) {
59 …return $exportObject ? ExportUtil::export($value) : sprintf('%s:%s', get_class($value), spl_object…
61 if (true === $value || false === $value) {
64 if (is_string($value)) {
73 if (null === $value) {
[all …]
/plugin/jdraw/src/com/mxgraph/examples/swing/resources/
H A Ddefault-style.xml.bak5 <add as="fillColor" value="#E8EEF7"/>
9 <add as="rounded" value="1"/>
16 <add as="elbow" value="vertical"/>
24 <add as="shape" value="arrow"/>
28 <add as="fontSize" value="12"/>
29 <add as="fontStyle" value="1"/>
30 <add as="startSize" value="23"/>
34 <add as="dashed" value="1"/>
35 <add as="opacity" value="50"/>
50 <add as="shape" value="line"/>
[all …]
/plugin/pot/
H A Dhelper.php43 $value = trim($temp[1]);
51 if ($value != '') {
54 $value = "";
58 if ($value != '') {
61 $value = "";
65 if ($value == 'none') {
74 if ($value == 'right') {
78 $value = 'float:left;';
83 if ($value == '' || $value == 0) {
84 $value = "";
[all …]
/plugin/odt/helper/
H A Dunits.php46 public static function stripDigits ($value) { argument
47 return ODTUnits::stripDigits ($value);
56 public static function getDigits ($value) { argument
57 return ODTUnits::getDigits ($value);
83 * @param int $value The value to be set.
85 public function setPixelPerEm ($value) { argument
86 $this->internal->setPixelPerEm ($value);
101 * @param int $value The value to be set.
103 public function setTwipsPerPixelX ($value) { argument
110 * @param int $value The value to be set.
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/fck_link/
H A Dfck_link.js268 GetE('txtUrl').value = sUrl ;
274 GetE('cmbAnchorName').value = GetE('cmbAnchorId').value = sHRef.substr(1) ;
281 GetE('txtUrl').value = sHRef ;
380 var sUrl = GetE('txtUrl').value ;
386 GetE('txtUrl').value = sUrl ;
401 GetE('cmbTarget').value = '' ;
423 if ( GetE('txtPopupLeft').value.length > 0 ) sFeatures += ',left=' + GetE('txtPopupLeft').value ;
424 if ( GetE('txtPopupTop').value.length > 0 ) sFeatures += ',top=' + GetE('txtPopupTop').value ;
473 sUri = GetE('txtUrl').value ;
496 GetE('txtEMailSubject').value,
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php32 * @param string|array $value
36 function setValue($value) { argument
40 $value = (array)$value;
43 if (is_array($value)) {
65 $this->value = self::stringToArray($value);
86 foreach ($this->value as $key => $value) {
87 $out[] = $key . '=' . (is_array($value) ? implode(',', $value) : $value);
115 return $this->value;
205 * @param string $value
211 $value = strtoupper($value);
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DRecur.php32 * @param string|array $value
34 public function setValue($value) argument
38 $value = (array) $value;
41 if (is_array($value)) {
62 $this->value = self::stringToArray($value);
82 foreach ($this->value as $key => $value) {
83 $out[] = $key.'='.(is_array($value) ? implode(',', $value) : $value);
109 return $this->value;
190 * @param string $value
196 $value = strtoupper($value);
[all …]
/plugin/davcard/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 …]

12345678910>>...157