Searched refs:LongStr (Results 1 – 2 of 2) sorted by relevance
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 355 StringRef LongStr("hellx xello hell ello world foo bar hello"); in TEST() local 356 EXPECT_EQ(36U, LongStr.find("hello")); in TEST() 357 EXPECT_EQ(28U, LongStr.find("foo")); in TEST() 358 EXPECT_EQ(12U, LongStr.find("hell", 2)); in TEST() 359 EXPECT_EQ(0U, LongStr.find("")); in TEST()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 425 StringRef LongStr("hellx xello hell ello world foo bar hello HELLO"); in TEST() local 459 {LongStr, "hello", 0U, 36U, 36U}, in TEST() 460 {LongStr, "foo", 0U, 28U, 28U}, in TEST() 461 {LongStr, "hell", 2U, 12U, 12U}, in TEST() 462 {LongStr, "HELL", 2U, 42U, 12U}, in TEST() 463 {LongStr, "", 0U, 0U, 0U}}; in TEST()
|