Searched refs:isWordChar (Results 1 – 4 of 4) sorted by relevance
49 isWordChar: function(char) method70 if (!WebInspector.TextUtils.isWordChar(word.charAt(i)))108 if (!WebInspector.TextUtils.isWordChar(text.charAt(i))) {
888 if (column === 0 || !WebInspector.TextUtils.isWordChar(line.charAt(column - 1)))891 while(wordStart > 0 && WebInspector.TextUtils.isWordChar(line.charAt(wordStart - 1)))896 while(wordEnd < line.length && WebInspector.TextUtils.isWordChar(line.charAt(wordEnd)))1251 …var leftBound = startColumn === 0 || !WebInspector.TextUtils.isWordChar(line.charAt(startColumn - …1252 …var rightBound = endColumn === line.length || !WebInspector.TextUtils.isWordChar(line.charAt(endCo…1305 … if (stream.match(token) && (stream.eol() || !WebInspector.TextUtils.isWordChar(stream.peek())))1311 …} while (eatenChar && (WebInspector.TextUtils.isWordChar(eatenChar) || stream.peek() !== tokenFirs…
58 if (left == right && CodeMirror.isWordChar(curChar))
2788 var type = isWordChar(cur) ? "w"2827 var check = isWordChar(startChar) ? isWordChar2829 : function(ch) {return !/\s/.test(ch) && !isWordChar(ch);};3393 CodeMirror.isWordChar = isWordChar;5439 function isWordChar(ch) {