| 327 | } |
| 328 | |
| 329 | int StringArray::addTokens (StringRef text, const bool preserveQuotedStrings) |
| 330 | { |
| 331 | return addTokens (text, " \n\r\t", preserveQuotedStrings ? "\"" : ""); |
| 332 | } |
| 333 | |
| 334 | int StringArray::addTokens (StringRef text, StringRef breakCharacters, StringRef quoteCharacters) |
| 335 | { |
no test coverage detected