HomeSort by relevance Sort by last modified time
    Searched defs:whitespace (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 37 private boolean whitespace = false; field in class:DocumentBuilderFactory
144 * whitespace in element content (sometimes known loosely as
145 * 'ignorable whitespace') when parsing XML documents (see XML Rec
146 * 2.10). Note that only whitespace which is directly contained within
152 * @param whitespace true if the parser created must eliminate whitespace
157 public void setIgnoringElementContentWhitespace(boolean whitespace) {
158 this.whitespace = whitespace;
227 * parsers which ignore ignorable whitespace in element content
    [all...]
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner_test.go 183 const whitespace = " \t \n\n\n" // to separate tokens const
189 src = append(src, whitespace...)
222 whitespace_linecount := newlineCount(whitespace)
302 epos.Offset += len(e.lit) + len(whitespace)
  /prebuilts/go/linux-x86/src/go/scanner/
scanner_test.go 183 const whitespace = " \t \n\n\n" // to separate tokens const
189 src = append(src, whitespace...)
222 whitespace_linecount := newlineCount(whitespace)
302 epos.Offset += len(e.lit) + len(whitespace)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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...]
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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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...]
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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
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...]
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...]
  /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.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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...]
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
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...]
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.10/Lib/
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
254 whitespace removed.
265 Return a copy of the string s with leading whitespace removed.
275 Return a copy of the string s with trailing whitespace removed.
289 is not specified or is None, any whitespace string is a separator.
    [all...]
  /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...]
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
commands.c 80 static char *whitespace = " \t"; variable
163 args = strtok_r(args, whitespace, &nextarg);
167 args = nextarg + strspn(nextarg, whitespace);
173 args = strtok_r(args, whitespace, &nextarg);
181 args = nextarg + strspn(nextarg, whitespace);
578 idlist = strtok_r(args, whitespace, &nextarg);
582 args = nextarg + strspn(nextarg, whitespace);
588 idlist = strtok_r(args, whitespace, &nextarg);
664 args += strspn(args, whitespace);
666 segname = strtok_r(args, whitespace, &nextarg)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
Emitter.java 122 // - is it a whitespace?
127 private boolean whitespace; field in class:Emitter
176 // - is it a whitespace?
180 whitespace = true;
915 // Important whitespace combinations.
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h 256 //! Skip whitespace with SSE 4.2 pcmpistrm instruction, testing 16 8-byte characters at once.
258 // Fast return for single non-whitespace
273 static const char whitespace[16] = " \n\r\t"; local
274 const __m128i w = _mm_loadu_si128((const __m128i *)&whitespace[0]);
279 if (r != 0) { // some of characters is non-whitespace
280 #ifdef _MSC_VER // Find the index of first non-whitespace
293 //! Skip whitespace with SSE2 instructions, testing 16 8-byte characters at once.
295 // Fast return for single non-whitespace
328 if (r != 0) { // some of characters may be non-whitespace
329 #ifdef _MSC_VER // Find the index of first non-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...]
  /external/libxml2/include/libxml/
schemasInternals.h 549 * a whitespace-facet value of "preserve"
555 * a whitespace-facet value of "replace"
561 * a whitespace-facet value of "collapse"
831 int whitespace; member in struct:_xmlSchemaFacet
  /frameworks/base/tools/aapt/
Resource.cpp 2167 static const char whitespace[] = local
    [all...]
  /prebuilts/tools/common/m2/repository/com/puppycrawl/tools/checkstyle/5.9/
checkstyle-5.9.jar 

Completed in 506 milliseconds

1 2 3 4 5 6