Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_linux.cpp28 static bool IsOneOf(char c, char c1, char c2) { in IsOneOf() function
45 CHECK(IsOneOf(*data_.current, '-', 'r')); in Next()
48 CHECK(IsOneOf(*data_.current, '-', 'w')); in Next()
50 CHECK(IsOneOf(*data_.current, '-', 'x')); in Next()
52 CHECK(IsOneOf(*data_.current, 's', 'p')); in Next()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILParser.cpp98 if (CurToken().IsOneOf({Token::amp, Token::star})) { in ParseUnaryExpression()
129 while (CurToken().IsOneOf({Token::l_square, Token::period, Token::arrow})) { in ParsePostfixExpression()
186 if (CurToken().IsOneOf( in ParsePrimaryExpression()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DDILLexer.h53 bool IsOneOf(llvm::ArrayRef<Kind> kinds) const { in IsOneOf() function
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp339 auto IsOneOf = [](StringRef subject, auto... list) { in getIsOmitted() local
343 if (IsOneOf(type, "IdentifierInfo *", "Expr *")) in getIsOmitted()
345 if (IsOneOf(type, "TypeSourceInfo *")) in getIsOmitted()
347 if (IsOneOf(type, "ParamIdx")) in getIsOmitted()
350 assert(IsOneOf(type, "unsigned", "int", "bool", "FunctionDecl *", in getIsOmitted()