HomeSort by relevance Sort by last modified time
    Searched full:indents (Results 1 - 25 of 71) sorted by null

1 2 3

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 208 indents = []
231 indents.append(tokval)
234 indents.pop()
238 elif startline and indents:
239 toks_append(indents[-1])
284 indents = [0]
344 if column > indents[-1]: # count indents or dedents
345 indents.append(column)
347 while column < indents[-1]
    [all...]
tabnanny.py 278 indents = [Whitespace("")]
293 if not indents[-1].less(thisguy):
294 witness = indents[-1].not_less_witness(thisguy)
297 indents.append(thisguy)
303 # equal to what's left at the top of the indents stack
311 del indents[-1]
319 # "indents" stack was seeded
322 if not indents[-1].equal(thisguy):
323 witness = indents[-1].not_equal_witness(thisguy)
textwrap.py 391 indents = _leading_whitespace_re.findall(text)
392 for indent in indents:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 208 indents = []
231 indents.append(tokval)
234 indents.pop()
238 elif startline and indents:
239 toks_append(indents[-1])
284 indents = [0]
344 if column > indents[-1]: # count indents or dedents
345 indents.append(column)
347 while column < indents[-1]
    [all...]
tabnanny.py 278 indents = [Whitespace("")]
293 if not indents[-1].less(thisguy):
294 witness = indents[-1].not_less_witness(thisguy)
297 indents.append(thisguy)
303 # equal to what's left at the top of the indents stack
311 del indents[-1]
319 # "indents" stack was seeded
322 if not indents[-1].equal(thisguy):
323 witness = indents[-1].not_equal_witness(thisguy)
textwrap.py 391 indents = _leading_whitespace_re.findall(text)
392 for indent in indents:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 213 indents = []
227 indents.append(tokval)
230 indents.pop()
234 elif startline and indents:
235 toks_append(indents[-1])
365 indents = [0]
420 if column > indents[-1]: # count indents or dedents
421 indents.append(column)
423 while column < indents[-1]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 213 indents = []
227 indents.append(tokval)
230 indents.pop()
234 elif startline and indents:
235 toks_append(indents[-1])
365 indents = [0]
420 if column > indents[-1]: # count indents or dedents
421 indents.append(column)
423 while column < indents[-1]
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/css/
prettify.css 37 ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
  /external/chromium_org/tools/gyp/pylib/gyp/
easy_xml.py 42 pretty: True if we want pretty printing with indents and new lines.
63 pretty: True if we want pretty printing with indents and new lines.
113 pretty: True if we want pretty printing with indents and new lines.
  /frameworks/base/core/java/com/android/internal/util/
IndentingPrintWriter.java 23 * Lightweight wrapper around {@link PrintWriter} that automatically indents
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_except.py 68 # and indents
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_except.py 68 # and indents
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.h 94 // multiple times to produce deeper indents.
  /external/protobuf/src/google/protobuf/io/
printer.h 90 // multiple times to produce deeper indents.
  /external/skia/tools/
jsondiff.py 15 TODO(epoger): Fix indentation in this file (2-space indents, not 4-space).
svndiff.py 16 TODO(epoger): Fix indentation in this file (2-space indents, not 4-space).
  /frameworks/base/core/java/android/text/style/
LeadingMarginSpan.java 96 * Constructor taking separate indents for the first and subsequent
  /external/clang/lib/AST/
ASTDumper.cpp 77 // Indents ( `, -. | )
91 /// Indents[i] indicates if another child exists at level i.
93 llvm::SmallVector<IndentType, 32> Indents;
320 // Print out the appropriate tree structure using the Indents vector.
321 // Example of tree and the Indents vector at each level.
338 for (SmallVectorImpl<IndentType>::const_iterator I = Indents.begin(),
339 E = Indents.end();
357 Indents.push_back(IT_Child);
361 Indents.pop_back();
368 Indents.back() = IT_LastChild
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.cpp 280 // Indents for the crosshatch on a scroll grip.
284 // Indents for the the slider track.
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
Toc.pm 168 # Calculate number of indents
170 # Assemble indents
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 43 # Outdent just indents a negative number of spaces.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js 235 var indents = {};
250 indents[i] = 1 + (indents[i] || 0);
258 for (var i in indents) {
259 if (indents[i] < onePercentFilterThreshold)
    [all...]
  /external/tinyxml/docs/
tutorial0.html 182 The file ``madeByHand3.xml`` looks exactly like this (including indents):<p>
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 213 // Indents the current line.

Completed in 931 milliseconds

1 2 3