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.cpp2243 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2249 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2282 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2286 Result.IsIfExists ? IfExistsBehavior::Parse : IfExistsBehavior::Skip; in ParseMicrosoftIfExistsCondition()
2291 !Result.IsIfExists ? IfExistsBehavior::Parse : IfExistsBehavior::Skip; in ParseMicrosoftIfExistsCondition()
H A DParseInit.cpp539 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
H A DParseStmt.cpp2610 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
H A DParseDeclCXX.cpp5057 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4508 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4513 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4520 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4524 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DSemaExprCXX.cpp7802 bool IsIfExists, in CheckMicrosoftIfExistsSymbol() argument
7808 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
H A DTreeTransform.h2647 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2651 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1002 bool IsIfExists; member
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h8765 bool IsIfExists, CXXScopeSpec &SS,
11130 bool IsIfExists,
11135 bool IsIfExists, CXXScopeSpec &SS,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1727 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()