Searched refs:ScopeFlags (Results 1 - 8 of 8) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScope.h42 /// ScopeFlags - These are bitfields that are or'd together when creating a
44 enum ScopeFlags { enum in class:clang::Scope
150 /// Flags - This contains a set of ScopeFlags, which indicates how the scope
220 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag) argument
222 Init(Parent, ScopeFlags);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp904 unsigned ScopeFlags) {
909 ParseScope CompoundScope(this, ScopeFlags);
1524 unsigned ScopeFlags = Scope::SwitchScope; local
1526 ScopeFlags |= Scope::DeclScope | Scope::ControlScope;
1527 ParseScope SwitchScope(this, ScopeFlags);
1612 unsigned ScopeFlags; local
1614 ScopeFlags = Scope::BreakScope | Scope::ContinueScope |
1617 ScopeFlags = Scope::BreakScope | Scope::ContinueScope;
1618 ParseScope WhileScope(this, ScopeFlags);
1668 unsigned ScopeFlags; local
903 ParseCompoundStatement(bool isStmtExpr, unsigned ScopeFlags) argument
1803 unsigned ScopeFlags = 0; local
[all...]
H A DParser.cpp403 void Parser::EnterScope(unsigned ScopeFlags) { argument
406 N->Init(getCurScope(), ScopeFlags); local
409 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
430 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
432 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags, argument
437 CurScope->setFlags(ScopeFlags);
H A DParseOpenMP.cpp582 unsigned ScopeFlags = Scope::FnScope | Scope::DeclScope | local
584 ParseScope OMPDirectiveScope(this, ScopeFlags);
2284 unsigned ScopeFlags = Scope::FnScope | Scope::DeclScope | local
2478 ScopeFlags |= Scope::OpenMPLoopDirectiveScope;
2480 ScopeFlags |= Scope::OpenMPSimdDirectiveScope;
2481 ParseScope OMPDirectiveScope(this, ScopeFlags);
H A DParseExprCXX.cpp1458 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope |
1460 ParseScope BodyScope(this, ScopeFlags);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h1075 /// scope is determined by ScopeFlags. Objects of this type should
1088 // ScopeFlags, but only when we aren't about to enter a compound statement.
1089 ParseScope(Parser *Self, unsigned ScopeFlags, bool EnteredScope = true, argument
1093 Self->EnterScope(ScopeFlags);
1126 void Enter(unsigned ScopeFlags) { argument
1127 Self.EnterScope(ScopeFlags);
1142 void EnterScope(unsigned ScopeFlags);
1159 ParseScopeFlags(Parser *Self, unsigned ScopeFlags, bool ManageFlags = true);
2070 unsigned ScopeFlags);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp13177 const unsigned ScopeFlags = getCurScope()->getFlags(); local
13178 if ((ScopeFlags & ForIncrementFlags) == ForIncrementFlags ||
13179 (ScopeFlags & ForInitFlags) == ForInitFlags)
H A DSemaChecking.cpp780 Scope::ScopeFlags NeededScopeFlags,

Completed in 530 milliseconds