Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtCXX.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-14-stable/contrib/llvm-project/clang/lib/Parse/
HDParser.cpp2352 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2358 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2391 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2394 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2398 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
HDParseInit.cpp604 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
HDParseStmt.cpp2784 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
HDParseDeclCXX.cpp5184 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaStmt.cpp4376 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4381 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4388 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4392 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
HDSemaExprCXX.cpp9194 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
9199 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
HDTreeTransform.h2614 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2618 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h8490 bool IsIfExists, CXXScopeSpec &SS,
10913 bool IsIfExists,
10918 bool IsIfExists, CXXScopeSpec &SS,
/freebsd-14-stable/contrib/llvm-project/clang/include/clang/Parse/
HDParser.h2230 bool IsIfExists; member
/freebsd-14-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp1708 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()