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

1 23 4 5 6 7 8 91011>>

  /external/r8/src/test/java/com/android/tools/r8/utils/
ArtErrorParser.java 44 public void whitespace() { method in class:ArtErrorParser.ParseInput
243 input.whitespace();
246 input.whitespace();
251 input.whitespace();
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
handler.py 168 def ignorableWhitespace(self, whitespace):
169 """Receive notification of ignorable whitespace in element content.
172 of ignorable whitespace (see the W3C XML 1.0 recommendation,
176 SAX parsers may return all contiguous whitespace in a single
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
handler.py 168 def ignorableWhitespace(self, whitespace):
169 """Receive notification of ignorable whitespace in element content.
172 of ignorable whitespace (see the W3C XML 1.0 recommendation,
176 SAX parsers may return all contiguous whitespace in a single
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 168 def ignorableWhitespace(self, whitespace):
169 """Receive notification of ignorable whitespace in element content.
172 of ignorable whitespace (see the W3C XML 1.0 recommendation,
176 SAX parsers may return all contiguous whitespace in a single
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 168 def ignorableWhitespace(self, whitespace):
169 """Receive notification of ignorable whitespace in element content.
172 of ignorable whitespace (see the W3C XML 1.0 recommendation,
176 SAX parsers may return all contiguous whitespace in a single
  /device/google/wahoo/vibrator/
service.cpp 54 const std::string& whitespace = " \t") {
55 const auto str_begin = str.find_first_not_of(whitespace);
60 const auto str_end = str.find_last_not_of(whitespace);
  /prebuilts/go/darwin-x86/src/go/printer/
printer.go 26 type whiteSpace byte
29 ignore = whiteSpace(0)
30 blank = whiteSpace(' ')
31 vtab = whiteSpace('\v')
32 newline = whiteSpace('\n')
33 formfeed = whiteSpace('\f')
34 indent = whiteSpace('>')
35 unindent = whiteSpace('<')
64 lastTok token.Token // last token printed (token.ILLEGAL if it's whitespace)
66 wsbuf []whiteSpace // delayed white spac
    [all...]
  /prebuilts/go/linux-x86/src/go/printer/
printer.go 26 type whiteSpace byte
29 ignore = whiteSpace(0)
30 blank = whiteSpace(' ')
31 vtab = whiteSpace('\v')
32 newline = whiteSpace('\n')
33 formfeed = whiteSpace('\f')
34 indent = whiteSpace('>')
35 unindent = whiteSpace('<')
64 lastTok token.Token // last token printed (token.ILLEGAL if it's whitespace)
66 wsbuf []whiteSpace // delayed white spac
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py 122 "[whitespace/indent]".) Filters are evaluated left to right.
126 Examples: --filter=-whitespace,+whitespace/braces
127 --filter=whitespace,runtime/printf,+runtime/printf_format
136 the top-level categories like 'build' and 'whitespace' will
207 'whitespace/blank_line',
208 'whitespace/braces',
209 'whitespace/comma',
210 'whitespace/comments',
211 'whitespace/empty_loop_body'
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
doc.go 109 \s whitespace (== [\t\n\f\r ])
110 \S not whitespace (== [^\t\n\f\r ])
125 [[:space:]] whitespace (== [\t\n\v\f\r ])
  /prebuilts/go/linux-x86/src/regexp/syntax/
doc.go 109 \s whitespace (== [\t\n\f\r ])
110 \S not whitespace (== [^\t\n\f\r ])
125 [[:space:]] whitespace (== [\t\n\v\f\r ])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
stringold.py 12 whitespace -- a string containing all characters considered whitespace
26 whitespace = ' \t\n\r\v\f' variable
78 whitespace removed.
87 Return a copy of the string s with leading whitespace removed.
96 Return a copy of the string s with trailing whitespace
109 maxsplit words If sep is not specified, any whitespace string
374 join. Note that this replaces runs of whitespace characters by
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace
    [all...]
  /external/fonttools/Lib/fontTools/misc/
psLib.py 7 from string import whitespace
12 skipwhiteRE = re.compile("[%s]*" % whitespace)
13 endofthingPat = "[^][(){}<>/%%%s]*" % whitespace
35 hexstringRE = re.compile("<[%s0-9A-Fa-f]*>" % whitespace)
  /external/llvm/test/MC/Mips/
user-macro-argument-separation.s 11 # imm and rs are deliberately swapped to test whitespace separated arguments.
  /external/python/cpython2/Lib/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
stringold.py 12 whitespace -- a string containing all characters considered whitespace
26 whitespace = ' \t\n\r\v\f' variable
78 whitespace removed.
87 Return a copy of the string s with leading whitespace removed.
96 Return a copy of the string s with trailing whitespace
109 maxsplit words If sep is not specified, any whitespace string
374 join. Note that this replaces runs of whitespace characters by
425 # It also defines values for whitespace, lowercase and uppercase
429 from strop import maketrans, lowercase, uppercase, whitespace
    [all...]
  /external/selinux/mcstrans/src/
mcstrans.c 78 char *whitespace; member in struct:word_group
316 free(group->whitespace);
340 group->whitespace = strdup(" ");
341 if (!group->whitespace) {
667 trim(char *str, const char *whitespace) {
670 while (p > str && strchr(whitespace, *(p-1)) != NULL)
676 triml(char *str, const char *whitespace) {
679 while (*p && (strchr(whitespace, *p) != NULL))
731 /* zap leading whitespace */
741 /* zap trailing whitespace */
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
  /prebuilts/gdb/linux-x86/lib/python2.7/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shlex.py 43 self.whitespace = ' \t\r\n'
137 elif nextchar in self.whitespace:
139 print "shlex: I see whitespace in whitespace state"
203 elif nextchar in self.whitespace:
205 print "shlex: I see whitespace in word state"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 30 # Hardcode the recognized whitespace characters to the US-ASCII
31 # whitespace characters. The main reason for doing this is that in
32 # ISO-8859-1, 0xa0 is non-breaking whitespace, so in certain locales
33 # that character winds up in string.whitespace. Respecting
34 # string.whitespace in those cases would 1) make textwrap treat 0xa0 the
35 # same as any other whitespace char, which is clearly wrong (it's a
63 Replace all whitespace characters in the input text by spaces
79 Drop leading and trailing whitespace from lines.
96 r'(\s+|' # any whitespace
149 Munge whitespace in text: expand tabs and convert all other
    [all...]
  /external/Microsoft-GSL/
CONTRIBUTING.md 29 * To avoid line ending issues, set `autocrlf = input` and `whitespace = cr-at-eol` in your git configuration
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js 34 * so that whitespace etc... can go to the parser on a "hidden" channel.

Completed in 511 milliseconds

1 23 4 5 6 7 8 91011>>