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

1 2

  /system/core/libcutils/
cpu_info.c 33 char* whitespace; local
52 // skip colon and whitespace
55 // truncate trailing whitespace
61 whitespace = strchr(chp, ' ');
62 if (whitespace)
63 *whitespace = 0;
64 whitespace = strchr(chp, '\t');
65 if (whitespace)
66 *whitespace = 0;
67 whitespace = strchr(chp, '\r')
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 136 // Find the last whitespace on this 80-char line
137 int whitespace = kLineLength-chars_in_line-1; // < 80 chars/line local
138 while ( whitespace > 0 && !isspace(c_string[whitespace]) ) {
139 --whitespace;
141 if (whitespace <= 0) {
142 // Couldn't find any whitespace to make a line break. Just dump the
148 final_string += string(c_string, whitespace);
149 chars_in_line += whitespace;
150 while (isspace(c_string[whitespace])) ++whitespace
    [all...]
  /external/open-vcdiff/gflags/src/
gflags_reporting.cc 136 // Find the last whitespace on this 80-char line
137 int whitespace = kLineLength-chars_in_line-1; // < 80 chars/line local
138 while ( whitespace > 0 && !isspace(c_string[whitespace]) ) {
139 --whitespace;
141 if (whitespace <= 0) {
142 // Couldn't find any whitespace to make a line break. Just dump the
148 final_string += string(c_string, whitespace);
149 chars_in_line += whitespace;
150 while (isspace(c_string[whitespace])) ++whitespace
    [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...]
  /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/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/net/base/
net_util.cc 394 // Tokenize with whitespace characters.
436 STR whitespace; local
437 whitespace.push_back(' ');
438 whitespace.push_back('\t');
440 header.find_first_not_of(whitespace, param_begin - header.begin());
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 1591 static const char whitespace[] = local
    [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
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /prebuilts/tools/common/m2/internal/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/m2/internal/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 

Completed in 741 milliseconds

1 2