HomeSort by relevance Sort by last modified time
    Searched defs:ScopeFlags (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/Parse/
ParseOpenMP.cpp 142 unsigned ScopeFlags =
220 ScopeFlags |= Scope::OpenMPLoopDirectiveScope;
222 ScopeFlags |= Scope::OpenMPSimdDirectiveScope;
223 ParseScope OMPDirectiveScope(this, ScopeFlags);
ParseCXXInlineMethods.cpp 587 unsigned ScopeFlags = Scope::ClassScope|Scope::DeclScope;
588 ParseScope ClassScope(this, ScopeFlags, !AlreadyHasClassScope);
589 ParseScopeFlags ClassScopeFlags(this, ScopeFlags, AlreadyHasClassScope);
    [all...]
ParseStmt.cpp 836 unsigned ScopeFlags) {
841 ParseScope CompoundScope(this, ScopeFlags);
    [all...]
Parser.cpp 352 void Parser::EnterScope(unsigned ScopeFlags) {
355 N->Init(getCurScope(), ScopeFlags);
358 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
379 /// Set the flags for the current scope to ScopeFlags. If ManageFlags is false,
381 Parser::ParseScopeFlags::ParseScopeFlags(Parser *Self, unsigned ScopeFlags,
386 CurScope->setFlags(ScopeFlags);
    [all...]
ParseExprCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
Scope.h 40 /// ScopeFlags - These are bitfields that are or'd together when creating a
42 enum ScopeFlags {
132 /// Flags - This contains a set of ScopeFlags, which indicates how the scope
200 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag)
202 Init(Parent, ScopeFlags);

Completed in 197 milliseconds