Home
last modified time | relevance | path

Searched refs:indents (Results 1 – 25 of 32) sorted by relevance

12

/external/python/cpython2/Lib/
Dtokenize.py201 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 …]
Dtabnanny.py278 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)
Dtextwrap.py391 indents = _leading_whitespace_re.findall(text)
392 for indent in indents:
Ddoctest.py774 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/
Dtokenize.py213 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/
DEmitter.java108 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/
Dpylintrc16 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/webrtc/
Dpylintrc16 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/parameter-framework/upstream/parameter/
DElement.cpp89 size_t indents = depth; in dumpContent() local
91 while (indents--) { in dumpContent()
/external/libmojo/third_party/catapult/devil/
Dpylintrc67 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/chromium-trace/catapult/systrace/
Dpylintrc66 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/chromium-trace/catapult/dependency_manager/
Dpylintrc67 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/python/cpython2/Doc/library/
Dtabnanny.rst59 .. XXX document errprint, format_witnesses, Whitespace, check_equal, indents,
/external/chromium-trace/catapult/devil/
Dpylintrc67 # We use two spaces for indents, instead of the usual four spaces or tab.
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
DScannerImpl.java175 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/
DREADME58 reindent.py Change .py files to use 4-space indents.
/external/curl/packages/vms/
Dbuild_vms.com149 $! * Each level after that indents 4 characters.
/external/python/cpython2/Lib/idlelib/
DTODO.txt53 - new autoindent after colon even indents when the colon is in a comment!
DChangeLog900 ^ 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/
DCodingStyle.txt41 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/
Dsyntax-toc.txt324 To make lists look nice, you can wrap items with hanging indents:
/external/markdown/tests/markdown-test/
Dmarkdown-syntax.txt361 To make lists look nice, you can wrap items with hanging indents:
/external/markdown/MarkdownTest/Tests_2007/
DMarkdown Documentation - Syntax.text361 To make lists look nice, you can wrap items with hanging indents:
/external/markdown/tests/extensions-x-def_list/
Dmarkdown-syntax.txt361 To make lists look nice, you can wrap items with hanging indents:
/external/markdown/MarkdownTest/Tests_2004/
DMarkdown Documentation - Syntax.text361 To make lists look nice, you can wrap items with hanging indents:

12