Searched refs:trimToNextSeparator (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/network/
H A DResourceResponseBase.cpp517 static inline String trimToNextSeparator(const String& str) function in namespace:WebCore
531 String directive = trimToNextSeparator(safeHeader.substring(pos, nextEqualSignPosition - pos).stripWhiteSpace());
550 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(1, value.length() - 1).stripWhiteSpace())));
558 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(0, nextCommaPosition2).stripWhiteSpace())));
562 result.append(pair<String, String>(directive, trimToNextSeparator(value)));
568 result.append(pair<String, String>(trimToNextSeparator(safeHeader.substring(pos, nextCommaPosition - pos).stripWhiteSpace()), ""));
572 result.append(pair<String, String>(trimToNextSeparator(safeHeader.substring(pos, max - pos).stripWhiteSpace()), ""));

Completed in 34 milliseconds