Home
last modified time | relevance | path

Searched refs:characters (Results 1 – 25 of 240) sorted by relevance

12345678910

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
H A DEncoder.php26 $rawCharacters = file_get_contents(__DIR__.'/../data/characters.json');
28 throw new \RuntimeException('Unable to load characters.json');
82 $characters = mb_str_split($token, 1, 'UTF-8');
85 foreach ($characters as $char) {
112 private function characterToUnicode(string $characters): int argument
114 $firstCharacterCode = ord($characters[0]);
121 return ($firstCharacterCode - 192) * 64 + (ord($characters[1]) - 128);
125 return ($firstCharacterCode - 224) * 4096 + (ord($characters[1]) - 128) * 64 + (ord($characters[2]) - 128);
129 return ($firstCharacterCode - 240) * 262144 + (ord($characters[
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php27 public $characters = []; variable in Antlr\\Antlr4\\Runtime\\InputStream
30 * @param array<string> $characters
32 private function __construct(string $input, array $characters) argument
35 $this->characters = $characters;
36 $this->size = \count($this->characters);
95 return StringUtils::codePoint($this->characters[$pos]);
142 return \implode(\array_slice($this->characters, $start, $stop - $start + 1));
/plugin/commonmark/vendor/league/commonmark/src/
H A DCursor.php
/plugin/charpicker/
H A DREADME.md6 Use this plugin to add characters to the Special Chars picker or to delete unused characters from t…
7 Enter the characters in the configuration manager, in either the add or delete box, as a comma deli…
H A Dplugin.info.txt6 desc Adds characters to special chars picker
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiterStack.php103 * @param string|string[] $characters
105 public function searchByCharacter($characters): ?DelimiterInterface
107 if (! \is_array($characters)) {
108 $characters = [$characters];
113 if (\in_array($opener->getChar(), $characters, true)) {
198 // No delimiter characters left to process, so we can remove delimiter and the now empty node.
125 searchByCharacter($characters) global() argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DImb.php159 // convert codewords to characters
160 $characters = [];
173 $characters[] = $chrcode;
177 $characters = array_reverse($characters);
183 $asc = (($characters[$asc_chr[$i]] & pow(2, $asc_pos[$i])) > 0);
184 $dsc = (($characters[$dsc_chr[$i]] & pow(2, $dsc_pos[$i])) > 0);
/plugin/xcom/scripts/
H A Dxcom_latinize.js20 return xcom_latinize.characters[x] || x;
27 xcom_latinize.characters = { class in xcom_latinize
H A Dxcom_latinize-cmpr.js1 …eturn b.replace(/[^A-Za-z0-9]/g,function(c){return a.characters[c]||c})}else{return b}}a.character… class in a
/plugin/etherpadlite/externals/etherpad-lite-client/
H A Dexample_big.php61 $characters = '0123456789abcdefghijklmnopqrstuvwxyz';
64 $string .= $characters[mt_rand(0, strlen($characters))];
/plugin/ruby/
H A Dplugin.info.txt6 …rmally used to display Japanese Kana on Chinese characters to describe how to read the Chinese cha…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D12.12.js1characters:/^(?:\\(?:backspace|formfeed|newline|return|space|tab|o[0-7]{3}|u[0-9A-Fa-f]{4}|x[0-9A-… property in AnonymousFunctionf600a1a10100.s
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCore.EscapeNonASCIICharacters.txt
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DsfQuotes.yml2 test: Some characters at the beginning of a string must be escaped
4 Some characters at the beginning of a string must be escaped
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dtrim.rst10 The ``trim`` filter strips whitespace (or other characters) from the beginning
38 * ``character_mask``: The characters to strip
H A Dtitle.rst5 start with uppercase letters, all remaining characters are lowercase:
/plugin/authdrupal8/
H A Dpassword.inc29 // The expected (and maximum) number of characters in a hashed password.
43 * The number of characters (bytes) to encode.
133 * Plain-text password up to 512 bytes (128 to 512 UTF-8 characters) to hash.
136 * at least 12 characters (the settings and salt).
140 * The return string will be truncated at DRUPAL_HASH_LENGTH characters max.
155 // The first 12 characters of an existing hash are its setting string.
179 // _password_base64_encode() of a 16 byte MD5 will always be 22 characters.
180 // _password_base64_encode() of a 64 byte sha512 will always be 86 characters.
/plugin/sequencediagram/bower_components/js-sequence-diagrams/fonts/daniel/
H A DREADME.md11 The µ, π, Ω, ∂, ∏ and ∑ characters mapped to unrelated characters.
/plugin/webdav/vendor/sabre/uri/
H A DCHANGELOG.md31 non ascii-characters such as Chinese or Hebrew. sabre/uri's `parse()`
32 function now percent-encodes these characters beforehand.
/plugin/autolink4/lang/en/
H A Dadmin_help.txt5 * Text to find. This can include certain regular expression characters, like square brackets and question marks. Pipe (|) and parentheses are not allowed.
11 * inword: Replace partial words. DokuWiki defines a word as characters surrounded by spaces or punctuation, so this is required for languages that do not require space between words.
/plugin/icalevents/vendor/sabre/uri/
H A DCHANGELOG.md31 non ascii-characters such as Chinese or Hebrew. sabre/uri's `parse()`
32 function now percent-encodes these characters beforehand.
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php264 $characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
267 $maxRand = strlen($characters)-1;
269 $nonce.= $characters[rand(0, $maxRand)];
/plugin/nonblank/
H A Dplugin.info.txt6 …he standard dokuwiki renderer which removes the single line break between two non-ASCII characters.
/plugin/advanced/lang/en/config/
H A Dentities.txt3 DokuWiki can replace certain characters or strings with other strings based on a configuration file…
/plugin/passpolicy/
H A Dhelper.php249 $characters = '';
255 $characters .= $this->pools[$pool]; // add to full pool
272 $pool_len = strlen($characters);
277 $output .= $characters[$this->rand(0, $pool_len - 1)];

12345678910