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

/external/webkit/WebCore/platform/network/
H A DResourceResponseBase.cpp543 int nextCommaPosition2 = safeHeader.find(',', pos); local
544 if (nextCommaPosition2 >= 0)
545 pos += nextCommaPosition2 - pos + 1;
555 int nextCommaPosition2 = value.find(',', 0); local
556 if (nextCommaPosition2 >= 0) {
558 result.append(pair<String, String>(directive, trimToNextSeparator(value.substring(0, nextCommaPosition2).stripWhiteSpace())));

Completed in 93 milliseconds