HomeSort by relevance Sort by last modified time
    Searched refs:WHITESPACE (Results 26 - 50 of 65) sorted by null

12 3

  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
error_fixer.py 308 if token.type in (Type.WHITESPACE, Type.PARAMETERS) and actual != 0:
313 new_token = Token(' ' * expected, Type.WHITESPACE,
331 if current_token.IsAnyType(Type.WHITESPACE,
342 whitespace_token = Token(' ', Type.WHITESPACE, token.line,
javascriptlintrules.py 226 while token and token.type in [Type.WHITESPACE, Type.BLANK_LINE]:
230 elif token.type == Type.WHITESPACE and not token.line.strip():
231 # A line with only whitespace on it.
398 and not token.next.type in (Type.WHITESPACE, Type.END_PAREN,
406 elif token.type == Type.WHITESPACE:
409 # Check whitespace length if it's not the first token of the line and
closurizednamespacesinfo.py 390 elif (not prev_token.IsType(TokenType.WHITESPACE) and
402 elif (not next_token.IsType(TokenType.WHITESPACE) and
indentation.py 404 # If it is whitespace, it is the indentation.
405 if token.type == Type.WHITESPACE:
422 True if the token is the first non-whitespace token on its line.
424 if token.type in (Type.WHITESPACE, Type.BLANK_LINE):
429 token.previous.type == Type.WHITESPACE)
tokenutil.py 302 space_token = JavaScriptToken(' ', Type.WHITESPACE, token.line,
statetracker.py 442 If found, will split the token into at most 3 piecies: leading whitespace,
497 # only a doc comment prefix or whitespace.
817 """Return the last non whitespace token."""
906 # Traverse behind us, skipping whitespace and comments.
1005 if not token.IsAnyType(Type.WHITESPACE, Type.BLANK_LINE):
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 108 %token WHITESPACE SGML_CD
335 WEBKIT_MEDIAQUERY_SYM WHITESPACE maybe_space media_query '}' {
353 | maybe_space WHITESPACE
359 | maybe_sgml WHITESPACE
848 selector WHITESPACE {
    [all...]
  /external/openssh/
misc.c 157 /* Characters considered whitespace in strsep calls. */
158 #define WHITESPACE " \t\r\n"
173 *s = strpbrk(*s, WHITESPACE QUOTE "=");
184 *s += strspn(*s + 1, WHITESPACE) + 1;
194 /* Skip any extra whitespace after first token */
195 *s += strspn(*s + 1, WHITESPACE) + 1;
197 *s += strspn(*s + 1, WHITESPACE) + 1;
readconf.c 350 #define WHITESPACE " \t\r\n"
366 /* Strip trailing whitespace */
368 if (strchr(WHITESPACE, line[len]) == NULL)
377 /* Ignore leading whitespace. */
656 len = strspn(s, WHITESPACE "=");
    [all...]
servconf.c 676 #define WHITESPACE " \t\r\n"
733 /* Ignore leading whitespace */
    [all...]
sftp.c 110 #define WHITESPACE " \t\r\n"
1124 /* Skip leading whitespace */
1125 cp = cp + strspn(cp, WHITESPACE);
1132 cp = cp + strspn(cp, WHITESPACE);
1236 /* Skip ls command and following whitespace */
1237 cp = cp + strlen(cmd) + strspn(cp, WHITESPACE);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 426 private static final Pattern WHITESPACE =
448 this.matcher = WHITESPACE.matcher(text);
494 * Skip over any whitespace so that the matcher region starts at the next
498 matcher.usePattern(WHITESPACE);
    [all...]
  /external/guava/guava/src/com/google/common/base/
Splitter.java 55 * or that you wish to trim whitespace. If you want features like these, simply
88 * behavior of using five particular whitespace characters as separators, like
333 * CharMatcher#WHITESPACE whitespace} from each returned substring; equivalent
334 * to {@code trimResults(CharMatcher.WHITESPACE)}. For example, {@code
342 return trimResults(CharMatcher.WHITESPACE);
CharMatcher.java 45 * String trimmed = {@link #WHITESPACE WHITESPACE}.{@link #trimFrom trimFrom}(userInput);
65 * Determines whether a character is whitespace according to the latest Unicode standard, as
70 * definitions of "whitespace"</a>.)
75 public static final CharMatcher WHITESPACE =
81 * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
82 * interpreted as a break between words for formatting purposes). See {@link #WHITESPACE} for a
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 52 * or that you wish to trim whitespace. If you want features like these, simply
85 * behavior of using five particular whitespace characters as separators, like
275 * CharMatcher#WHITESPACE whitespace} from each returned substring; equivalent
276 * to {@code trimResults(CharMatcher.WHITESPACE)}. For example, {@code
284 return trimResults(CharMatcher.WHITESPACE);
  /external/guava/guava-tests/test/com/google/common/base/
SplitterTest.java 96 .on(CharMatcher.WHITESPACE)
146 .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.WHITESPACE))
272 .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.WHITESPACE))
409 .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.WHITESPACE))
PredicatesTest.java 19 import static com.google.common.base.CharMatcher.WHITESPACE;
795 return WHITESPACE.trimFrom(string);
  /external/guava/guava-tests/test/com/google/common/io/
FilesSimplifyPathTest.java 297 Splitter splitter = Splitter.on(CharMatcher.WHITESPACE);
  /external/v8/src/
token.h 181 T(WHITESPACE, NULL, 0)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 414 String query = CharMatcher.WHITESPACE.trimAndCollapseFrom(getQuery(), ' ');
659 final String query = CharMatcher.WHITESPACE.trimLeadingFrom(getQuery());
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 211 private static final String WHITESPACE = " \t";
417 if (WHITESPACE.indexOf(input.charAt(pos)) == -1) {
446 String ntrim = name.trim(); // erase leading and trailing whitespace
465 // whitespace
  /external/icu4c/tools/gencnval/
gencnval.c 377 It removes the newlines, comments and trailing whitespace (not preceding whitespace).
407 /* There is no whitespace at the beginning anymore */
471 /* skip whitespace */
569 static const char WHITESPACE[] = " \t";
589 tag = strtok(tag, WHITESPACE);
602 tag = strtok(NULL, WHITESPACE);
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
initscan-mvs.c     [all...]
  /dalvik/dx/etc/
jasmin.jar 

Completed in 1545 milliseconds

12 3