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

/external/webkit/Source/WebCore/platform/network/
H A DResourceResponseBase.cpp653 size_t nextCommaPosition2 = safeHeader.find(',', pos); local
654 if (nextCommaPosition2 != notFound)
655 pos += nextCommaPosition2 - pos + 1;
665 size_t nextCommaPosition2 = value.find(',', 0); local
666 if (nextCommaPosition2 != notFound) {
668 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(0, nextCommaPosition2).stripWhiteSpace())));

Completed in 62 milliseconds