/external/python/cpython2/Lib/ |
D | tokenize.py | 201 indents = [] 211 indents.append(token) 214 indents.pop() 219 elif startline and indents: 220 indent = indents[-1] 234 indents = [] 254 indents.append(tokval) 257 indents.pop() 261 elif startline and indents: 262 toks_append(indents[-1]) [all …]
|
D | tabnanny.py | 278 indents = [Whitespace("")] 293 if not indents[-1].less(thisguy): 294 witness = indents[-1].not_less_witness(thisguy) 297 indents.append(thisguy) 311 del indents[-1] 322 if not indents[-1].equal(thisguy): 323 witness = indents[-1].not_equal_witness(thisguy)
|
D | textwrap.py | 391 indents = _leading_whitespace_re.findall(text) 392 for indent in indents:
|
D | doctest.py | 774 indents = [len(indent) for indent in self._INDENT_RE.findall(s)] 775 if len(indents) > 0: 776 return min(indents)
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 213 indents = [] 227 indents.append(tokval) 230 indents.pop() 234 elif startline and indents: 235 toks_append(indents[-1]) 367 indents = [0] 422 if column > indents[-1]: # count indents or dedents 423 indents.append(column) 425 while column < indents[-1]: 426 if column not in indents: [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/ |
D | Emitter.java | 108 private final ArrayStack<Integer> indents; field in Emitter 165 this.indents = new ArrayStack<Integer>(10); in Emitter() 262 indents.push(indent); in increaseIndent() 425 indent = indents.pop(); in expectScalar() 444 indent = indents.pop(); in expect() 461 indent = indents.pop(); in expect() 498 indent = indents.pop(); in expect() 521 indent = indents.pop(); in expect() 591 indent = indents.pop(); in expect() 624 indent = indents.pop(); in expect()
|
/external/libyuv/files/ |
D | pylintrc | 16 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/webrtc/ |
D | pylintrc | 16 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/parameter-framework/upstream/parameter/ |
D | Element.cpp | 89 size_t indents = depth; in dumpContent() local 91 while (indents--) { in dumpContent()
|
/external/libmojo/third_party/catapult/devil/ |
D | pylintrc | 67 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/chromium-trace/catapult/systrace/ |
D | pylintrc | 66 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/chromium-trace/catapult/dependency_manager/ |
D | pylintrc | 67 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/python/cpython2/Doc/library/ |
D | tabnanny.rst | 59 .. XXX document errprint, format_witnesses, Whitespace, check_equal, indents,
|
/external/chromium-trace/catapult/devil/ |
D | pylintrc | 67 # We use two spaces for indents, instead of the usual four spaces or tab.
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/ |
D | ScannerImpl.java | 175 private ArrayStack<Integer> indents; field in ScannerImpl 215 this.indents = new ArrayStack<Integer>(10); in ScannerImpl() 551 this.indent = this.indents.pop(); in unwindIndent() 561 this.indents.push(this.indent); in addIndent()
|
/external/python/cpython2/Tools/scripts/ |
D | README | 58 reindent.py Change .py files to use 4-space indents.
|
/external/curl/packages/vms/ |
D | build_vms.com | 149 $! * Each level after that indents 4 characters.
|
/external/python/cpython2/Lib/idlelib/ |
D | TODO.txt | 53 - new autoindent after colon even indents when the colon is in a comment!
|
D | ChangeLog | 900 ^ indents to caret 902 ^ indents to caret 904 ^ indents to caret 989 including Format Paragraph, plus subtler ones involving smart indents and
|
/external/syslinux/doc/ |
D | CodingStyle.txt | 41 In short, 8-char indents make things easier to read, and have the added 524 options "-kr -i8" (stands for "K&R, 8 character indents"), or use 525 "scripts/Lindent", which indents in the latest style.
|
/external/markdown/tests/extensions-x-toc/ |
D | syntax-toc.txt | 324 To make lists look nice, you can wrap items with hanging indents:
|
/external/markdown/tests/markdown-test/ |
D | markdown-syntax.txt | 361 To make lists look nice, you can wrap items with hanging indents:
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Markdown Documentation - Syntax.text | 361 To make lists look nice, you can wrap items with hanging indents:
|
/external/markdown/tests/extensions-x-def_list/ |
D | markdown-syntax.txt | 361 To make lists look nice, you can wrap items with hanging indents:
|
/external/markdown/MarkdownTest/Tests_2004/ |
D | Markdown Documentation - Syntax.text | 361 To make lists look nice, you can wrap items with hanging indents:
|