Lines Matching refs:space
109 $space = $this->_collectWhitespace($string, $char, $numChars);
110 if ($space !== null) {
111 $tokens[$stackPtr] = $space;
114 $content = PHP_CodeSniffer::prepareForOutput($space['content']);
118 $char += strlen($space['content']);
193 $space = $this->_collectWhitespace($string, $start, $end);
194 if ($space !== null) {
195 $tokens[] = $space;
196 $start += strlen($space['content']);
217 $space = $this->_collectWhitespace($string, $start, $end);
218 if ($space !== null) {
219 $tokens[] = $space;
220 $start += strlen($space['content']);
263 $space = '';
269 $space .= $string[$start];
272 if ($space === '') {
277 'content' => $space,