Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtCXX.h237 bool IsIfExists; variable
246 MSDependentExistsStmt(SourceLocation KeywordLoc, bool IsIfExists, in MSDependentExistsStmt() argument
251 KeywordLoc(KeywordLoc), IsIfExists(IsIfExists), in MSDependentExistsStmt()
260 bool isIfExists() const { return IsIfExists; } in isIfExists()
263 bool isIfNotExists() const { return !IsIfExists; } in isIfNotExists()
/external/clang/lib/Parse/
DParser.cpp1885 Result.IsIfExists = Tok.is(tok::kw___if_exists); in ParseMicrosoftIfExistsCondition()
1891 << (Result.IsIfExists? "__if_exists" : "__if_not_exists"); in ParseMicrosoftIfExistsCondition()
1919 Result.IsIfExists, Result.SS, in ParseMicrosoftIfExistsCondition()
1922 Result.Behavior = Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
1926 Result.Behavior = !Result.IsIfExists ? IEB_Parse : IEB_Skip; in ParseMicrosoftIfExistsCondition()
DParseInit.cpp505 << Result.IsIfExists; in ParseMicrosoftIfExistsBraceInitializer()
DParseStmt.cpp2155 Result.IsIfExists, in ParseMicrosoftIfExistsStatement()
DParseDeclCXX.cpp3902 << Result.IsIfExists; in ParseMicrosoftIfExistsClassDeclaration()
/external/clang/lib/Sema/
DSemaStmt.cpp3738 bool IsIfExists, in BuildMSDependentExistsStmt() argument
3743 return new (Context) MSDependentExistsStmt(KeywordLoc, IsIfExists, in BuildMSDependentExistsStmt()
3750 bool IsIfExists, in ActOnMSDependentExistsStmt() argument
3754 return BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in ActOnMSDependentExistsStmt()
DSemaExprCXX.cpp6839 bool IsIfExists, CXXScopeSpec &SS, in CheckMicrosoftIfExistsSymbol() argument
6849 IsIfExists? UPPC_IfExists in CheckMicrosoftIfExistsSymbol()
DTreeTransform.h1856 bool IsIfExists, in RebuildMSDependentExistsStmt() argument
1860 return getSema().BuildMSDependentExistsStmt(KeywordLoc, IsIfExists, in RebuildMSDependentExistsStmt()
/external/clang/include/clang/Parse/
DParser.h1700 bool IsIfExists; member
/external/clang/include/clang/Sema/
DSema.h4045 bool IsIfExists, CXXScopeSpec &SS,
4049 bool IsIfExists,
4054 bool IsIfExists,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1216 S->IsIfExists = Record[Idx++]; in VisitMSDependentExistsStmt()