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

/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp294 static std::vector<std::string> unescapeJsonCommandLine(StringRef Command) { function in namespace:clang::tooling
305 TEST(unescapeJsonCommandLine, ReturnsEmptyArrayOnEmptyString) {
306 std::vector<std::string> Result = unescapeJsonCommandLine("");
310 TEST(unescapeJsonCommandLine, SplitsOnSpaces) {
311 std::vector<std::string> Result = unescapeJsonCommandLine("a b c");
318 TEST(unescapeJsonCommandLine, MungesMultipleSpaces) {
319 std::vector<std::string> Result = unescapeJsonCommandLine(" a b ");
325 TEST(unescapeJsonCommandLine, UnescapesBackslashCharacters) {
326 std::vector<std::string> Backslash = unescapeJsonCommandLine("a\\\\\\\\");
329 std::vector<std::string> Quote = unescapeJsonCommandLine("
[all...]

Completed in 735 milliseconds