Home
last modified time | relevance | path

Searched refs:tok (Results 1 – 3 of 3) sorted by relevance

/template/daily/
DREADME.md2 ![](https://www.dokuwiki.org/lib/exe/fetch.php?tok=7b576c&media=http%3A%2F%2Fi1.tietuku.com%2Fefa26…
/template/scanlines/htc/PIE-1.0beta5/
DPIE_uncompressed.js1017 var tok = new Tokenizer.Token( type, value );
1019 me.tokens.push( tok );
1022 return tok;
1109 function isNum( tok ) { argument
1110 return tok && tok.tokenType & Type.NUMBER;
1112 function isNumOrPct( tok ) { argument
1113 return tok && ( tok.tokenType & ( Type.NUMBER | Type.PERCENT ) );
1115 function isValue( tok, val ) { argument
1116 return tok && tok.tokenValue === val;
1932 slices = tokenizer.until( function( tok ) { argument
[all …]
/template/mikio/inc/stemmechanics/lesserphp/
H A Dlessc.inc.php3132 $tok = $m[2];
3134 $this->count-= strlen($tok);
3135 if ($tok == $end) {
3143 if (($tok == "'" || $tok == '"') && $this->stringValue($str)) {
3148 if ($tok == "@{" && $this->interpolation($inter)) {
3153 if (!empty($rejectStrs) && in_array($tok, $rejectStrs)) {
3157 $content[] = $tok;
3158 $this->count+= strlen($tok);