Home
last modified time | relevance | path

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

/external/libmojo/base/android/java/src/org/chromium/base/
DCommandLine.java180 char currentQuote = noQuote; in tokenizeQuotedAruments() local
183 if ((currentQuote == noQuote && (c == singleQuote || c == doubleQuote)) in tokenizeQuotedAruments()
184 || c == currentQuote) { in tokenizeQuotedAruments()
189 currentQuote = currentQuote == noQuote ? c : noQuote; in tokenizeQuotedAruments()
191 } else if (currentQuote == noQuote && Character.isWhitespace(c)) { in tokenizeQuotedAruments()
202 if (currentQuote != noQuote) { in tokenizeQuotedAruments()