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

/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/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp582 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;
1448 && !IsWhiteSpace( *p ) // whitespace
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp582 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;
1448 && !IsWhiteSpace( *p ) // whitespace
[all...]
/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/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h143 inline void TrailingObjects::setTrailingWhitespace(RenderText* whitespace) argument
145 ASSERT(whitespace);
146 m_whitespace = whitespace;
339 // ignorable whitespace should should also have line boxes.
414 // Clear out our character space bool, since inline <pre>s don't collapse whitespace
541 // have an effect on whitespace at the start of the line.
613 // Optimize for a common case. If we can't find whitespace after the list
868 // If the line needs the extra whitespace to be too long,
870 // additional whitespace.
893 // Didn't fit. Jump to the end unless there's still an opportunity to collapse whitespace
[all...]
/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/chromium_org/third_party/libxml/src/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/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 461 milliseconds