Lines Matching refs:string
196 std::string OldName = Param.OldName.empty() ? "a::Foo" : Param.OldName; in TEST_P()
197 std::string NewName = Param.NewName.empty() ? "b::Bar" : Param.NewName; in TEST_P()
198 std::string Actual = runClangRenameOnCode(Param.Before, OldName, NewName); in TEST_P()
305 std::string Actual = in TEST_P()
401 std::string Actual = in TEST_P()
407 std::string Before = R"( in TEST_F()
423 std::string Expected = R"( in TEST_F()
439 std::string After = runClangRenameOnCode(Before, "Old", "New"); in TEST_F()
444 std::string Before = R"( in TEST_F()
456 std::string Expected = R"( in TEST_F()
468 std::string After = runClangRenameOnCode(Before, "Old", "New"); in TEST_F()
473 std::string Before = R"( in TEST_F()
487 std::string Expected = R"( in TEST_F()
501 std::string After = runClangRenameOnCode(Before, "ns::Old", "ns::New"); in TEST_F()
506 std::string Before = R"( in TEST_F()
524 std::string Expected = R"( in TEST_F()
542 std::string After = runClangRenameOnCode(Before, "ns::Old", "ns::New"); in TEST_F()
549 std::string Before = R"( in TEST_F()
571 std::string Expected = R"( in TEST_F()
593 std::string After = runClangRenameOnCode(Before, "ns::Old", "ns::New"); in TEST_F()
598 std::string Before = R"( in TEST_F()
613 std::string Expected = R"( in TEST_F()
628 std::string After = runClangRenameOnCode(Before, "ns::Old", "::new_ns::New"); in TEST_F()
633 std::string Before = R"( in TEST_F()
653 std::string Expected = R"( in TEST_F()
673 std::string After = runClangRenameOnCode(Before, "ns::Old", "::new_ns::New"); in TEST_F()
678 std::string Before = R"( in TEST_F()
690 std::string Expected = R"( in TEST_F()
702 std::string After = runClangRenameOnCode(Before, "foo::Old", "foo::Old"); in TEST_F()
707 std::string Before = R"( in TEST_F()
719 std::string Expected = R"( in TEST_F()
731 std::string After = runClangRenameOnCode(Before, "foo::Old", "::foo::Old"); in TEST_F()
736 std::string Before = R"( in TEST_F()
748 std::string Expected = R"( in TEST_F()
760 std::string After = runClangRenameOnCode(Before, "::foo::Old", "::foo::Old"); in TEST_F()
765 std::string Before = R"( in TEST_F()
772 std::string Expected = R"( in TEST_F()
779 std::string After = runClangRenameOnCode(Before, "a::A", "b::B"); in TEST_F()
784 std::string Before = R"( in TEST_F()
792 std::string Expected = R"( in TEST_F()
800 std::string After = runClangRenameOnCode(Before, "S::a", "S::b"); in TEST_F()
806 std::string Before = R"( in TEST_F()
809 std::string Expected = R"( in TEST_F()
812 std::string After = runClangRenameOnCode(Before, "a::A", "b::B"); in TEST_F()