Searched refs:IsInSet (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-port.cc | 756 bool IsInSet(char ch, const char* str) { in IsInSet() function 765 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 767 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 768 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 776 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 858 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 868 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
H A D | gtest-internal-inl.h | 986 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-port-test.cc | 462 EXPECT_FALSE(IsInSet('\0', "")); in TEST() 463 EXPECT_FALSE(IsInSet('\0', "\0")); in TEST() 464 EXPECT_FALSE(IsInSet('\0', "a")); in TEST() 468 EXPECT_FALSE(IsInSet('a', "Ab")); in TEST() 469 EXPECT_FALSE(IsInSet('c', "")); in TEST() 471 EXPECT_TRUE(IsInSet('b', "bcd")); in TEST() 472 EXPECT_TRUE(IsInSet('b', "ab")); in TEST()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 5605 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); }; in runSROA() local 5606 Worklist.remove_if(IsInSet); in runSROA() 5607 PostPromotionWorklist.remove_if(IsInSet); in runSROA() 5608 llvm::erase_if(PromotableAllocas, IsInSet); in runSROA()
|