Lines Matching refs:tabWidth
688 $tabWidth = null;
693 $tabWidth = $cliValues['tabWidth'];
701 …$this->_tokens = self::tokenizeString($contents, $tokenizer, $this->eolChar, $tabWidth, $encoding);
1420 * @param int $tabWidth The number of spaces each tab respresents.
1426 …public static function tokenizeString($string, $tokenizer, $eolChar='\n', $tabWidth=null, $encodin… argument
1443 if ($tabWidth === null) {
1444 $tabWidth = PHP_CODESNIFFER_TAB_WIDTH;
1451 self::_createPositionMap($tokens, $tokenizer, $eolChar, $encoding, $tabWidth);
1476 * @param int $tabWidth The number of spaces that each tab represents.
1481 private static function _createPositionMap(&$tokens, $tokenizer, $eolChar, $encoding, $tabWidth) argument
1519 } else if ($tabWidth === 0
1542 $firstTabSize = ($tabWidth - (($currColumn - 1) % $tabWidth));
1543 $length = ($firstTabSize + ($tabWidth * ($numTabs - 1)));
1583 if (($currColumn % $tabWidth) === 0) {
1589 while (($currColumn % $tabWidth) !== 0) {