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

12 3 4 5

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
150 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
237 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
360 def decode(self, s, _w=WHITESPACE.match):
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 133 case WHITESPACE:
  /frameworks/base/tools/aidl/
aidl_language.h 10 WHITESPACE
129 // strips off the leading whitespace, the "import" text
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 319 if token.previous and token.previous.type == Type.WHITESPACE:
329 Type.WHITESPACE, Type.SEMICOLON, Type.END_PAREN):
356 elif token.previous and token.previous.type == Type.WHITESPACE:
369 if (token.previous and token.previous.type == Type.WHITESPACE and
384 elif type == Type.WHITESPACE:
389 'Illegal tab in whitespace before "%s"' % token.next.string,
393 'Illegal tab in whitespace',
397 'Illegal tab in whitespace after "%s"' % token.previous.string,
400 # Check whitespace length if it's not the first token of the line and
403 # Check for extra whitespace at the end of a line
    [all...]
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,
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 230 if (token.previous and token.previous.type == Type.WHITESPACE and
368 if token.previous and token.previous.type == Type.WHITESPACE:
379 Type.WHITESPACE, Type.SEMICOLON, Type.END_PAREN):
408 elif token.previous and token.previous.type == Type.WHITESPACE:
422 if (token.previous and token.previous.type == Type.WHITESPACE and
440 elif token_type == Type.WHITESPACE:
446 'Illegal tab in whitespace before "%s"' % token.next.string,
451 'Illegal tab in whitespace',
456 'Illegal tab in whitespace after "%s"' % token.previous.string,
459 # Check whitespace length if it's not the first token of the line an
    [all...]
error_fixer.py 330 if token.type in (Type.WHITESPACE, Type.PARAMETERS) and actual != 0:
335 new_token = Token(' ' * expected, Type.WHITESPACE,
353 if current_token.IsAnyType(Type.WHITESPACE,
364 whitespace_token = Token(' ', Type.WHITESPACE, token.line,
indentation.py 414 # If it is whitespace, it is the indentation.
415 if token.type == Type.WHITESPACE:
432 True if the token is the first non-whitespace token on its line.
434 if token.type in (Type.WHITESPACE, Type.BLANK_LINE):
439 token.previous.type == Type.WHITESPACE)
tokenutil.py 351 space_token = JavaScriptToken(' ', Type.WHITESPACE, token.line,
577 identifying symbol being identified that are split by whitespace or a
599 if (prev_token.IsType(tokens.TokenType.WHITESPACE) or
616 # could span multiple lines or be broken up by whitespace. We need
650 # Skip any whitespace
javascriptlintrules.py 267 while token and token.type in [Type.WHITESPACE, Type.BLANK_LINE]:
271 elif token.type == Type.WHITESPACE and not token.line.strip():
272 # A line with only whitespace on it.
497 and token.next.type not in (Type.WHITESPACE, Type.END_PAREN,
505 elif token.type == Type.WHITESPACE:
508 # Check whitespace length if it's not the first token of the line and
tokenutil_test.py 173 ' ', javascripttokens.JavaScriptTokenType.WHITESPACE, 1, 1)
  /sdk/emulator/opengl/host/tools/emugen/
ApiGen.cpp     [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java 246 CssTokens.TokenType.WHITESPACE,
264 if (it.hasNext() && it.type() == TokenType.WHITESPACE) {
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSGrammar.y 160 %token WHITESPACE SGML_CD
435 WHITESPACE
436 | space WHITESPACE
447 | maybe_sgml WHITESPACE
1118 | selector WHITESPACE
1119 | selector WHITESPACE simple_selector
    [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...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 331 String query = CharMatcher.WHITESPACE.trimAndCollapseFrom(getQuery(), ' ');
470 final String query = CharMatcher.WHITESPACE.trimLeadingFrom(getQuery());
  /external/chromium_org/v8/src/
token.h 165 T(WHITESPACE, NULL, 0)
  /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);
  /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))
  /external/guava/guava-tests/test/com/google/common/io/
FilesSimplifyPathTest.java 297 Splitter splitter = Splitter.on(CharMatcher.WHITESPACE);

Completed in 1705 milliseconds

12 3 4 5