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

1 2 3

  /system/core/libcutils/
cpu_info.c 33 char* whitespace; local
51 // skip colon and whitespace
54 // truncate trailing whitespace
60 whitespace = strchr(chp, ' ');
61 if (whitespace)
62 *whitespace = 0;
63 whitespace = strchr(chp, '\t');
64 if (whitespace)
65 *whitespace = 0;
66 whitespace = strchr(chp, '\r')
    [all...]
  /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...]
  /external/fonttools/Lib/fontTools/misc/
psLib.py 7 from string import whitespace namespace
12 skipwhiteRE = re.compile("[%s]*" % whitespace)
13 endofthingPat = "[^][(){}<>/%%%s]*" % whitespace
35 hexstringRE = re.compile("<[%s0-9A-Fa-f]*>" % whitespace)
  /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 namespace
    [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
528 from strop import maketrans, lowercase, uppercase, whitespace namespace
    [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 namespace
    [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
528 from strop import maketrans, lowercase, uppercase, whitespace namespace
    [all...]
  /external/chromium_org/third_party/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/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/srec/tools/grxmlcompile/
grxmldoc.cpp 487 // Strip leading and trailing whitespace
494 const char* const whitespace = " \t\r\n\v\f"; local
496 std::string word; // Words are whitespace separated
498 cdata.erase(0, cdata.find_first_not_of(whitespace) );
499 cdata.erase(cdata.find_last_not_of(whitespace) + 1);
507 begIdx = cdata.find_first_not_of(whitespace);
512 endIdx = cdata.find_first_of (whitespace, begIdx);
542 begIdx = cdata.find_first_not_of (whitespace, endIdx);
548 // In particular, do not strip whitespace from tag cdata.
681 // NB Do not strip whitespace from tag cdat
    [all...]
  /external/chromium_org/third_party/libxml/src/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
  /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 1994 static const char whitespace[] = local
    [all...]
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/m2/repository/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
jaxen-1.1.6.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-utils-3.0.17.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/3.0/
plexus-utils-3.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/3.0.7/
plexus-utils-3.0.7.jar 

Completed in 504 milliseconds

1 2 3