Home
last modified time | relevance | path

Searched refs:IsInSet (Results 1 – 4 of 4) sorted by relevance

/llvm-project/third-party/unittest/googletest/src/
H A Dgtest-port.cc730 bool IsInSet(char ch, const char* str) { in IsInSet() function
739 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~"); in IsAsciiPunct()
741 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); } in IsRepeat()
742 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); } in IsAsciiWhiteSpace()
750 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape()
832 } else if (IsInSet(ch, "()[]{}|")) { in ValidateRegex()
842 prev_repeatable = !IsInSet(ch, "^$?*+"); in ValidateRegex()
H A Dgtest-internal-inl.h974 GTEST_API_ bool IsInSet(char ch, const char* str);
/llvm-project/polly/lib/CodeGen/
H A DBlockGenerators.cpp588 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduledSet); in buildContainsCondition()
589 Value *IsInSetExpr = ExprBuilder->create(IsInSet.copy());
684 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduleMultiPwAff.at(i)); in generateBeginStmtTrace()
685 Values.push_back(ExprBuilder->create(IsInSet.copy())); in generateBeginStmtTrace()
582 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduledSet); buildContainsCondition() local
678 isl::ast_expr IsInSet = RestrictedBuild.expr_from(ScheduleMultiPwAff.at(i)); generateBeginStmtTrace() local
/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp5391 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); }; runSROA() local