Searched defs:whitespace (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A Dwhitespace.js23 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 i
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags_reporting.cc136 // 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]))
[all...]
/external/open-vcdiff/gflags/src/
H A Dgflags_reporting.cc136 // 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]))
[all...]
/external/quake/quake/src/QW/gas2masm/
H A Dgas2masm.c766 tokenstat whitespace (char c) function
793 if ((stat = whitespace (c)) == LINE_DONE)
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
/external/quake/quake/src/WinQuake/gas2masm/
H A Dgas2masm.c766 tokenstat whitespace (char c) function
793 if ((stat = whitespace (c)) == LINE_DONE)
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
/external/tinyxml/
H A Dtinyxmlparser.cpp561 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/
H A Dgrxmldoc.cpp487 // 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 fro
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLTreeBuilder.cpp304 Vector<UChar> whitespace; local
308 whitespace.append(cc);
310 // Returning the null string when there aren't any whitespace
313 if (whitespace.isEmpty())
315 return String::adopt(whitespace);
2551 // non-whitespace characters.
2575 // non-whitespace characters.
/external/chromium/net/base/
H A Dnet_util.cc394 // 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());
/external/libxml2/include/libxml/
H A DschemasInternals.h549 * 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/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 897 milliseconds