Home
last modified time | relevance | path

Searched refs:IsIfExists (Results 1 – 11 of 11) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h254 bool IsIfExists; variable
263 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
268 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
277 bool isIfExists() const { return IsIfExists; } in isIfExists()
280 bool isIfNotExists() const { return !IsIfExists; } in isIfNotExists()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2184 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2190 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2223 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2226 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2230 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
H A DParseInit.cpp556 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
H A DParseStmt.cpp2530 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
H A DParseDeclCXX.cpp4664 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4545 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4550 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4557 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4561 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DSemaExprCXX.cpp8631 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
8636 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
H A DTreeTransform.h2386 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2390 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2116 bool IsIfExists; member
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5597 bool IsIfExists, CXXScopeSpec &SS,
5601 bool IsIfExists,
5606 bool IsIfExists,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1681 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()