Home
last modified time | relevance | path

Searched refs:prev_escape (Results 1 – 1 of 1) sorted by relevance

/external/cronet/net/http/
Dhttp_util.cc502 bool prev_escape = false; in UnquoteImpl() local
505 if (c == '\\' && !prev_escape) { in UnquoteImpl()
506 prev_escape = true; in UnquoteImpl()
509 if (strict_quotes && !prev_escape && IsQuote(c)) in UnquoteImpl()
511 prev_escape = false; in UnquoteImpl()
516 if (strict_quotes && prev_escape) in UnquoteImpl()