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

1 2

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 18 #define DEDENT 6
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 18 #define DEDENT 6
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 15 DEDENT = 6
tokenize.py 229 elif toknum == DEDENT:
429 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
494 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 15 DEDENT = 6
tokenize.py 229 elif toknum == DEDENT:
429 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
494 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
phystokens.py 77 ws_tokens = [token.INDENT, token.DEDENT, token.NEWLINE, tokenize.NL]
parser.py 114 elif toktype == token.DEDENT:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 30 DEDENT '' (4, 0) (4, 0)
551 DEDENT '' (4, 0) (4, 0)
552 DEDENT '' (4, 0) (4, 0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tokenize.py 30 DEDENT '' (4, 0) (4, 0)
551 DEDENT '' (4, 0) (4, 0)
552 DEDENT '' (4, 0) (4, 0)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tabnanny.py 275 DEDENT = tokenize.DEDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
299 elif type == DEDENT:
token.py 19 DEDENT = 6
tokenize.py 233 elif toknum == DEDENT:
353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
pyclbr.py 45 from token import NAME, DEDENT, OP
156 if tokentype == DEDENT:
inspect.py 661 elif type == tokenize.DEDENT:
663 # the end of matching indent/dedent pairs end a block
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tabnanny.py 275 DEDENT = tokenize.DEDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
299 elif type == DEDENT:
token.py 19 DEDENT = 6
tokenize.py 233 elif toknum == DEDENT:
353 yield (DEDENT, '', (lnum, pos), (lnum, pos), line)
418 yield (DEDENT, '', (lnum, 0), (lnum, 0), '')
pyclbr.py 45 from token import NAME, DEDENT, OP
156 if tokentype == DEDENT:
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 32 This is an interesting lexical problem because multiple DEDENT
41 Here the "b" token on the left edge signals that a DEDENT is needed
44 ... 1 COLON NEWLINE INDENT PRINT a NEWLINE DEDENT b ASSIGN 3 ...
49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token
53 then check against stack for indent vs dedent. If LEADING_WS, then
55 dedent. The column of the next real token is number of spaces
63 A queue of tokens is built up to hold multiple DEDENT tokens that
104 off, and for each number popped off a DEDENT token is
105 generated. At the end of the file, a DEDENT token is generated
133 // if not a NEWLINE, doesn't signal indent/dedent work; just enqueu
    [all...]
Python.g 44 * to do my version of the whole nasty INDENT/DEDENT issue just so I
63 DEDENT;
254 | NEWLINE INDENT (stmt)+ DEDENT
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 8 For one-liner classes ('class X: pass') there is no indent/dedent so
137 if isinstance(node, Leaf) and node.type != token.DEDENT:
224 suite.children[-1].type == token.DEDENT):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_metaclass.py 8 For one-liner classes ('class X: pass') there is no indent/dedent so
137 if isinstance(node, Leaf) and node.type != token.DEDENT:
224 suite.children[-1].type == token.DEDENT):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 35 skip = set((token.NEWLINE, token.INDENT, token.DEDENT))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
patcomp.py 35 skip = set((token.NEWLINE, token.INDENT, token.DEDENT))

Completed in 1220 milliseconds

1 2