Searched refs:IsInSet (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/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);
|
| /llvm-project-15.0.7/polly/lib/CodeGen/ |
| H A D | BlockGenerators.cpp | 599 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduledSet); in buildContainsCondition() local 600 Value *IsInSetExpr = ExprBuilder->create(IsInSet.copy()); in buildContainsCondition() 694 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduleMultiPwAff.at(i)); in generateBeginStmtTrace() local 695 Values.push_back(ExprBuilder->create(IsInSet.copy())); in generateBeginStmtTrace()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | SROA.cpp | 4749 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); }; in runImpl() local 4750 Worklist.remove_if(IsInSet); in runImpl() 4751 PostPromotionWorklist.remove_if(IsInSet); in runImpl() 4752 llvm::erase_if(PromotableAllocas, IsInSet); in runImpl()
|