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

  /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/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
whitespace.js 23 Filename: whitespace.js
35 writeHeaderToLog('Executing script: whitespace.js');
42 var whitespace = "\f\n\r\t\v "; variable
44 // be sure all whitespace is matched by \s
46 "'" + whitespace + "'.match(new RegExp('\\s+'))",
47 String([whitespace]), String(whitespace.match(new RegExp('\\s+'))));
49 // be sure all non-whitespace is matched by \S
54 // be sure all non-whitespace is not matched by \s
59 // be sure all whitespace is not matched by \
    [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...]
  /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/quake/quake/src/QW/gas2masm/
gas2masm.c 32 typedef enum {NOT_WHITESPACE, WHITESPACE, TOKEN_AVAILABLE, LINE_DONE, FILE_DONE, PARSED_OKAY} tokenstat;
766 tokenstat whitespace (char c) function
775 return WHITESPACE;
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 32 typedef enum {NOT_WHITESPACE, WHITESPACE, TOKEN_AVAILABLE, LINE_DONE, FILE_DONE, PARSED_OKAY} tokenstat;
766 tokenstat whitespace (char c) function
775 return WHITESPACE;
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
  /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/chromium/net/base/
net_util.cc 379 // Tokenize with whitespace characters.
420 STR whitespace; local
421 whitespace.push_back(' ');
422 whitespace.push_back('\t');
424 header.find_first_not_of(whitespace, param_begin - header.begin());
    [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...]
  /frameworks/base/tools/aapt/
Resource.cpp 1366 static const char whitespace[] = local
    [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
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 372 milliseconds