Searched refs:IsInSet (Results 1 – 3 of 3) sorted by relevance
/netbsd/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
H A D | gtest-port.cc | 769 bool IsInSet(char ch, const char* str) { in IsInSet() function 778 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct() 780 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat() 781 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace() 789 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape() 859 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex() 869 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
|
H A D | gtest-internal-inl.h | 958 GTEST_API_ bool IsInSet(char ch, const char* str);
|
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | SROA.cpp | 4764 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); }; in runImpl() local 4765 Worklist.remove_if(IsInSet); in runImpl() 4766 PostPromotionWorklist.remove_if(IsInSet); in runImpl() 4767 llvm::erase_if(PromotableAllocas, IsInSet); in runImpl()
|