Home
last modified time | relevance | path

Searched refs:val (Results 851 – 875 of 887) sorted by path

1...<<313233343536

/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DProperty.php214 * @param string $val
217 abstract function setRawMimeDirValue($val); argument
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
H A DBinary.php65 * @param string $val
68 public function setRawMimeDirValue($val) { argument
70 $this->value = base64_decode($val);
H A DBoolean.php28 * @param string $val
31 public function setRawMimeDirValue($val) { argument
33 $val = strtoupper($val)==='TRUE'?true:false;
34 $this->setValue($val);
H A DFlatText.php39 * @param string $val
42 public function setQuotedPrintableValue($val) { argument
44 $val = quoted_printable_decode($val);
45 $this->setValue($val);
H A DFloatValue.php34 * @param string $val
37 public function setRawMimeDirValue($val) { argument
39 $val = explode($this->delimiter, $val);
40 foreach($val as &$item) {
43 $this->setParts($val);
84 $val = array_map(
98 return array($val);
100 return $val;
H A DIntegerValue.php26 * @param string $val
29 public function setRawMimeDirValue($val) { argument
31 $this->setValue((int)$val);
H A DText.php95 * @param string $val
107 * @param string $val
112 $val = quoted_printable_decode($val);
133 $val = $this->getParts();
136 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
139 foreach($val as &$item) {
214 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
219 if (count($val)>1) {
223 $val = implode(';', $val);
225 $val = $val[0];
[all …]
H A DUri.php46 * @param string $val
49 public function setRawMimeDirValue($val) { argument
61 $matches = preg_split($regex, $val, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
75 $this->value = $val;
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php81 * @param string $val
84 public function setRawMimeDirValue($val) { argument
86 $this->setValue(explode($this->delimiter, $val));
H A DDuration.php37 * @param string $val
40 public function setRawMimeDirValue($val) { argument
42 $this->setValue(explode($this->delimiter, $val));
H A DPeriod.php37 * @param string $val
40 public function setRawMimeDirValue($val) { argument
42 $this->setValue(explode($this->delimiter, $val));
H A DRecur.php122 * @param string $val
125 public function setRawMimeDirValue($val) { argument
127 $this->setValue($val);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php260 * @param string $val
263 public function setRawMimeDirValue($val) { argument
265 $this->setValue($val);
H A DLanguageTag.php25 * @param string $val
28 public function setRawMimeDirValue($val) { argument
30 $this->setValue($val);
/plugin/webdavclient/vendor/sabre/vobject/lib/Recur/
H A DRRuleIterator.php660 $val = (int)$value;
661 if ($val < 1) {
665 $this->$key = $val;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerNewEventTest.php511 foreach($ex as $key=>$val) {
515 str_replace("\n", "\r\n", $val),
519 $this->assertEquals($val, $message->$key);
H A DBrokerTester.php27 foreach($ex as $key=>$val) {
31 $val,
35 $this->assertEquals($val, $message->$key);
/plugin/weiqi/
H A Dweiqi_parser.php157 foreach ($this->conf['default_attributes'] as $key => $val) $$key = $val;
161 foreach ($attributes as $key => $val) $$key = $val;
/plugin/workflow/
H A Dscript.js117 …var val = '^(?=.*\\b' + jQuery.trim(jQuery(this).val()).split(/\s+/).join('\\b)(?=.*\\b') + ').*$'…
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckxhtml.js189 var val = '\r' ;
191 val += '\r' ;
192 return FCKXHtml._AppendNode( xmlNode, this.XML.createTextNode( val ) ) ;
383 var val = item.nodeValue ;
385 node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( '\r\n' + val ) ) ) ;
/plugin/wysiwyg/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/
H A Dspellchecker.php25 foreach( $textinputs as $key=>$val ) {
27 echo "textinputs[$key] = decodeURIComponent(\"" . $val . "\");\n";
46 foreach( $suggs as $key=>$val ) {
47 if( $val ) {
48 echo "'" . escape_quote( $val ) . "'";
103 foreach( $linesout as $key=>$val ) {
104 $chardesc = substr( $val, 0, 1 );
110 $line = explode( " ", $val, 5 );
125 $aspell_err .= $val;
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A DImageObject.cfc185 <cfargument name="val" type="string" required="yes">
189 <cfset imageCFC.setOption(key, val)>
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php72 foreach ( $htmlExtensions as $key => $val )
74 $lcaseHtmlExtensions[$key] = strtolower( $val ) ;
/plugin/xcom/
H A Daction.php60 foreach($site as $item=>$val) {
61 $JSINFO['xcom_sites'][$name][$item] = $val;
H A Dremote.php356 foreach ($ar As $key=>$val) {
357 if(!empty($val)) {
361 $val = date("r", $val);
364 $val = $types[$val];
368 if(empty($val)) {
369 $retv .= "<tr><td $border>$key:</td><td>$val</td></tr>\n";
371 else $retv .= "<tr><td $border>$key:</td><td>$val</td></tr>\n";

1...<<313233343536