/plugin/csv/_test/ |
H A D | CSVTest.php | 46 list($delim, $enc, $esc) = explode('-', $file); 48 $enc = $this->enclosings[$enc]; 51 yield [$file, $expect, $csvdata, $delim, $enc, $esc]; 61 * @param string $enc 64 public function testParser($file, $expect, $csvdata, $delim, $enc, $esc) argument 69 $line = \helper_plugin_csv::csv_explode_row($csvdata, $delim, $enc, $esc);
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Datamatrix.php | 697 $enc = self::ENC_ASCII; // current encoding mode 704 $this->last_enc = $enc; 705 switch ($enc) { 714 $newenc = $this->lookAheadTest($data, $pos, $enc); 715 if ($newenc != $enc) { 717 $enc = $newenc; 718 $cw[] = $this->getSwitchEncodingCodeword($enc); 745 $set_id = $this->chset_id[$enc]; 754 if ($enc == self::ENC_X12) { 772 } elseif (($enc [all...] |
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Pdf/ |
H A D | Protection.php | 267 $enc = $this->rc4($owner_rc4_key, $user_pass); 275 $enc = $this->rc4($key, $enc); 279 return $enc; 286 $enc = $this->rc4($this->encryptionKey, $tmp); 293 $enc = $this->rc4($key, $enc); 295 $enc .= str_repeat("\x00", 16); 297 return substr($enc, 0, 32);
|
/plugin/mantis/lib/ |
H A D | class.soap_server.php | 319 if(eregi('^(ISO-8859-1|US-ASCII|UTF-8)$',$enc)){ 320 $this->xml_encoding = strtoupper($enc); 345 $enc = substr(strstr($v, '='), 1); 346 $enc = str_replace('"', '', $enc); 347 $enc = str_replace('\\', '', $enc); 349 $this->xml_encoding = strtoupper($enc); 379 $enc = substr(strstr($v, '='), 1); 380 $enc = str_replace('"', '', $enc); 381 $enc = str_replace('\\', '', $enc); 383 $this->xml_encoding = strtoupper($enc); [all …]
|
H A D | class.soapclient.php | 491 $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1)); 492 $this->debug('Got response encoding: ' . $enc); 493 if(eregi('^(ISO-8859-1|US-ASCII|UTF-8)$',$enc)){ 494 $this->xml_encoding = strtoupper($enc); 621 * @param string $enc HTTP encoding 624 function setHTTPEncoding($enc='gzip, deflate'){ argument 625 $this->debug("setHTTPEncoding(\"$enc\")"); 626 $this->http_encoding = $enc;
|
/plugin/csv/ |
H A D | helper.php | 202 * @param string $enc Enclosing character 207 public static function csv_explode_row(&$str, $delim = ',', $enc = '"', $esc = '\\') argument 229 if ($str[$i] == $esc && $esc != $enc) { 270 if ($str[$i] == $enc) { 285 … if ($str[$i] == $esc && $esc == $enc && isset($str[$i + 1]) && $str[$i + 1] == $esc) { 292 if ($str[$i] == $enc) {
|
/plugin/html2pdf/html2pdf/html2ps/fpdf/font/makefont/ |
H A D | makefont.php | 8 function ReadMap($enc) argument 11 $file=dirname(__FILE__).'/'.strtolower($enc).'.map'; 14 die('<B>Error:</B> encoding not found: '.$enc); 298 function MakeFont($fontfile,$afmfile,$destdir,$destfile,$enc='cp1252',$patch=array(),$type='TrueTyp… argument 303 if($enc) 305 $map=ReadMap($enc); 314 if($enc) 348 $s.='$enc=\''.$enc."';\n";
|
/plugin/remotescript/lib/JsHttpRequest/ |
H A D | JsHttpRequest.php | 50 function JsHttpRequest($enc) argument 80 $this->setEncoding($enc); 120 function setEncoding($enc) argument 123 preg_match('/^(\S*)(?:\s+(\S*))$/', $enc, $p); 124 $this->SCRIPT_ENCODING = strtolower(!empty($p[1])? $p[1] : $enc);
|
/plugin/adfs/phpsaml/lib/Saml2/ |
H A D | Utils.php | 1079 $enc = new XMLSecEnc(); 1080 $enc->setNode($nameId); 1081 $enc->type = XMLSecEnc::Element; 1085 $enc->encryptKey($seckey, $symmetricKey); 1087 $encryptedData = $enc->encryptNode($symmetricKey); 1164 $enc = new XMLSecEnc(); 1166 $enc->setNode($encryptedData); 1167 $enc->type = $encryptedData->getAttribute("Type"); 1169 $symmetricKey = $enc->locateKey($encryptedData); 1177 $symmetricKeyInfo = $enc->locateKeyInfo($symmetricKey); [all …]
|
/plugin/swiftmail/Swift/Connection/ |
H A D | SMTP.php | 216 public function setEncryption($enc) argument 218 if (!$enc) $enc = self::ENC_OFF; 219 $this->encryption = (int) $enc;
|
/plugin/swiftmail/Swift/Message/ |
H A D | Part.php | 113 if (!($enc = $this->getEncoding())) $this->setEncoding("8bit"); 124 if (!$enc) $this->setEncoding("7bit");
|
/plugin/swiftmail/Swift/Authenticator/PopB4Smtp/ |
H A D | Pop3Connection.php | 93 public function setEncryption($enc) argument 95 $this->encryption = (int) $enc;
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | pdf.fpdf.makefont.php | 386 function MakeFont($fontfile, $afmfile, $destdir, $destfile, $enc) { argument 392 $map = $manager->get_encoding_glyphs($enc); 401 $fm = ReadTTF($fontfile, $manager->get_encoding_vector($enc)); 409 $cmap = MakeFontCMap($enc); 443 $s.='$enc=\''.$enc."';\n";
|
/plugin/combo/vendor/symfony/polyfill-mbstring/ |
H A D | Mbstring.php | 430 foreach ($encodingList as $enc) { 431 switch ($enc) { 434 return $enc; 446 if (0 === strncmp($enc, 'ISO-8859-', 9)) { 447 return $enc; 466 foreach ($encodingList as $enc) { 467 switch ($enc) { 469 if (strncmp($enc, 'ISO-8859-', 9)) {
|
/plugin/docsearch/lang/ja/ |
H A D | confmanager_description.txt | 14 /usr/bin/pdftotext -enc UTF-8 %in% %out%
|
/plugin/docsearch/lang/ko/ |
H A D | confmanager_description.txt | 14 /usr/bin/pdftotext -enc UTF-8 %in% %out%
|
/plugin/docsearch/lang/ru/ |
H A D | confmanager_description.txt | 14 /usr/bin/pdftotext -enc UTF-8 %in% %out%
|
/plugin/feedmod/ |
H A D | feed.css | 12 * vim:ts=2:sw=2:et:enc=utf-8:
|
/plugin/mp3play/ |
H A D | style.css | 13 * vim:ts=2:sw=2:et:enc=utf-8:
|
/plugin/dokukiwix/ |
H A D | style.css | 22 // Setup VIM: ex: et ts=4 enc=utf-8 :
|
/plugin/groupmail/ |
H A D | recaptchalib.php | 219 $enc=MCRYPT_RIJNDAEL_128; 221 return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
|
/plugin/recaptcha/lib/ |
H A D | recaptchalib.php | 219 $enc=MCRYPT_RIJNDAEL_128; 221 return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
|
/plugin/contactmodern/ |
H A D | recaptchalib.php | 219 $enc=MCRYPT_RIJNDAEL_128; 221 return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
|
/plugin/docsearch/lang/de/ |
H A D | confmanager_description.txt | 8 /usr/bin/pdftotext -enc UTF-8 %in% %out%
|
/plugin/qrcode2/ |
H A D | phpqrcode.php | 3101 return $enc->encode($text, $outfile); 3108 return $enc->encodeRAW($text, $outfile); 3221 $enc = new QRencode(); 3222 $enc->size = $size; 3223 $enc->margin = $margin; 3230 $enc->level = $level; 3234 $enc->level = QR_ECLEVEL_L; 3238 $enc->level = QR_ECLEVEL_M; 3242 $enc->level = QR_ECLEVEL_Q; 3246 $enc->level = QR_ECLEVEL_H; [all …]
|