HomeSort by relevance Sort by last modified time
    Searched refs:INDENT (Results 51 - 75 of 410) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
tabnanny.py 62 Raised by tokeneater() if detecting an ambiguous indent.
274 INDENT = tokenize.INDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
286 # If an INDENT appears, setting check_equal is wrong, and will
287 # be undone when we see the INDENT.
290 elif type == INDENT:
295 msg = "indent not greater e.g. " + format_witnesses(witness)
308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT
324 msg = "indent not equal e.g. " + format_witnesses(witness
    [all...]
token.py 18 INDENT = 5
  /prebuilts/gdb/linux-x86/lib/python2.7/
tabnanny.py 62 Raised by tokeneater() if detecting an ambiguous indent.
274 INDENT = tokenize.INDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
286 # If an INDENT appears, setting check_equal is wrong, and will
287 # be undone when we see the INDENT.
290 elif type == INDENT:
295 msg = "indent not greater e.g. " + format_witnesses(witness)
308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT
324 msg = "indent not equal e.g. " + format_witnesses(witness
    [all...]
token.py 18 INDENT = 5
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tabnanny.py 62 Raised by tokeneater() if detecting an ambiguous indent.
274 INDENT = tokenize.INDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
286 # If an INDENT appears, setting check_equal is wrong, and will
287 # be undone when we see the INDENT.
290 elif type == INDENT:
295 msg = "indent not greater e.g. " + format_witnesses(witness)
308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT
324 msg = "indent not equal e.g. " + format_witnesses(witness
    [all...]
token.py 18 INDENT = 5
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tabnanny.py 62 Raised by tokeneater() if detecting an ambiguous indent.
274 INDENT = tokenize.INDENT
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
286 # If an INDENT appears, setting check_equal is wrong, and will
287 # be undone when we see the INDENT.
290 elif type == INDENT:
295 msg = "indent not greater e.g. " + format_witnesses(witness)
308 # assert check_equal # else no earlier NEWLINE, or an earlier INDENT
324 msg = "indent not equal e.g. " + format_witnesses(witness
    [all...]
token.py 18 INDENT = 5
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
token.py 16 INDENT = 5
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
token.py 18 INDENT = 5
  /external/python/cpython2/Lib/
token.py 16 INDENT = 5
  /external/python/cpython3/Lib/
token.py 18 INDENT = 5
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 89 import static dagger.internal.codegen.ErrorMessages.INDENT;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_metaclass.py 8 For one-liner classes ('class X: pass') there is no indent/dedent so
124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix
128 # find the first indent
131 if node.type == token.INDENT:
223 (suite.children[-2].type == token.INDENT and
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = u"; "
62 end = pytree.Leaf(token.INDENT, u"")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 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
54 the column of the next non-whitespace token will dictate indent vs
61 in indent level from one token to the next.
72 /** The stack of indent levels (column numbers) */
101 pushed on the stack, and one INDENT token is generated. If it
133 // if not a NEWLINE, doesn't signal indent/dedent work; just enqueue
163 var cpos = t.getCharPositionInLine(); // column dictates indent/dedent
171 // compare to last indent leve
    [all...]
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 8 INDENT = " "
13 def __init__(self, fileOrPath, indentwhite=INDENT, idlefunc=None):
35 def write(self, string, indent=True):
37 self._writeraw(escape(string), indent=indent)
55 self._writeraw(escape(string), indent=False)
57 def _writeraw(self, data, indent=True, strip=False):
59 if indent and self.needindent:
94 self.indent()
117 def indent(self) member in class:XMLWriter
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
XMLRecordWriter.java 249 writeString(INDENT);
266 private static final String INDENT = " ";
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
XMLRecordWriter.java 245 writeString(INDENT);
262 private static final String INDENT = " ";
  /external/libcap/
Make.Rules 71 INDENT := $(shell if [ -n "$$(which indent 2>/dev/null)" ]; then echo "| indent -kr" ; fi)
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_metaclass.py 8 For one-liner classes ('class X: pass') there is no indent/dedent so
124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix
128 # find the first indent
131 if node.type == token.INDENT:
223 (suite.children[-2].type == token.INDENT and
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = u"; "
62 end = pytree.Leaf(token.INDENT, u"")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_metaclass.py 8 For one-liner classes ('class X: pass') there is no indent/dedent so
124 """ If an INDENT is followed by a thing with a prefix then nuke the prefix
128 # find the first indent
131 if node.type == token.INDENT:
223 (suite.children[-2].type == token.INDENT and
fix_tuple_params.py 55 if suite[0].children[1].type == token.INDENT:
57 indent = suite[0].children[1].value
61 indent = "; "
62 end = pytree.Leaf(token.INDENT, "")
100 new_lines[0].prefix = indent
107 suite[0].children[i].prefix = indent
  /external/python/cpython3/Lib/test/
test_tokenize.py 49 INDENT ' ' (3, 0) (3, 4)
592 INDENT '\\t' (2, 0) (2, 1)
596 INDENT ' \\t' (3, 0) (3, 9)
764 INDENT ' ' (2, 0) (2, 2)
772 INDENT ' ' (3, 0) (3, 4)
782 INDENT ' ' (5, 0) (5, 4)
803 INDENT ' ' (2, 0) (2, 2)
839 INDENT ' ' (3, 0) (3, 2)
    [all...]

Completed in 1350 milliseconds

1 23 4 5 6 7 8 91011>>