Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp2181 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2187 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2220 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2223 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2227 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
H A DParseInit.cpp556 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
H A DParseStmt.cpp2525 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
H A DParseDeclCXX.cpp4495 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp4597 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4602 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4609 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4613 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
H A DSemaExprCXX.cpp8553 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
8558 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
H A DTreeTransform.h2372 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2376 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h2114 bool IsIfExists; member
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5546 bool IsIfExists, CXXScopeSpec &SS,
5550 bool IsIfExists,
5555 bool IsIfExists,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1671 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()