Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtCXX.h242 bool IsIfExists; variable
251 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
256 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
265 bool isIfExists() const { return IsIfExists; } in isIfExists()
268 bool isIfNotExists() const { return !IsIfExists; } in isIfNotExists()
/external/llvm-project/clang/include/clang/AST/
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()
/external/clang/lib/Parse/
DParser.cpp1907 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
1913 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
1941 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
1944 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
1948 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
DParseInit.cpp499 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
DParseStmt.cpp2203 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
DParseDeclCXX.cpp3959 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/external/llvm-project/clang/lib/Parse/
DParser.cpp2171 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
2177 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
2210 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
2213 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
2217 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
DParseInit.cpp550 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
DParseStmt.cpp2514 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
DParseDeclCXX.cpp4470 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/external/clang/lib/Sema/
DSemaStmt.cpp3806 bool IsIfExists, in BuildMSDependentExistsStmt() argument
3811 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
3818 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
3822 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
DSemaExprCXX.cpp7126 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
7136 IsIfExists? UPPC_IfExists in CheckMicrosoftIfExistsSymbol()
DTreeTransform.h1929 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
1933 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/external/llvm-project/clang/lib/Sema/
DSemaStmt.cpp4309 bool IsIfExists, in BuildMSDependentExistsStmt() argument
4314 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
4321 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
4325 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
DSemaExprCXX.cpp8478 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
8483 auto UPPC = IsIfExists ? UPPC_IfExists : UPPC_IfNotExists; in CheckMicrosoftIfExistsSymbol()
DTreeTransform.h2284 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
2288 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/external/clang/include/clang/Parse/
DParser.h1733 bool IsIfExists; member
/external/llvm-project/clang/include/clang/Parse/
DParser.h2128 bool IsIfExists; member
/external/clang/include/clang/Sema/
DSema.h4138 bool IsIfExists, CXXScopeSpec &SS,
4142 bool IsIfExists,
4147 bool IsIfExists,
/external/llvm-project/clang/include/clang/Sema/
DSema.h5402 bool IsIfExists, CXXScopeSpec &SS,
5406 bool IsIfExists,
5411 bool IsIfExists,
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp1670 S->IsIfExists = Record.readInt(); in VisitMSDependentExistsStmt()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1224 S->IsIfExists = Record[Idx++]; in VisitMSDependentExistsStmt()