OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:messUp
(Results
1 - 5
of
5
) sorted by null
/external/clang/unittests/Format/
FormatTestUtils.h
23
inline std::string
messUp
(llvm::StringRef Code) {
FormatTestProto.cpp
41
EXPECT_EQ(Code.str(), format(test::
messUp
(Code)));
FormatTestJava.cpp
49
EXPECT_EQ(Code.str(), format(test::
messUp
(Code), Style));
FormatTestJS.cpp
52
std::string result = format(test::
messUp
(Code), Style);
[
all
...]
FormatTest.cpp
65
EXPECT_EQ(Code.str(), format(test::
messUp
(Code), Style));
71
format(test::
messUp
(Code), Style, IC_ExpectIncomplete));
92
TEST_F(FormatTest,
MessUp
) {
93
EXPECT_EQ("1 2 3", test::
messUp
("1 2 3"));
94
EXPECT_EQ("1 2 3\n", test::
messUp
("1\n2\n3\n"));
95
EXPECT_EQ("a\n//b\nc", test::
messUp
("a\n//b\nc"));
96
EXPECT_EQ("a\n#b\nc", test::
messUp
("a\n#b\nc"));
97
EXPECT_EQ("a\n#b c d\ne", test::
messUp
("a\n#b\\\nc\\\nd\ne"));
[
all
...]
Completed in 2380 milliseconds