Home
last modified time | relevance | path

Searched refs:encoding (Results 26 – 50 of 300) sorted by relevance

12345678910>>...12

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/
H A DOracleColumn.php33 public $encoding; variable in Google\\Service\\Datastream\\OracleColumn
90 public function setEncoding($encoding) argument
92 $this->encoding = $encoding;
99 return $this->encoding;
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.text.string.php8 function &create($text, $encoding) { argument
9 $box =& new TextBoxString($text, $encoding);
14 function TextBoxString($word, $encoding) { argument
17 $this->add_subword($word, $encoding, array());
H A Dfont.class.php64 function create($fontfile, $encoding) { argument
66 $font->_read(TTF_FONTS_REPOSITORY.$fontfile, $encoding);
73 function _read($file, $encoding) { argument
74 error_log(sprintf("Parsing font file file %s for encoding %s", $file, $encoding));
91 $map = $manager->get_encoding_vector($encoding);
125 function &create($typeface, $encoding, $font_resolver, &$error_message) { argument
143 if (!$font->_parse_afm($afm, $typeface, $encoding)) {
153 function _parse_afm($afm, $typeface, $encoding) { argument
155 $encoding_data = $g_manager_encodings->get_glyph_to_code_mapping($encoding);
H A Doutput.fastps.class.php64 function _findfont($name, $encoding) { argument
65 $font =& $this->font_factory->get_type1($name, $encoding);
72 if (!isset($this->used_encodings[$encoding])) {
73 $this->used_encodings[$encoding] = true;
92 function font_ascender($name, $encoding) { argument
93 $font = $this->_findfont($name, $encoding);
101 function font_descender($name, $encoding) { argument
102 $font = $this->_findfont($name, $encoding);
257 function setfont($name, $encoding, $size) { argument
259 $this->currentfont = $this->_findfont($name, $encoding);
[all …]
H A Doutput._interface.class.php35 function font_ascender($name, $encoding) {} argument
41 function font_descender($name, $encoding) {} argument
61 function setfont($name, $encoding, $size) {} argument
70 function stringwidth($string, $name, $encoding, $size) { } argument
H A Dfilter.data.ucs2.class.php6 function _convert(&$data, $encoding) { argument
8 $data->set_content($converter->to_ucs2($data->get_content(), $encoding));
H A Dfilter.data.utf8.class.php6 function _convert(&$data, $encoding) { argument
8 $data->set_content($converter->to_utf8($data->get_content(), $encoding));
/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A DPhp72.php173 public static function mb_chr($code, $encoding = null) argument
185 if ('UTF-8' !== $encoding = $encoding ?? mb_internal_encoding()) {
186 $s = mb_convert_encoding($s, $encoding, 'UTF-8');
192 public static function mb_ord($s, $encoding = null) argument
194 if (null === $encoding) {
196 } elseif ('UTF-8' !== $encoding) {
197 $s = mb_convert_encoding($s, 'UTF-8', $encoding);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DQuery.php67 * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986
73 public static function build(array $params, $encoding = PHP_QUERY_RFC3986) argument
79 if ($encoding === false) {
83 } elseif ($encoding === PHP_QUERY_RFC3986) {
85 } elseif ($encoding === PHP_QUERY_RFC1738) {
/plugin/amcharts/assets/amcharts/plugins/export/libs/blob.js/
H A Dblob.js39 , FakeBlob = function Blob(data, type, encoding) { argument
43 this.encoding = encoding;
101 if (blob.encoding === "base64") {
103 } else if (blob.encoding === "URI") {
142 if (data.encoding === "base64" && atob) {
144 } else if (data.encoding === "URI") {
146 } else if (data.encoding === "raw") {
174 , this.encoding
/plugin/spellcheck/
H A Daspell.php44 function pspell_config_create($language, $spelling=null, $jargon=null, $encoding='iso8859-1'){ argument
45 return new Aspell($language, $jargon, $encoding);
74 var $encoding = 'iso8859-1'; variable in Aspell
85 function Aspell($language, $jargon=null, $encoding='iso8859-1'){ argument
88 $this->encoding = $encoding;
131 if($this->encoding != null){
132 $this->args .= ' --encoding='.escapeshellarg($this->encoding);
/plugin/fckg/
H A DREADME3 This version of fckgLite supports the Dokuwiki 'safe' file system encoding for non-Roman
4 character sets. It also supports url-style encoding, which was the encoding
12 'safe' encoding was implemented in Dokuwiki's Anteater distribution, dated 2010-11-07.
17 This distribution of fckgLite employs the corrected implementation of 'safe' encoding.
19 If you are using 'safe' encoding and are still using Anteater, you have two choices.
21 2. You can revert to the Anteater implementation of safe encoding.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Speech/
H A DRecognitionConfig.php62 public $encoding; variable in Google\\Service\\Speech\\RecognitionConfig
235 public function setEncoding($encoding) argument
237 $this->encoding = $encoding;
244 return $this->encoding;
/plugin/swiftmail/Swift/Message/
H A DMime.php206 public function setEncoding($encoding, $recursive=false, $non_ascii=false) argument
209 switch (strtolower($encoding))
212 $encoding = "quoted-printable";
215 $encoding = "base64";
218 $encoding = strtolower($encoding);
226 $this->headers->set("Content-Transfer-Encoding", $encoding);
230 $this->headers->set("Content-Transfer-Encoding", $encoding);
237 … if (!$child->getEncoding()) $this->children[$id]->setEncoding($encoding, $recursive, $non_ascii);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DClient.php91 protected $encoding = self::ENCODING_IDENTITY; variable in Sabre\\DAV\\Client
154 $encoding = $settings['encoding'];
157 if ($encoding & self::ENCODING_IDENTITY) {
160 if ($encoding & self::ENCODING_DEFLATE) {
163 if ($encoding & self::ENCODING_GZIP) {
/plugin/fckg/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
254 if(encoding == 'safe'){
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
268 if(encoding == 'safe'){
/plugin/ckgdoku/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
250 if(encoding == 'safe'){
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
264 if(encoding == 'safe'){
/plugin/fckg/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
250 if(encoding == 'safe'){
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
264 if(encoding == 'safe'){
/plugin/ckgdoku/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
254 if(encoding == 'safe'){
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
268 if(encoding == 'safe'){
/plugin/ckgedit/scripts/
H A DsafeFN_class.js246 function dwikiUTF8_encodeFN(file, encoding){ argument
248 if(encoding == 'utf-8') return file;
254 if(encoding == 'safe'){
264 function dwikiUTF8_decodeFN(file, encoding){ argument
266 if(encoding == 'utf-8') return file;
268 if(encoding == 'safe'){
/plugin/ckgedit/fckeditor/editor/filemanager/browser/default/js/
H A DsafeFN_class.js242 function dwikiUTF8_encodeFN(file, encoding){ argument
244 if(encoding == 'utf-8') return file;
250 if(encoding == 'safe'){
260 function dwikiUTF8_decodeFN(file, encoding){ argument
262 if(encoding == 'utf-8') return file;
264 if(encoding == 'safe'){
/plugin/webdav/vendor/sabre/vobject/lib/
H A DProperty.php554 if ($encoding = $this->offsetGet('ENCODING')) {
562 $encoding = (string) $encoding;
577 if ('BASE64' === strtoupper($encoding)) {
578 $encoding = 'B';
579 $this['ENCODING'] = $encoding;
589 if ($allowedEncoding && !in_array(strtoupper($encoding), $allowedEncoding)) {
592 … 'message' => 'ENCODING='.strtoupper($encoding).' is not valid for this document type.',
/plugin/pureldap/vendor/freedsx/asn1/
H A DCHANGELOG.md20 * Fix an OID encoding case when the second component would be near or over the max int as defined by PHP.
24 * Fix the encoding / decoding of OIDs when the first / second component is more than one byte (found by @danielmarschall)
28 * Fix the length-of-length check for a partial PDU with long definite encoding under certain circumstances.
32 * More performance optimizations in the encoding / decoding process for large amounts of data structures.
/plugin/jukebox/id3/
H A Dgetid3.php21 var $encoding = 'ISO-8859-1'; // CASE SENSITIVE! - i.e. (must be supported by iconv()) variable in getID3
168 …if (!function_exists('iconv') && !in_array($this->encoding, array('ISO-8859-1', 'UTF-8', 'UTF-16LE…
225 …$this->info['encoding'] = $this->encoding; // required by id3v2 and iso modules - can…
970 function CharConvert(&$array, $encoding) { argument
973 if ($encoding == $this->encoding) {
982 $this->CharConvert($array[$key], $encoding);
987 $array[$key] = trim(getid3_lib::iconv_fallback($encoding, $this->encoding, $value));
1019 list($tag_name, $encoding) = $tagname_encoding_array;
1023 $this->info[$comment_name]['encoding'] = $encoding;
1047 …$tag_key][$key] = str_replace('�', '', getid3_lib::MultiByteCharString2HTML($value, $encoding));
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php90 protected $encoding = self::ENCODING_IDENTITY; variable in Sabre\\DAV\\Client
153 $encoding = $settings['encoding'];
156 if ($encoding & self::ENCODING_IDENTITY) {
159 if ($encoding & self::ENCODING_DEFLATE) {
162 if ($encoding & self::ENCODING_GZIP) {

12345678910>>...12