Home
last modified time | relevance | path

Searched refs:chars (Results 1 – 9 of 9) sorted by relevance

/template/strap/vendor/antlr/antlr4-php-runtime/src/
DInputStream.php41 $chars = \preg_split('//u', $input, -1, \PREG_SPLIT_NO_EMPTY);
43 return new self($input, $chars === false ? [] : $chars);
/template/strap/vendor/carica/phpcss/src/PhpCss/Scanner/
DStatus.php78 protected function matchCharacters(string $buffer, int $offset, array $chars): ?Token { argument
81 foreach ($chars as $type => $expectedChar) {
/template/bootstrap3/inc/
Dsimple_html_dom.php2150 protected function skip($chars) argument
2152 $this->pos += strspn($this->doc, $chars, $this->pos);
2156 protected function copy_skip($chars) argument
2159 $len = strspn($this->doc, $chars, $pos);
2166 protected function copy_until($chars) argument
2169 $len = strcspn($this->doc, $chars, $pos);
/template/mikio/inc/
Dsimple_html_dom.php2156 protected function skip($chars) argument
2158 $this->pos += strspn($this->doc, $chars, $this->pos);
2162 protected function copy_skip($chars) argument
2165 $len = strspn($this->doc, $chars, $pos);
2172 protected function copy_until($chars) argument
2175 $len = strcspn($this->doc, $chars, $pos);
/template/ad-hominem/css/
Dcontent.less297 hyphenate-limit-chars: 6 2 3;
365 hyphenate-limit-chars: 5 2 2;
Dprint.less173 hyphenate-limit-chars: 6 2 3;
/template/codowik/css/
Dui.layout.css14 * NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
/template/mikio/inc/stemmechanics/lesserphp/
Dlessc.inc.php3478 $chars = '^@,:;{}\][>\(\) "\'';
3480 $chars = '^@,;{}["\'';
3492 if ($this->match('(['.$chars.'0-9]['.$chars.']*)', $m)) {
/template/strap/resources/firebug/
Dfirebug-lite-1.4.js320 var escapeEntitiesRegEx={normal:function(list){var chars=[];
321 for(var ch in list){chars.push(ch)
322 }return new RegExp("(["+chars.join("")+"])","gm")
323 },reverse:function(list){var chars=[];
324 for(var ch in list){chars.push(ch)
325 }return new RegExp("("+chars.join("|")+")","gm")