Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h255 bool IsIfExists; variable
264 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
269 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
278 bool isIfExists() const { return IsIfExists; } in isIfExists()
281 bool isIfNotExists() const { return !IsIfExists; } in isIfNotExists()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2328 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2334 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2367 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2370 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2374 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
H A DParseInit.cpp571 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
H A DParseStmt.cpp2769 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
H A DParseDeclCXX.cpp4913 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4674 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4679 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4686 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4690 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DSemaExprCXX.cpp8972 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
8977 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
H A DTreeTransform.h2588 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2592 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2172 bool IsIfExists; member
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6175 bool IsIfExists, CXXScopeSpec &SS,
6179 bool IsIfExists,
6184 bool IsIfExists,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1701 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()