HomeSort by relevance Sort by last modified time
    Searched refs:RBRACE (Results 1 - 25 of 27) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 39 #define RBRACE 27
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 39 #define RBRACE 27
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 40 literal.append(pytree.Leaf(token.RBRACE, u"}"))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 36 RBRACE = 27
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_set_literal.py 40 literal.append(pytree.Leaf(token.RBRACE, u"}"))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 36 RBRACE = 27
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
JavaScriptFormatter.js 187 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
192 this._expect(FormatterWorker.JavaScriptTokens.RBRACE);
265 if (!this._hasLineTerminatorBeforeNext() && token !== FormatterWorker.JavaScriptTokens.SEMICOLON && token !== FormatterWorker.JavaScriptTokens.RBRACE && token !== FormatterWorker.JavaScriptTokens.EOS) {
276 if (!this._hasLineTerminatorBeforeNext() && token !== FormatterWorker.JavaScriptTokens.SEMICOLON && token !== FormatterWorker.JavaScriptTokens.RBRACE && token !== FormatterWorker.JavaScriptTokens.EOS) {
287 if (!this._hasLineTerminatorBeforeNext() && token !== FormatterWorker.JavaScriptTokens.SEMICOLON && token !== FormatterWorker.JavaScriptTokens.RBRACE && token !== FormatterWorker.JavaScriptTokens.EOS) {
316 while (this._peek() !== FormatterWorker.JavaScriptTokens.CASE && this._peek() !== FormatterWorker.JavaScriptTokens.DEFAULT && this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
335 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE)
338 this._expect(FormatterWorker.JavaScriptTokens.RBRACE);
651 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
660 if (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
    [all...]
  /external/chromium_org/v8/src/
preparser.cc 124 ASSERT_EQ(Token::RBRACE, scanner()->peek());
338 while (peek() != Token::RBRACE) {
345 Expect(Token::RBRACE, ok);
520 tok != Token::RBRACE &&
538 tok != Token::RBRACE &&
565 tok != Token::RBRACE &&
605 while (token != Token::RBRACE) {
616 token != Token::RBRACE) {
621 Expect(Token::RBRACE, ok);
862 ParseSourceElements(Token::RBRACE, ok)
    [all...]
parser.cc     [all...]
token.h 38 T(RBRACE, "}", 0) \
scanner.cc 202 Token::RBRACE, // 0x7d
543 token = Select(Token::RBRACE);
    [all...]
preparser.h 291 tok == Token::RBRACE ||
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
esctrn.cpp 27 static const UChar RBRACE[] = {125,0}; // "}"
58 return new EscapeTransliterator(ID, PERLPRE, RBRACE, 16, 1, TRUE, NULL);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
token.py 40 RBRACE = 27
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
token.py 40 RBRACE = 27
  /external/icu/icu4c/source/i18n/
esctrn.cpp 28 static const UChar RBRACE[] = {125,0}; // "}"
58 return new EscapeTransliterator(ID, UnicodeString(TRUE, PERLPRE, 3), UnicodeString(RBRACE[0]), 16, 1, TRUE, NULL);
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT};
834 case '}' : tokenType = RBRACE; break;
1005 if (token == RBRACE){
1006 match(RBRACE);
1011 if (token == RBRACE){
1012 match(RBRACE);
1019 if (!match(RBRACE)) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 124 assert children[-1].type == token.RBRACE
fixer_util.py 83 Leaf(token.RBRACE, u"]")])
111 Leaf(token.RBRACE, u"]")])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 124 assert children[-1].type == token.RBRACE
fixer_util.py 83 Leaf(token.RBRACE, u"]")])
111 Leaf(token.RBRACE, u"]")])
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 756 i::Token::RBRACE,
768 i::Token::RBRACE,
769 i::Token::RBRACE,
770 i::Token::RBRACE,
771 i::Token::RBRACE,
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
254 public static final int RBRACE=81;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py 752 if nodelist[1][0] == token.RBRACE:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
transformer.py 752 if nodelist[1][0] == token.RBRACE:
    [all...]

Completed in 422 milliseconds

1 2