Home
last modified time | relevance | path

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

12345678910>>...12

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
DEncoder.php82 $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]…
129 …racterCode - 240) * 262144 + (ord($characters[1]) - 128) * 4096 + (ord($characters[2]) - 128) * 64…
133 …777_216 + (ord($characters[1]) - 128) * 262144 + (ord($characters[2]) - 128) * 4096 + (ord($charac…
137characters[1]) - 128) * 16_777_216 + (ord($characters[2]) - 128) * 262144 + (ord($characters[3]) -…
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DInputStream.php27 public $characters = []; variable in Antlr\\Antlr4\\Runtime\\InputStream
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/charpicker/
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…
Dplugin.info.txt6 desc Adds characters to special chars picker
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
DImb.php160 $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/
Dxcom_latinize-cmpr.js1 …eturn b.replace(/[^A-Za-z0-9]/g,function(c){return a.characters[c]||c})}else{return b}}a.character…
Dxcom_latinize.js20 return xcom_latinize.characters[x] || x;
27 xcom_latinize.characters = {
/plugin/etherpadlite/externals/etherpad-lite-client/
Dexample_big.php61 $characters = '0123456789abcdefghijklmnopqrstuvwxyz';
64 $string .= $characters[mt_rand(0, strlen($characters))];
/plugin/ruby/
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/
D12.12.js1characters:/^(?:\\(?:backspace|formfeed|newline|return|space|tab|o[0-7]{3}|u[0-9A-Fa-f]{4}|x[0-9A-… property
/plugin/asciidocjs/node_modules/wrap-ansi/
Dindex.js29 const characters = [...word];
35 for (const [index, character] of characters.entries()) {
47 isInsideLinkEscape = characters.slice(index + 1).join('').startsWith(ANSI_ESCAPE_LINK);
65 if (visible === columns && index < characters.length - 1) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DCore.EscapeNonASCIICharacters.txt7 converting all non-ASCII characters into decimal numeric entities before
8 converting it to its native encoding. This means that even characters that
/plugin/asciidocjs/node_modules/pug-filters/node_modules/cliui/
DREADME.md49 * `\n`: characters will be interpreted as new rows.
50 * `\t`: characters will be interpreted as new columns.
51 * ` `: characters will be interpreted as padding.
/plugin/authdrupal8/
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/findologicxmlexport/vendor/twig/twig/doc/filters/
Dtrim.rst10 The ``trim`` filter strips whitespace (or other characters) from the beginning
38 * ``character_mask``: The characters to strip
/plugin/sequencediagram/bower_components/js-sequence-diagrams/fonts/daniel/
DREADME.md11 The µ, π, Ω, ∂, ∏ and ∑ characters mapped to unrelated characters.
/plugin/asciidocjs/node_modules/glob/
DREADME.md10 ![a fun cartoon logo made of glob characters](logo/glob.png)
40 slash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.
42 The following characters have special magic meaning when used in a
45 * `*` Matches 0 or more characters in a single path portion
47 * `[...]` Matches a range of characters, similar to a RegExp range.
73 You can make glob treat dots as normal characters by setting
104 Returns `true` if there are any special characters in the pattern, and
223 _never_ as an escape character. If set, all `\\` characters
226 pattern characters, but allows matching with patterns constructed
278 contain any slash characters. That is, `*.js` would be treated as
[all …]
/plugin/icalevents/vendor/sabre/uri/
DCHANGELOG.md31 non ascii-characters such as Chinese or Hebrew. sabre/uri's `parse()`
32 function now percent-encodes these characters beforehand.
/plugin/webdav/vendor/sabre/uri/
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/
Dadmin_help.txt5 …* Text to find. This can include certain regular expression characters, like square brackets and q…
11 …* inword: Replace partial words. DokuWiki defines a word as characters surrounded by spaces or pun…
/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/grensladawritezor/fckeditor/
Dhtaccess.txt25 # characters were found (three strange chars in the beginning of the file).
28 # Those characters are the Byte Order Mask (BOM) of the Unicode encoded files.
/plugin/asciidocjs/node_modules/minimatch/
DREADME.md43 characters are used by this glob implementation. You must use
45 will always be interpreted as escape characters, not path separators.
207 character. If set, all `\\` characters are replaced with `/` in
209 against paths containing literal glob pattern characters, but
227 characters normally. This is perhaps relevant if you wish to start the
229 characters at the start of a pattern will negate the pattern multiple
247 that it does not resolve escaped pattern characters.
/plugin/asciidocjs/node_modules/cliui/
DREADME.md78 * `\n`: characters will be interpreted as new rows.
79 * `\t`: characters will be interpreted as new columns.
80 * `\s`: characters will be interpreted as padding.
/plugin/passpolicy/
Dhelper.php257 $characters = '';
263 $characters .= $this->pools[$pool]; // add to full pool
280 $pool_len = strlen($characters);
285 $output .= $characters[$this->rand(0, $pool_len - 1)];

12345678910>>...12