Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtCXX.h236 bool IsIfExists; variable
245 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
250 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
259 bool isIfExists() const { return IsIfExists; } in isIfExists()
262 bool isIfNotExists() const { return !IsIfExists; } in isIfNotExists()
/external/clang/lib/Parse/
DParser.cpp1781 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
1787 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
1814 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
1817 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
1821 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
DParseInit.cpp507 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
DParseStmt.cpp2631 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
DParseDeclCXX.cpp3322 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/external/clang/lib/Sema/
DSemaStmt.cpp3102 bool IsIfExists, in BuildMSDependentExistsStmt() argument
3107 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
3114 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
3118 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
DSemaExprCXX.cpp5741 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
5751 IsIfExists? UPPC_IfExists in CheckMicrosoftIfExistsSymbol()
DTreeTransform.h1430 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
1434 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/external/clang/include/clang/Parse/
DParser.h1531 bool IsIfExists; member
/external/clang/include/clang/Sema/
DSema.h3495 bool IsIfExists, CXXScopeSpec &SS,
3499 bool IsIfExists,
3504 bool IsIfExists,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1168 S->IsIfExists = Record[Idx++]; in VisitMSDependentExistsStmt()