HomeSort by relevance Sort by last modified time
    Searched refs:whitespace (Results 101 - 125 of 402) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 10 whitespace -- a string containing all characters considered whitespace
23 whitespace = ' \t\n\r\v\f' variable
34 printable = digits + letters + punctuation + whitespace
51 runs of whitespace characters are replaced by a single space
52 and leading and trailing whitespace are removed, otherwise
252 whitespace removed.
263 Return a copy of the string s with leading whitespace removed.
273 Return a copy of the string s with trailing whitespace removed.
287 is not specified or is None, any whitespace string is a separator
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /external/python/cpython2/Lib/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /prebuilts/go/darwin-x86/src/net/
nss_test.go 61 name: "whitespace",
  /prebuilts/go/linux-x86/src/net/
nss_test.go 61 name: "whitespace",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
fancy_getopt.py 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
454 # all-whitespace chunks at the end of a line can be discarded
456 # *any* whitespace, it is *all* whitespace)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
neon-ldst-es.s 61 @ PR 14987 and 14887: Allow for whitespace in the instruction.
  /build/blueprint/bpmodify/
bpmodify.go 36 flag.Var(targetedModules, "m", "comma or whitespace separated list of modules on which to operate")
37 flag.Var(addIdents, "a", "comma or whitespace separated list of identifiers to add")
38 flag.Var(removeIdents, "r", "comma or whitespace separated list of identifiers to remove")
  /build/blueprint/parser/
printer.go 184 // Print a single token, including any necessary comments or whitespace between
281 // Flush any pending whitespace, ignoring pending spaces if there is a pending newline
335 // Print whitespace to pad from column l to column max
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
printer.go 60 type whitespace struct { type
74 pending []whitespace // pending whitespace
135 p.pending = append(p.pending, whitespace{p.lastTok, kind /*text*/})
146 // eliminate semis and redundant whitespace
269 panic("adjacent tokens combine without whitespace")
315 // // whitespace is emitted.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
printer.go 60 type whitespace struct { type
74 pending []whitespace // pending whitespace
135 p.pending = append(p.pending, whitespace{p.lastTok, kind /*text*/})
146 // eliminate semis and redundant whitespace
269 panic("adjacent tokens combine without whitespace")
315 // // whitespace is emitted.
  /external/sfntly/cpp/src/test/tinyxml/
tinyxmlparser.cpp 582 if ( !trimWhiteSpace // certain tags always keep whitespace
583 || !condenseWhiteSpace ) // if true, whitespace is always kept
598 bool whitespace = false; local
607 whitespace = true;
612 whitespace = true;
617 // If we've found whitespace, add it before the
618 // new character. Any whitespace just becomes a space.
619 if ( whitespace )
622 whitespace = false;
    [all...]
  /external/tinyxml/
tinyxmlparser.cpp 561 if ( !trimWhiteSpace // certain tags always keep whitespace
562 || !condenseWhiteSpace ) // if true, whitespace is always kept
577 bool whitespace = false; local
586 whitespace = true;
591 whitespace = true;
596 // If we've found whitespace, add it before the
597 // new character. Any whitespace just becomes a space.
598 if ( whitespace )
601 whitespace = false;
1376 && !IsWhiteSpace( *p ) && *p != '\n' && *p != '\r' // whitespace
    [all...]
  /art/tools/
cpplint.py 126 "[whitespace/indent]".) Filters are evaluated left to right.
130 Examples: --filter=-whitespace,+whitespace/braces
131 --filter=whitespace,runtime/printf,+runtime/printf_format
140 the top-level categories like 'build' and 'whitespace' will
211 'whitespace/blank_line',
212 'whitespace/braces',
213 'whitespace/comma',
214 'whitespace/comments',
215 'whitespace/empty_loop_body'
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 19 // Blank lines are ignored. A line with only whitespace characters (excluding
95 // Comment character without preceding whitespace are ignored.
96 // With leading whitespace the Comment character becomes part of the
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 19 // Blank lines are ignored. A line with only whitespace characters (excluding
95 // Comment character without preceding whitespace are ignored.
96 // With leading whitespace the Comment character becomes part of the
  /prebuilts/go/darwin-x86/src/go/format/
format_test.go 106 // whitespace
  /prebuilts/go/linux-x86/src/go/format/
format_test.go 106 // whitespace
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_string.py 70 string.whitespace
test_strop.py 116 strop.whitespace
test_tokenize.py 70 whitespace after the colon. Note that we use hex escapes to make the
97 ... " def y(m): # A whitespace after the colon\\n"
  /external/python/cpython2/Lib/test/
test_strop.py 117 strop.whitespace

Completed in 931 milliseconds

1 2 3 45 6 7 8 91011>>